﻿:root {
  --primary-color: #0ea5e9;
  --secondary-color: #111827;
  --hero-text: #ffffff;
  --hero-subtext: rgba(255, 255, 255, 0.9);
  --restaurant-bg: #f4f6fb;
  --page-bg-image: none;
  --page-bg-overlay: rgba(255, 255, 255, 0.78);
  --bg: #f4f6fb;
  --surface: #f8fbff;
  --card: #ffffff;
  --text: #0b1220;
  --muted: #64748b;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 6px 14px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.26);
  --border: #dbe5ee;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(var(--page-bg-overlay), var(--page-bg-overlay)),
    var(--page-bg-image),
    radial-gradient(750px 280px at 8% -10%, rgba(37, 99, 235, 0.16) 0%, transparent 60%),
    radial-gradient(740px 250px at 92% -12%, rgba(14, 165, 233, 0.14) 0%, transparent 60%),
    var(--restaurant-bg);
  background-size: auto, cover, auto, auto, auto;
  background-position: center, center, center, center, center;
  background-attachment: fixed;
  padding-bottom: var(--safe-bottom);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(#0f172a 0.55px, transparent 0.55px);
  background-size: 4px 4px;
}

.menu-app {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: calc(12px + var(--safe-top)) calc(10px + var(--safe-right)) calc(28px + var(--safe-bottom)) calc(10px + var(--safe-left));
  position: relative;
}

.hero {
  position: relative;
  top: auto;
  z-index: 50;
  isolation: isolate;
  border-radius: 0 0 22px 22px;
  padding: calc(14px + (var(--safe-top) * 0.15)) 14px 14px;
  color: var(--hero-text);
  background: var(--secondary-color);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(6px);
}

.hero-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 4px 2px 0;
}

.hero-copy {
  min-width: 0;
}

.hero-logo {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  border: 3px solid rgba(255, 255, 255, 0.82);
  background: #fff;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.35);
}

.hero-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.85px;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 700;
}

h1 {
  margin: 4px 0 2px;
  line-height: 1.08;
  font-size: clamp(1.35rem, 6vw, 1.9rem);
  font-weight: 800;
}

.hero-subline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--hero-subtext);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
  max-width: 60ch;
  line-height: 1.45;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.hero-feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-feature-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 28px rgba(2,6,23,.10);
}

.hero-feature-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-feature-card span {
  color: rgba(255,255,255,.86);
  line-height: 1.5;
  font-size: .92rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(134, 239, 172, 0.34);
  color: #dcfce7;
  font-weight: 800;
  font-size: 0.85rem;
}

.action-row {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 247, 255, 0.94) 100%);
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  position: relative;
  z-index: 4;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow:
    0 10px 22px rgba(2, 6, 23, 0.16),
    0 1px 0 rgba(255,255,255,.92) inset;
}

button.action-btn {
  font-family: inherit;
  cursor: pointer;
}

.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.2);
}

.action-btn:active {
  transform: scale(0.985);
}

.action-btn:focus-visible,
.chip:focus-visible,
.search-input:focus-visible,
.switch input:focus-visible,
.clear-search:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.34);
}

.surface {
  margin-top: 12px;
  background: var(--surface);
  border: 1px solid #e5ecf5;
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-md);
}

.surface-controls {
  position: relative;
  z-index: 60;
  isolation: isolate;
  padding: 14px;
}

.surface-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.surface-kicker {
  margin: 0 0 6px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: color-mix(in srgb, var(--primary-color) 76%, #0f172a 24%);
}

.surface-title {
  margin: 0;
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.surface-menu-list {
  position: relative;
  z-index: 1;
}

.info-page {
  display: grid;
  gap: 14px;
}

.section-plain {
  padding: 14px 0 0;
}

.rich-copy {
  color: #334155;
  line-height: 1.7;
  white-space: normal;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-post-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.blog-post-media-link {
  display: block;
  background: #eef2f7;
}

.blog-post-image {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #eef2f7;
}

.blog-post-body {
  padding: 16px;
}

.tools {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}

.search-wrap {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.95rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0 44px 0 34px;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
}

.search-input::placeholder {
  color: #94a3b8;
}

.clear-search {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid #dbe5ee;
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
  cursor: pointer;
}

.clear-search[hidden] {
  display: none !important;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-weight: 600;
  white-space: nowrap;
}

.switch input {
  appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #cbd5e1;
  position: relative;
  border: 1px solid #94a3b8;
  cursor: pointer;
  transition: background 0.2s ease;
}

.switch input::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.switch input:checked {
  background: color-mix(in srgb, var(--primary-color) 72%, #fff 28%);
  border-color: var(--primary-color);
}

.switch input:checked::after {
  transform: translateX(20px);
}

.result-count {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}

.chipbar-wrap {
  position: relative;
  top: auto;
  z-index: 10;
  margin-top: 12px;
  border-radius: 14px;
  background: rgba(249,251,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(15,23,42,.08), 0 0 0 1px rgba(15,23,42,.05);
}

.chipgrid-wrap {
  display: none;
  margin-top: 12px;
  gap: 8px;
  position: relative;
  z-index: 40;
}

.chipbar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 9px 10px 7px;
  position: relative;
  z-index: 41;
}

.chipbar-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  pointer-events: none;
  z-index: 1;
}

.chipbar-fade.left {
  left: 0;
  background: linear-gradient(to right, rgba(248, 251, 255, 0.95), transparent);
}

.chipbar-fade.right {
  right: 0;
  background: linear-gradient(to left, rgba(248, 251, 255, 0.95), transparent);
}

.chip {
  appearance: none;
  position: relative;
  z-index: 42;
  pointer-events: auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid #e2e8f4;
  background: #fff;
  color: #334155;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 8px 16px;
  line-height: 1.2;
  transition: all 0.18s ease;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 1px 4px rgba(15,23,42,.06);
}

.chip.active {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary-color) 38%, transparent 62%);
  transform: translateY(-1px);
}

.chip.alt {
  background: color-mix(in srgb, var(--primary-color) 16%, #fff 84%);
  border-color: color-mix(in srgb, var(--primary-color) 45%, #cbd5e1 55%);
}

.section {
  margin-top: 22px;
  scroll-margin-top: 120px;
}

.category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(15, 23, 42, .05);
}

.category-count {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 10%, #fff 90%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 24%, #dbe5ee 76%);
  color: #475569;
  font-size: .82rem;
  font-weight: 800;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  color: #0b1220;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dish-card {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid #e2eaf6;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  padding: 16px;
  margin-bottom: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  z-index: 0;
  cursor: pointer;
}

.dish-card:hover {
  box-shadow: 0 10px 32px rgba(15,23,42,.14);
  border-color: #c6d8f0;
  transform: translateY(-2px);
}

.dish-card:active {
  transform: none;
}

.media {
  width: 116px;
  height: 116px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d8e4f0;
  background: #eef2f7;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 20px rgba(15,23,42,.10);
  flex-shrink: 0;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

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

.skeleton {
  position: relative;
  overflow: hidden;
}

.skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e5e7eb 20%, #f8fafc 40%, #e5e7eb 60%);
  animation: shimmer 1.2s infinite;
  pointer-events: none;
}

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

.media-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 1.2rem;
}

.dish-main h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0b1220;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.dish-main p {
  margin: 5px 0 0;
  color: #637083;
  font-size: 0.88rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topline {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 100%;
  white-space: nowrap;
  background: color-mix(in srgb, var(--primary-color) 15%, #fff 85%);
  color: color-mix(in srgb, var(--primary-color) 76%, #0f172a 24%);
}

.home-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  background: #ecfccb;
  color: #3f6212;
}

.price-pill {
  white-space: nowrap;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  font-size: 0.94rem;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary-color) 28%, transparent 72%);
  letter-spacing: -0.01em;
}

.dish-side {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.dish-open-hint {
  font-size: .78rem;
  color: #64748b;
  font-weight: 700;
}

.empty {
  margin-top: 14px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: #fff;
  text-align: center;
  padding: 15px;
  color: var(--muted);
}

.to-top {
  position: fixed;
  right: calc(14px + var(--safe-right));
  bottom: calc(14px + var(--safe-bottom));
  z-index: 30;
  min-width: 44px;
  min-height: 44px;
  border: none;
  border-radius: 999px;
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.toast-root {
  position: fixed;
  left: 50%;
  bottom: calc(16px + var(--safe-bottom));
  transform: translateX(-50%);
  z-index: 40;
  display: grid;
  gap: 8px;
  width: min(92vw, 420px);
}

.toast {
  border-radius: 12px;
  padding: 10px 12px;
  color: #fff;
  background: #0f172a;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 520px) {
  .hero {
    padding: 12px;
  }

  .hero-logo {
    width: 68px;
    height: 68px;
  }

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

  .chipbar-wrap {
    top: 257px;
  }

  .dish-card {
    grid-template-columns: 88px 1fr;
    grid-template-areas: "media main" "price price";
  }

  .media {
    width: 88px;
    height: 88px;
    grid-area: media;
  }

  .dish-main {
    grid-area: main;
  }

  .price-pill {
    grid-area: price;
    justify-self: start;
    margin-top: 2px;
  }
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }
}

@media (max-width: 720px) {
  .menu-app {
    padding-left: calc(8px + var(--safe-left));
    padding-right: calc(8px + var(--safe-right));
  }

  .action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 12px;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }

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

  .chipbar-wrap {
    top: auto;
  }

  .section {
    scroll-margin-top: 110px;
  }

  .dish-sheet {
    padding-bottom: var(--safe-bottom);
  }

  .sheet-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sheet-actions .btn-ghost,
  .sheet-actions .btn-outline,
  .sheet-actions .btn-primary {
    width: 100%;
  }
}

@media (min-width: 721px) {
  .surface {
    position: relative;
    z-index: 1;
    backdrop-filter: none;
    overflow: visible;
  }

  .tools,
  .search-wrap,
  .switch,
  .result-count,
  .chipgrid-wrap {
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  .chipgrid-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .chipbar-wrap {
    display: none;
  }

  .chipbar-wrap {
    position: relative;
    top: auto;
    z-index: 80;
    isolation: isolate;
    padding: 0;
    overflow: visible;
    backdrop-filter: none;
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: auto;
  }

  .chipbar {
    display: flex;
    position: relative;
    z-index: 81;
    align-items: center;
    align-content: flex-start;
    overflow-x: visible;
    flex-wrap: wrap;
    padding: 9px 10px 7px;
    gap: 8px;
    pointer-events: auto;
  }

  .chipbar-fade {
    display: none;
  }

  .chip {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 0;
    padding: 8px 12px;
    font-size: 0.84rem;
    position: relative;
    z-index: 82;
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
  }
}

@media (max-width: 420px) {
  .action-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .action-btn {
    min-height: 52px;
    padding: 8px 10px;
    border-radius: 18px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.86rem;
    line-height: 1.15;
    text-align: left;
  }

  .action-btn span:first-child {
    width: 16px;
    font-size: 1rem;
  }

  .hero-head {
    grid-template-columns: 62px 1fr;
    gap: 10px;
  }

  .hero-logo {
    width: 62px;
    height: 62px;
  }

  .chipbar-wrap {
    top: auto;
  }

  .section {
    scroll-margin-top: 110px;
  }

  .chipbar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 8px 10px 6px;
    -webkit-overflow-scrolling: touch;
  }

  .chipbar-fade {
    display: block;
  }

  .chip {
    width: auto;
    min-width: max-content;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.84rem;
  }
}

body.sheet-open {
  overflow: hidden;
}

body.review-prompt-open {
  overflow: hidden;
}

.review-prompt-overlay {
  position: fixed;
  inset: 0;
  z-index: 108;
  pointer-events: auto;
  background: rgba(2, 6, 23, 0.38);
  backdrop-filter: blur(3px);
}

.review-prompt-card {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 109;
  pointer-events: auto;
  width: min(420px, calc(100vw - 28px));
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--theme-border-on-inner, rgba(148, 163, 184, 0.22));
  background: var(--theme-inner-bg, #ffffff);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.45);
  text-align: left;
}

.review-prompt-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 16%, #fff 84%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 38%, #dbe5ee 62%);
  color: color-mix(in srgb, var(--primary-color) 78%, #0f172a 22%);
  font-weight: 800;
  font-size: 0.78rem;
}

.review-prompt-card--roulette {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.45), 0 0 0 1px rgba(245, 158, 11, 0.18) inset;
}

.review-prompt-card--roulette .review-prompt-badge {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-color: rgba(245, 158, 11, 0.55);
  color: #1a1200;
}

.review-prompt-card--roulette .review-prompt-actions a {
  background: linear-gradient(135deg, #f59e0b, #f97316) !important;
  color: #1a1200 !important;
  border-color: transparent !important;
}

.review-prompt-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.12rem, 2.8vw, 1.35rem);
  line-height: 1.15;
  color: var(--theme-text-on-inner, #0b1220);
}

.review-prompt-card p {
  margin: 0;
  color: var(--theme-text-muted-on-inner, #56667d);
  line-height: 1.5;
}

.review-prompt-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.review-prompt-actions .btn-outline,
.review-prompt-actions button,
.review-prompt-actions a {
  min-height: 46px;
  border-radius: 14px;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.review-prompt-actions .btn-outline {
  flex: 1 1 45%;
  background: color-mix(in srgb, var(--theme-inner-bg) 88%, var(--theme-text-on-inner) 12%) !important;
  border: 1px solid var(--theme-border-on-inner, rgba(148,163,184,.3)) !important;
  color: var(--theme-text-on-inner, #1c2433) !important;
}

.review-prompt-actions button:last-child,
.review-prompt-actions a:last-child {
  flex: 1 1 55%;
  border: 1px solid var(--theme-primary, var(--primary-color));
  background: var(--theme-primary, var(--primary-color));
  color: var(--theme-text-on-primary, #fff);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--theme-primary, var(--primary-color)) 28%, transparent 72%);
}

.dish-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.52);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dish-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.dish-sheet {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  width: min(700px, 96vw);
  max-height: 88vh;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #dbe5ee;
  box-shadow: var(--shadow-lg);
  z-index: 72;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dish-sheet.show {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.sheet-handle {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: #cbd5e1;
  margin: 10px auto 0;
}

.dish-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.dish-sheet-head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  letter-spacing: -0.04em;
}

.sheet-close {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 700;
}

.dish-sheet-body {
  overflow: auto;
  padding: 18px;
  display: grid;
  gap: 16px;
}

.sheet-top {
  display: grid;
  gap: 10px;
}

.sheet-image-frame {
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(245,249,255,.98) 100%);
  border: 1px solid rgba(191,219,254,.38);
  box-shadow: 0 18px 36px rgba(15,23,42,.06);
}

.sheet-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  border: 1px solid #dbe5ee;
  background: #ffffff;
}

.sheet-main-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 12%, #fff 88%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 28%, #dbe5ee 72%);
  color: color-mix(in srgb, var(--primary-color) 76%, #0f172a 24%);
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.sheet-image.empty {
  display: grid;
  place-items: center;
  color: #64748b;
  background: #ffffff;
}

.sheet-main h3 {
  margin: 0 0 6px;
  font-size: 1.7rem;
}

.sheet-price {
  font-weight: 800;
  color: #1d4ed8;
  margin-bottom: 6px;
}

.sheet-desc {
  margin: 0;
  line-height: 1.7;
  color: #334155;
  font-size: 1rem;
}

.sheet-muted {
  margin: 0;
  color: #64748b;
}

.sheet-block {
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
}

.sheet-block h4 {
  margin: 0 0 8px;
}

.allergen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.allergen-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 11px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.75rem;
}

.supp-group {
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid #e5edf5;
  border-radius: 18px;
  background: #fbfdff;
}

.supp-group h4 {
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.req-badge {
  display: inline-flex;
  min-height: 22px;
  border-radius: 999px;
  padding: 0 8px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.72rem;
  font-weight: 700;
}

.dish-sheet .supp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 11px 12px;
  margin-bottom: 7px;
  background: #fff;
}

.dish-sheet .supp-input {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
  width: auto;
  justify-content: flex-start;
}

.dish-sheet .supp-input span {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.dish-sheet .supp-row input {
  margin: 0;
}

.dish-sheet .supp-row input[type="radio"],
.dish-sheet .supp-row input[type="checkbox"] {
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  flex: 0 0 18px;
  padding: 0;
  border-radius: 4px;
}

.dish-sheet-foot {
  border-top: 1px solid #e2e8f0;
  padding: 14px 18px 18px;
  background: #fff;
}

.sheet-summary,
.sheet-total {
  font-size: 0.92rem;
  color: #475569;
}

.sheet-total {
  font-weight: 700;
  margin-top: 4px;
}

.sheet-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

.btn-ghost,
.btn-primary {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 700;
  border: 1px solid #bfdbfe;
}

.btn-ghost {
  background: #eff6ff;
  color: #1d4ed8;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

@media (max-width: 720px) {
  .hero-feature-row {
    grid-template-columns: 1fr;
  }

  .review-prompt-card {
    width: calc(100vw - 24px);
    padding: 16px;
    border-radius: 18px;
  }

  .review-prompt-actions {
    flex-direction: column;
  }

  .dish-sheet {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: translateY(100%);
    width: 100%;
    max-height: 85vh;
    border-radius: 18px 18px 0 0;
  }

  .dish-sheet.show {
    transform: translateY(0);
  }

  .sheet-image {
    max-height: 220px;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.lang-btn {
  min-height: 34px;
  min-width: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.9);
  color: #0f172a;
  font-weight: 800;
  font-size: .78rem;
  padding: 0 10px;
  cursor: pointer;
}
.lang-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Premium polish v2 */
.chipbar {
  scroll-padding: 10px;
}

.chip {
  font-weight: 700;
  letter-spacing: 0.1px;
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.section {
  margin-top: 14px;
  animation: sectionIn .34s ease both;
}

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

.category-title {
  margin: 2px 0 12px;
  font-size: clamp(1.35rem, 3.3vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0b1220;
}

.dish-card {
  border: 1px solid #dfe8f2;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.dish-card:hover {
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.13);
  border-color: #cddced;
}

.dish-card:active {
  transform: none;
}

.dish-main h3,
.dish-name {
  margin: 0;
  font-size: clamp(1.04rem, 2.6vw, 1.2rem);
  font-weight: 800;
  color: #0b1220;
  line-height: 1.2;
}

.dish-main p,
.dish-desc {
  margin: 6px 0 0;
  color: #56667d;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-pill {
  min-width: 96px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 8px 18px rgba(14, 165, 233, .35);
}

.pop-badge {
  margin-left: 8px;
}

.home-badge {
  margin-left: 8px;
}

.dish-card {
  opacity: 0;
  transform: translateY(10px) scale(.995);
}

.dish-card.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .32s ease;
}

@media (max-width: 520px) {
  .chip {
    font-size: .93rem;
    padding: 6px 12px;
    min-height: 0;
    line-height: 1.1;
  }

  .category-title {
    font-size: 1.12rem;
    margin: 2px 0 8px;
  }
}

/* === Premium 9.5 Overdrive === */
body {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--restaurant-bg) 72%, #ffffff 28%) 0%, color-mix(in srgb, var(--restaurant-bg) 88%, #eaf0f8 12%) 100%),
    linear-gradient(var(--page-bg-overlay), var(--page-bg-overlay)),
    var(--page-bg-image),
    radial-gradient(780px 320px at 8% -12%, rgba(37, 99, 235, 0.14) 0%, transparent 62%),
    radial-gradient(740px 320px at 92% -10%, rgba(14, 165, 233, 0.12) 0%, transparent 62%),
    var(--restaurant-bg);
}

.menu-app {
  width: min(1020px, 100%);
  padding: 16px 12px 30px;
}

.surface {
  background: color-mix(in srgb, var(--menu-inner-bg, #F8FBFF) 92%, #ffffff 8%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.10);
  border-radius: 22px;
  padding: 14px;
}

.hero {
  border-radius: 22px;
  padding: 16px;
  background: var(--secondary-color);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.18);
}

.hero-logo {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.06);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.18);
}

.action-btn {
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 10px 22px rgba(2,6,23,.16);
}

.action-btn span:first-child {
  width: 16px;
  display: inline-flex;
  justify-content: center;
}

.search-input {
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: inset 0 1px 1px rgba(15, 23, 42, 0.03);
}

.search-input:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 28%, transparent 72%), inset 0 1px 1px rgba(15, 23, 42, 0.03);
  border-color: color-mix(in srgb, var(--primary-color) 52%, #cbd5e1 48%);
}

.switch input {
  box-shadow: inset 0 2px 6px rgba(2, 6, 23, 0.12);
}

.result-count {
  font-weight: 700;
  color: #64748b;
}

.chipbar-wrap {
  border-radius: 14px;
  background: linear-gradient(to bottom, rgba(255,255,255,.72), rgba(248,250,252,.66));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.chip {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.chip.active {
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--primary-color) 32%, transparent 68%);
}

.section h2,
.category-title {
  position: relative;
  display: inline-block;
  margin: 2px 0 10px;
  padding-bottom: 4px;
}

.section h2::after,
.category-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary-color) 82%, #fff 18%), transparent);
}

.dish-card {
  grid-template-columns: 116px 1fr auto;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 18px rgba(2, 6, 23, 0.07);
}

.dish-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.13);
  border-color: rgba(15, 23, 42, 0.14);
}

.media {
  width: 116px;
  height: 116px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.10);
}

.dish-main p,
.dish-desc {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.price-pill {
  background: var(--primary-color);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--primary-color) 34%, transparent 66%);
  border-radius: 999px;
  min-width: 106px;
}

.empty {
  border-radius: 16px;
  border: 1px dashed #c9d6e6;
  background: rgba(255,255,255,.85);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(2,6,23,.06);
}

.dish-sheet-head {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.92);
}

.sheet-image {
  max-height: 240px;
}

.supp-row input[type="radio"],
.supp-row input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 17px;
  height: 17px;
}

.sheet-total {
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-weight: 800;
}

.btn-primary {
  min-width: 158px;
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary-color) 30%, transparent 70%);
}

.toast-root {
  bottom: 20px;
}

@media (max-width: 520px) {
  .hero {
    border-radius: 20px;
    padding: 14px;
  }

  .surface {
    border-radius: 18px;
    padding: 12px;
  }

  .section h2,
  .category-title {
    font-size: 1.18rem;
  }

  .dish-card {
    grid-template-columns: 88px 1fr;
  }

  .media {
    width: 88px;
    height: 88px;
  }

  .price-pill {
    min-width: 98px;
  }

  .category-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dish-side {
    justify-items: start;
  }
}

/* Theme consistency: use "Couleur arriere-plan page (interieur)" for menu surfaces */
:root {
  --menu-surface-bg: color-mix(in srgb, var(--menu-inner-bg, #F8FBFF) 96%, #ffffff 4%);
}

.surface,
.chipbar-wrap,
.chip,
.search-input,
.dish-card,
.empty,
.supp-row {
  background: var(--menu-surface-bg);
}

.dish-sheet,
.dish-sheet-head,
.dish-sheet-foot {
  background: #ffffff;
}

/* Safe visual polish */
.hero {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 54px rgba(2, 6, 23, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.18), transparent 28%),
    linear-gradient(145deg, color-mix(in srgb, var(--secondary-color) 92%, #020617 8%) 0%, var(--secondary-color) 100%);
}

.action-btn {
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,252,.92) 100%);
}

.action-btn:hover {
  transform: translateY(-2px);
}

.surface {
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.10), transparent 22%),
    var(--menu-surface-bg);
}

.search-input,
.chip,
.dish-card,
.supp-group,
.dish-sheet,
.empty {
  border-color: rgba(148, 163, 184, 0.20);
}

.search-input {
  box-shadow:
    inset 0 1px 1px rgba(15, 23, 42, 0.03),
    0 6px 16px rgba(15, 23, 42, 0.04);
}

.chip {
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.dish-card {
  overflow: hidden;
  position: relative;
}

.dish-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148,163,184,.28), transparent);
  pointer-events: none;
}

.dish-main h3,
.dish-name {
  letter-spacing: -0.015em;
}

.dish-main p,
.dish-desc {
  color: #5b6b82;
}

.price-pill {
  letter-spacing: .2px;
  font-size: .94rem;
}

.media {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}

.sheet-block {
  border-top-color: rgba(148, 163, 184, 0.18);
}

.dish-sheet .supp-row {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.sheet-close,
.btn-ghost,
.btn-primary {
  transition:
    transform .16s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.sheet-close:hover,
.btn-ghost:hover,
.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-primary {
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary-color) 30%, transparent 70%);
}

.dish-sheet {
  border-radius: 24px;
  box-shadow:
    0 34px 80px rgba(2, 6, 23, 0.28),
    0 1px 0 rgba(255,255,255,.9) inset;
}

.dish-sheet-head {
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,250,255,.96) 100%);
}

.sheet-main h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -0.04em;
}

.sheet-price {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 14%, #fff 86%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 36%, #dbe5ee 64%);
}

.sheet-desc {
  line-height: 1.65;
}

.supp-group {
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.98) 100%);
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
}

@media (max-width: 520px) {
  .surface {
    box-shadow:
      0 14px 28px rgba(15, 23, 42, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.75) inset;
  }

  .action-btn {
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.12);
  }
}

/* Final premium pass: menu cards + product sheet */
.hero {
  background:
    radial-gradient(120% 160% at 100% 0%, color-mix(in srgb, var(--primary-color) 24%, transparent 76%) 0%, transparent 46%),
    linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 92%, #000 8%) 0%, color-mix(in srgb, var(--secondary-color) 70%, var(--primary-color) 30%) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), transparent 24%),
    radial-gradient(70% 100% at 15% 0%, rgba(255,255,255,.10) 0%, transparent 55%);
}

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

.surface-controls,
.surface-menu-list {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.95) 100%);
  border: 1px solid rgba(191, 219, 254, 0.34);
  box-shadow:
    0 16px 42px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.action-btn {
  min-height: 52px;
  padding: 0 18px;
  box-shadow:
    0 14px 26px rgba(2, 6, 23, 0.14),
    0 1px 0 rgba(255,255,255,.96) inset;
}

.category-title {
  font-size: clamp(1.24rem, 2vw, 1.55rem);
  letter-spacing: -0.04em;
}

.dish-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: 110px 1fr auto;
  min-height: 148px;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(248,251,255,.97) 100%);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255,255,255,.95) inset;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.dish-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary-color) 5%, transparent 95%) 0%, transparent 30%);
}

.dish-card:hover {
  box-shadow:
    0 24px 44px rgba(15, 23, 42, 0.14),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.media {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.14),
    0 1px 0 rgba(255,255,255,.92) inset;
}

.dish-main {
  display: grid;
  align-content: center;
  gap: 8px;
}

.dish-main h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.42rem);
  letter-spacing: -0.04em;
}

.dish-main p {
  font-size: .98rem;
  line-height: 1.58;
  color: #52637a;
}

.dish-side {
  align-self: stretch;
  align-content: space-between;
  justify-items: end;
}

.price-pill {
  padding: 12px 18px;
  font-size: 1rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 82%, #000 18%) 0%, color-mix(in srgb, var(--primary-color) 22%, var(--secondary-color) 78%) 100%);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--secondary-color) 28%, transparent 72%);
}

.dish-open-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 8%, #fff 92%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 20%, #dbe5ee 80%);
  color: color-mix(in srgb, var(--primary-color) 76%, #0f172a 24%);
  font-weight: 800;
}

.dish-open-hint::before {
  content: "+";
  font-size: .95rem;
  line-height: 1;
}

.dish-sheet {
  width: min(860px, 96vw);
  max-height: 90vh;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.995) 0%, rgba(247,250,255,.992) 100%);
}

.dish-sheet-head {
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(245,249,255,.95) 100%);
}

.dish-sheet-head h3 {
  font-size: clamp(1.32rem, 2.4vw, 1.78rem);
}

.dish-sheet-body {
  padding: 22px;
  gap: 18px;
}

.sheet-top-premium {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: 18px;
  align-items: stretch;
}

.sheet-visual-col {
  display: grid;
  gap: 12px;
}

.sheet-image-frame {
  position: relative;
  padding: 14px;
  border-radius: 28px;
  background:
    radial-gradient(80% 100% at 100% 0%, color-mix(in srgb, var(--primary-color) 14%, transparent 86%) 0%, transparent 54%),
    linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(244,248,255,.98) 100%);
  box-shadow:
    0 24px 42px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.sheet-image {
  aspect-ratio: 4 / 3;
  max-height: 360px;
  object-fit: cover;
  border-radius: 22px;
  background: #f8fbff;
}

.sheet-visual-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--primary-color) 8%, #fff 92%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 18%, #dbe5ee 82%);
  color: #49607d;
  line-height: 1.55;
  font-weight: 600;
}

.sheet-main-card {
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(248,251,255,.98) 100%);
  border: 1px solid rgba(191,219,254,.28);
  box-shadow:
    0 20px 36px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.sheet-main-kicker {
  margin-bottom: 12px;
}

.sheet-main-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
}

.sheet-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 16px;
  align-items: center;
}

.sheet-price {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 88%, #1e3a8a 12%) 0%, color-mix(in srgb, var(--secondary-color) 20%, var(--primary-color) 80%) 100%);
  color: #fff;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--primary-color) 28%, transparent 72%);
}

.sheet-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(191,219,254,.42);
  color: #42556f;
  font-size: .82rem;
  font-weight: 800;
}

.sheet-desc {
  font-size: 1.02rem;
  line-height: 1.8;
}

.sheet-service-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148,163,184,.18);
  color: #617289;
  font-weight: 700;
}

.sheet-block-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(191,219,254,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.995) 0%, rgba(248,251,255,.985) 100%);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.sheet-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.sheet-section-head h4 {
  margin: 0;
  font-size: 1.08rem;
}

.sheet-section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 10%, #fff 90%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 24%, #dbe5ee 76%);
  color: color-mix(in srgb, var(--primary-color) 72%, #0f172a 28%);
  font-size: .78rem;
  font-weight: 800;
}

.allergen-pill {
  min-height: 32px;
  padding: 0 13px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.supp-group {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 20px;
}

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

.supp-group-head h4 {
  margin: 0;
  font-size: 1rem;
}

.supp-group-head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: .82rem;
  font-weight: 700;
}

.supp-group-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dish-sheet .supp-row {
  min-height: 58px;
  padding: 12px 14px;
  border-radius: 16px;
}

.dish-sheet .supp-row strong {
  color: color-mix(in srgb, var(--primary-color) 74%, #0f172a 26%);
  font-weight: 800;
}

.dish-sheet-foot {
  padding: 16px 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(246,249,255,.98) 100%);
}

.sheet-summary {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(191,219,254,.26);
}

.sheet-total {
  margin-top: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 16px;
}

.sheet-actions {
  gap: 12px;
}

.btn-ghost,
.btn-primary {
  min-height: 50px;
  padding: 0 20px;
  font-weight: 800;
}

@media (max-width: 860px) {
  .sheet-top-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dish-card {
    grid-template-columns: 84px 1fr;
    grid-template-areas:
      "media main"
      "price price";
    min-height: 0;
    padding: 14px;
    border-radius: 22px;
  }

  .media {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    grid-area: media;
  }

  .dish-main {
    grid-area: main;
  }

  .dish-side {
    grid-area: price;
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    margin-top: 6px;
  }

  .dish-open-hint {
    justify-self: end;
  }

  .dish-sheet {
    width: min(100vw - 12px, 860px);
    max-height: calc(100vh - 16px);
    border-radius: 24px 24px 0 0;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 8%);
  }

  .dish-sheet.show {
    transform: translate(-50%, 0);
  }

  .dish-sheet-body {
    padding: 16px;
  }

  .sheet-main-card {
    padding: 16px;
    border-radius: 20px;
  }

  .sheet-main-card h3 {
    font-size: 1.5rem;
  }

  .sheet-image {
    max-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .sheet-section-head,
  .supp-group-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .menu-app {
    width: 100%;
    padding: calc(8px + var(--safe-top)) 8px calc(18px + var(--safe-bottom));
  }

  .hero {
    border-radius: 18px;
    padding: 12px;
  }

  .hero-head {
    grid-template-columns: 58px 1fr;
    gap: 10px;
  }

  .hero-logo {
    width: 58px;
    height: 58px;
  }

  .hero-subline {
    font-size: .88rem;
    line-height: 1.35;
  }

  .action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-btn {
    min-height: 48px;
    padding: 8px 10px;
    font-size: .84rem;
    border-radius: 16px;
  }

  .surface {
    border-radius: 18px;
    padding: 12px;
  }

  .surface-controls {
    padding: 12px;
  }

  .surface-title {
    font-size: 1.06rem;
    line-height: 1.25;
  }

  .tools {
    gap: 10px;
  }

  .search-input {
    min-height: 46px;
    font-size: .95rem;
  }

  .switch {
    justify-content: space-between;
    width: 100%;
  }

  .result-count {
    text-align: right;
    width: 100%;
  }

  .chipbar {
    gap: 7px;
    padding: 6px 8px 4px;
  }

  .chip {
    padding: 8px 11px;
    font-size: .8rem;
  }

  .category-head {
    gap: 10px;
    margin-bottom: 8px;
  }

  .category-title {
    font-size: 1.12rem;
  }

  .category-count {
    min-height: 28px;
    padding: 0 10px;
    font-size: .74rem;
  }

  .dish-card {
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .media {
    width: 80px;
    height: 80px;
  }

  .dish-main h3 {
    font-size: 1.02rem;
  }

  .dish-main p {
    font-size: .9rem;
    line-height: 1.45;
  }

  .dish-side {
    gap: 8px;
  }

  .price-pill {
    min-width: 0;
    width: auto;
    justify-self: start;
    padding: 10px 14px;
    font-size: .94rem;
  }

  .dish-open-hint {
    justify-self: end;
    font-size: .76rem;
    padding: 7px 10px;
  }

  .dish-sheet {
    width: calc(100vw - 10px);
    max-height: calc(100vh - 8px);
    border-radius: 22px 22px 0 0;
  }

  .dish-sheet-head {
    padding: 14px 14px 12px;
  }

  .dish-sheet-head h3 {
    font-size: 1.02rem;
    line-height: 1.28;
  }

  .sheet-close {
    min-height: 34px;
    padding: 0 12px;
    font-size: .85rem;
  }

  .dish-sheet-body {
    padding: 12px;
    gap: 12px;
  }

  .sheet-top-premium {
    gap: 12px;
  }

  .sheet-image-frame {
    padding: 10px;
    border-radius: 20px;
  }

  .sheet-image {
    max-height: 190px;
    border-radius: 16px;
  }

  .sheet-visual-note {
    padding: 11px 12px;
    border-radius: 14px;
    font-size: .84rem;
    line-height: 1.45;
  }

  .sheet-main-card {
    padding: 14px;
    border-radius: 18px;
  }

  .sheet-main-kicker {
    min-height: 24px;
    padding: 0 8px;
    font-size: .7rem;
    margin-bottom: 10px;
  }

  .sheet-main-card h3 {
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .sheet-meta-row {
    gap: 8px;
    margin: 12px 0;
  }

  .sheet-price {
    min-height: 38px;
    padding: 0 12px;
    font-size: .92rem;
  }

  .sheet-meta-pill {
    min-height: 30px;
    padding: 0 10px;
    font-size: .74rem;
  }

  .sheet-desc {
    font-size: .94rem;
    line-height: 1.65;
  }

  .sheet-service-note {
    margin-top: 12px;
    padding-top: 12px;
    font-size: .84rem;
    line-height: 1.45;
  }

  .sheet-block-card {
    padding: 14px;
    border-radius: 18px;
  }

  .sheet-section-head {
    margin-bottom: 10px;
  }

  .sheet-section-head h4 {
    font-size: .98rem;
  }

  .sheet-section-tag {
    min-height: 26px;
    padding: 0 9px;
    font-size: .7rem;
  }

  .allergen-list {
    gap: 6px;
  }

  .allergen-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: .72rem;
  }

  .supp-group {
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 10px;
  }

  .supp-group-head p {
    font-size: .76rem;
  }

  .dish-sheet .supp-row {
    min-height: 52px;
    padding: 10px 11px;
    gap: 10px;
    border-radius: 13px;
  }

  .dish-sheet .supp-input {
    gap: 8px;
  }

  .dish-sheet .supp-input span {
    font-size: .9rem;
    line-height: 1.35;
  }

  .dish-sheet .supp-row strong {
    font-size: .84rem;
  }

  .dish-sheet-foot {
    padding: 12px 12px calc(14px + var(--safe-bottom));
  }

  .sheet-summary {
    padding: 10px 12px;
    font-size: .86rem;
  }

  .sheet-total {
    min-height: 42px;
    padding: 0 12px;
    font-size: .92rem;
  }

  .sheet-actions {
    gap: 10px;
    margin-top: 12px;
  }

  .btn-ghost,
  .btn-primary {
    min-height: 46px;
    padding: 0 14px;
    font-size: .9rem;
  }
}

/* Main page premium pass */
body {
  background:
    radial-gradient(1000px 440px at 8% -12%, color-mix(in srgb, var(--primary-color) 16%, transparent 84%) 0%, transparent 58%),
    radial-gradient(1000px 440px at 92% -14%, color-mix(in srgb, var(--secondary-color) 14%, transparent 86%) 0%, transparent 58%),
    linear-gradient(180deg, color-mix(in srgb, var(--restaurant-bg) 82%, #ffffff 18%) 0%, color-mix(in srgb, var(--restaurant-bg) 92%, #eef4fb 8%) 100%);
}

.menu-app {
  width: min(1040px, 100%);
  padding-top: calc(18px + var(--safe-top));
}

.hero {
  border-radius: 30px;
  padding: calc(22px + (var(--safe-top) * 0.1)) 18px 18px;
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.20),
    0 1px 0 rgba(255,255,255,.08) inset;
}

.hero-head {
  gap: 16px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -0.05em;
}

.hero-kicker {
  letter-spacing: .18em;
}

.hero-subline {
  font-size: 1.02rem;
}

.hero-feature-row {
  gap: 14px;
}

.hero-feature-card {
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%);
  box-shadow:
    0 18px 34px rgba(2,6,23,.12),
    0 1px 0 rgba(255,255,255,.08) inset;
}

.hero-feature-card strong {
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.hero-feature-card span {
  font-size: .95rem;
}

.hero-badge {
  min-height: 34px;
  padding: 0 14px;
  font-size: .88rem;
}

.action-row {
  gap: 10px;
}

.action-btn {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: .92rem;
}

.surface {
  margin-top: 16px;
  border-radius: 28px;
  padding: 16px;
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255,255,255,.94) inset;
}

.surface-head {
  margin-bottom: 16px;
}

.surface-kicker {
  letter-spacing: .2em;
}

.surface-title {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  max-width: 32ch;
}

.service-alert-card {
  padding: 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(248,251,255,.97) 100%);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255,255,255,.96) inset;
}

.service-alert-card strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.tools {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  margin-top: 2px;
}

.search-wrap {
  border-radius: 20px;
}

.search-input {
  min-height: 54px;
  padding-left: 38px;
  border-radius: 18px;
  font-size: 1rem;
}

.switch {
  gap: 10px;
  font-size: .95rem;
}

.result-count {
  font-size: .92rem;
  font-weight: 800;
}

.chipgrid-wrap,
.chipbar-wrap {
  margin-top: 14px;
}

.chipbar {
  gap: 10px;
  padding: 10px 12px 8px;
}

.chip {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}

.section {
  margin-top: 28px;
}

.category-head {
  align-items: center;
  margin-bottom: 16px;
}

.category-title {
  font-size: clamp(1.34rem, 2.3vw, 1.75rem);
}

.category-count {
  min-height: 36px;
  padding: 0 14px;
  font-size: .84rem;
}

.dish-card {
  margin-bottom: 16px;
}

.dish-card {
  cursor: pointer;
}

.dish-card > *,
.dish-card .media,
.dish-card .media img,
.dish-card .skeleton,
.dish-card .skeleton::before,
.dish-card .dish-main,
.dish-card .dish-side,
.dish-card .dish-open-hint,
.dish-card .price-pill {
  pointer-events: none !important;
}

@media (max-width: 720px) {
  .menu-app {
    padding-top: calc(10px + var(--safe-top));
  }

  .hero {
    border-radius: 24px;
    padding: 14px;
  }

  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .hero-feature-row {
    gap: 10px;
  }

  .hero-feature-card {
    border-radius: 18px;
    padding: 14px;
  }

  .surface {
    border-radius: 22px;
    padding: 14px;
  }

  .surface-title {
    max-width: none;
    font-size: 1.2rem;
  }

  .tools {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: 1.65rem;
  }

  .hero-subline {
    font-size: .9rem;
  }

  .hero-feature-card {
    padding: 12px 13px;
  }

  .hero-feature-card strong {
    font-size: .95rem;
  }

  .hero-feature-card span {
    font-size: .84rem;
  }

  .surface {
    border-radius: 18px;
    padding: 12px;
  }

  .surface-title {
    font-size: 1.08rem;
    max-width: none;
  }

  .service-alert-card {
    padding: 14px 15px;
    border-radius: 18px;
  }

  .service-alert-card strong {
    font-size: 1rem;
  }

  .chip {
    min-height: 36px;
    padding: 0 12px;
    font-size: .8rem;
  }

  .category-title {
    font-size: 1.14rem;
  }
}

/* Main page stronger premium pass */
.hero-feature-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-feature-card {
  position: relative;
  overflow: hidden;
}

.hero-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 36%);
}

.hero-feature-card > * {
  position: relative;
  z-index: 1;
}

.hero-feature-card--highlight {
  background:
    radial-gradient(80% 100% at 100% 0%, color-mix(in srgb, var(--primary-color) 28%, transparent 72%) 0%, transparent 54%),
    linear-gradient(135deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.08) 100%);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 22px 42px rgba(2,6,23,.16),
    0 1px 0 rgba(255,255,255,.10) inset;
}

.hero-feature-card--highlight strong {
  font-size: 1.08rem;
}

.surface-controls {
  overflow: hidden;
}

.surface-controls::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 90% at 100% 0%, color-mix(in srgb, var(--primary-color) 10%, transparent 90%) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.28), transparent 24%);
}

.surface-controls > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .hero-feature-row {
    grid-template-columns: 1fr;
  }
}

/* Premium hero restructure */
.hero-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .85fr);
  gap: 18px;
  align-items: stretch;
}

.hero-main-panel {
  display: grid;
  gap: 18px;
}

.hero-side-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(100% 120% at 100% 0%, color-mix(in srgb, var(--primary-color) 24%, transparent 76%) 0%, transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.08) 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 22px 42px rgba(2,6,23,.16),
    0 1px 0 rgba(255,255,255,.12) inset;
}

.hero-side-kicker {
  margin: 0 0 6px;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.72);
}

.hero-side-top strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.hero-side-top span {
  display: block;
  margin-top: 6px;
  line-height: 1.5;
  color: rgba(255,255,255,.82);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat-card {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
}

.hero-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-stat-label {
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 700;
}

.hero-side-note {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}

.hero-badge-soft {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}

.hero-connected-row {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .hero-premium-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-side-panel {
    padding: 14px;
    border-radius: 20px;
  }

  .hero-stat-grid {
    gap: 8px;
  }

  .hero-stat-card {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .hero-stat-value {
    font-size: 1.08rem;
  }
}

/* Final premium hero cleanup */
.hero-main-panel--full {
  display: grid;
  gap: 22px;
}

.hero-premium-grid {
  display: block;
}

.hero-head {
  align-items: center;
  gap: 18px;
  padding: 8px 2px 0;
}

.hero-logo {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  box-shadow:
    0 20px 40px rgba(2, 6, 23, .22),
    0 1px 0 rgba(255,255,255,.18) inset;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.45rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.hero-subline {
  max-width: 760px;
  font-size: 1.03rem;
  color: rgba(255,255,255,.84);
}

.hero-badges {
  gap: 10px;
}

.hero-badge,
.hero-badge-soft {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .14);
}

.hero-feature-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-feature-card {
  min-height: 132px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07)),
    radial-gradient(120% 140% at 100% 0%, color-mix(in srgb, var(--primary-color) 22%, transparent 78%) 0%, transparent 58%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 26px 50px rgba(2, 6, 23, .16),
    0 1px 0 rgba(255,255,255,.1) inset;
}

.hero-feature-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.hero-feature-card span {
  display: block;
  line-height: 1.6;
  color: rgba(255,255,255,.84);
}

.hero-feature-card--highlight {
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08)),
    radial-gradient(100% 130% at 100% 0%, color-mix(in srgb, #7c3aed 28%, transparent 72%) 0%, transparent 55%),
    radial-gradient(80% 100% at 0% 100%, color-mix(in srgb, var(--primary-color) 20%, transparent 80%) 0%, transparent 62%);
  border-color: rgba(255,255,255,.18);
}

.action-row {
  margin-top: 20px;
}

.action-grid {
  gap: 12px;
}

.action-btn {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(10, 18, 38, .06);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,249,255,.92));
  box-shadow:
    0 18px 38px rgba(14, 20, 43, .12),
    0 1px 0 rgba(255,255,255,.95) inset;
  font-weight: 800;
  letter-spacing: -.01em;
}

.action-btn:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,246,255,.96));
  box-shadow:
    0 20px 44px rgba(14, 20, 43, .16),
    0 1px 0 rgba(255,255,255,.98) inset;
}

.hero-connected-row .hero-badge {
  background: rgba(7, 19, 47, .28);
  border-color: rgba(255,255,255,.16);
}

.surface-controls {
  padding: 20px 24px 22px;
  border-radius: 30px;
}

.surface-head {
  margin-bottom: 14px;
}

.surface-kicker {
  font-size: .78rem;
  letter-spacing: .18em;
  color: rgba(15, 23, 42, .54);
}

.surface-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

@media (max-width: 900px) {
  .hero-feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-head {
    align-items: flex-start;
  }

  .hero-logo {
    width: 78px;
    height: 78px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }

  .action-btn {
    min-height: 52px;
  }

  .surface-controls {
    padding: 18px 16px 18px;
  }

  .surface-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 520px) {
  .hero-main-panel--full {
    gap: 16px;
  }

  .hero-head {
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .hero-subline {
    font-size: .95rem;
  }

  .hero-feature-card {
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .surface-title {
    font-size: 1.52rem;
  }
}

/* Remove hero gradient on request */
.hero {
  background: var(--secondary-color);
}

.hero-feature-row,
.hero-feature-card,
.hero-feature-card::before,
.hero-feature-card > * {
  display: none;
}

/* Final mobile hero fit */
.hero-copy {
  min-width: 0;
}

.hero-copy h1,
.hero-subline,
.hero-kicker {
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .hero-head {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .hero-kicker {
    font-size: .68rem;
    letter-spacing: .14em;
    margin-bottom: 6px;
  }

  .hero-copy h1 {
    font-size: 1.55rem;
    line-height: 1.02;
    letter-spacing: -.04em;
    margin-bottom: 6px;
  }

  .hero-subline {
    font-size: .9rem;
    line-height: 1.32;
    max-width: none;
  }

  .hero-badges {
    margin-top: 8px;
  }

  .hero-badge,
  .hero-badge-soft {
    min-height: 34px;
    padding: 0 13px;
    font-size: .82rem;
  }
}

/* Final public premium pass */
.menu-app {
  width: min(1120px, 100%);
}

.hero {
  border-radius: 30px;
  padding: calc(20px + (var(--safe-top) * 0.08)) 18px 18px;
  box-shadow:
    0 28px 64px rgba(15, 23, 42, 0.22),
    0 1px 0 rgba(255,255,255,.08) inset;
}

.hero-main-panel--full {
  gap: 14px;
}

.hero-head {
  grid-template-columns: auto minmax(0, 1fr);
}

.hero-copy h1 {
  margin: 4px 0 6px;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.055em;
}

.hero-subline {
  max-width: 48rem;
  line-height: 1.5;
  opacity: .92;
}

.hero-badges {
  margin-top: 10px;
}

.action-row {
  margin-top: 18px;
  gap: 10px;
}

.action-btn {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 20px;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background-color .24s ease;
}

.action-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.35), transparent 42%);
  opacity: .65;
  pointer-events: none;
}

.action-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255,255,255,.98) inset;
}

.action-btn:active {
  transform: scale(.985);
}

.action-btn--primary {
  background: rgba(255,255,255,.98);
  border-color: rgba(255,255,255,.52);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255,255,255,.98) inset;
}

.action-btn--secondary,
.action-btn--contact {
  background: rgba(255,255,255,.94);
}

.action-btn--soft {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}

.surface {
  margin-top: 18px;
  border-radius: 30px;
  padding: 18px;
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255,255,255,.94) inset;
}

.surface-head {
  margin-bottom: 18px;
}

.surface-kicker {
  margin-bottom: 8px;
  font-size: .76rem;
  letter-spacing: .22em;
}

.surface-title {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  max-width: 16ch;
}

.tools {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
}

.search-wrap {
  overflow: hidden;
  border-radius: 22px;
}

.search-input {
  min-height: 56px;
  border-radius: 22px;
  box-shadow:
    0 16px 34px rgba(15,23,42,.06),
    0 1px 0 rgba(255,255,255,.96) inset;
}

.switch {
  min-height: 48px;
  padding: 0 8px 0 2px;
  border-radius: 999px;
}

.chipgrid-wrap,
.chipbar-wrap {
  margin-top: 16px;
}

.chipbar {
  gap: 10px;
  padding: 10px 12px 8px;
}

.chip {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.09);
}

.chip:active {
  transform: scale(.985);
}

.chip.active {
  transform: translateY(-1px);
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--primary-color) 30%, transparent 70%);
}

.section {
  margin-top: 30px;
  animation: section-rise .36s ease both;
}

.category-head {
  margin-bottom: 16px;
}

.category-title {
  font-size: clamp(1.34rem, 2.2vw, 1.82rem);
  letter-spacing: -.04em;
}

.dish-card {
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  border-radius: 26px;
  margin-bottom: 18px;
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255,255,255,.96) inset;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background-color .24s ease;
  animation: card-rise .42s ease both;
}

.dish-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 46px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255,255,255,.98) inset;
}

.dish-card:active {
  transform: scale(.992);
}

.dish-card.cta-highlight {
  border-color: color-mix(in srgb, var(--primary-color) 42%, #dbeafe 58%);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--primary-color) 18%, transparent 82%),
    0 24px 46px rgba(15, 23, 42, 0.14);
}

.media {
  width: 112px;
  height: 112px;
  border-radius: 22px;
}

.topline {
  gap: 8px;
}

.dish-main h3 {
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.dish-main p {
  margin-top: 8px;
  font-size: .98rem;
  line-height: 1.58;
}

.pop-badge,
.home-badge,
.allergen-pill {
  animation: badge-pop .3s ease both;
}

.price-pill {
  min-width: 122px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 1rem;
  border-radius: 18px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.dish-open-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(148,163,184,.28);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}

.dish-sheet {
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  box-shadow: 0 32px 84px rgba(15,23,42,.28);
}

.dish-sheet-head {
  position: sticky;
  top: 0;
  z-index: 3;
  backdrop-filter: blur(12px);
}

.sheet-top-premium {
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.sheet-image-frame {
  border-radius: 28px;
}

.sheet-image {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.sheet-main-card,
.sheet-block-card,
.supp-group {
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background-color .24s ease;
}

.sheet-main-card {
  border-radius: 26px;
  box-shadow:
    0 20px 42px rgba(15,23,42,.08),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.sheet-main-card h3 {
  letter-spacing: -.045em;
}

.sheet-meta-row {
  gap: 10px;
}

.sheet-price,
.sheet-total {
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.sheet-price.is-updating,
.sheet-total.is-updating {
  transform: scale(1.03);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--primary-color) 14%, transparent 86%),
    0 14px 30px rgba(15,23,42,.10);
}

.dish-sheet .supp-row {
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background-color .18s ease;
}

.dish-sheet .supp-row:hover {
  transform: translateY(-1px);
}

.dish-sheet .supp-row.is-selected {
  border-color: color-mix(in srgb, var(--primary-color) 42%, #bfdbfe 58%);
  background: color-mix(in srgb, var(--primary-color) 8%, #ffffff 92%);
  box-shadow: 0 14px 24px rgba(15,23,42,.05);
}

.btn-ghost,
.btn-outline,
.btn-primary {
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.btn-ghost:hover,
.btn-outline:hover,
.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost:active,
.btn-outline:active,
.btn-primary:active {
  transform: scale(.985);
}

.mobile-sticky-order {
  position: fixed;
  left: 50%;
  bottom: calc(18px + var(--safe-bottom));
  transform: translateX(-50%);
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(calc(100vw - 20px), 420px);
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 82%, #0f172a 18%) 0%, color-mix(in srgb, var(--secondary-color) 30%, var(--primary-color) 70%) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.02em;
  box-shadow:
    0 20px 44px rgba(15,23,42,.28),
    0 1px 0 rgba(255,255,255,.18) inset;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    opacity .24s ease;
  opacity: 0;
  pointer-events: none;
}

.mobile-sticky-order.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-order:hover {
  transform: translateX(-50%) translateY(-2px);
}

.mobile-sticky-order:active {
  transform: translateX(-50%) scale(.985);
}

body.sheet-open .mobile-sticky-order {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badge-pop {
  from {
    opacity: 0;
    transform: scale(.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .sheet-top-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    border-radius: 24px;
    padding: 14px;
  }

  .hero-copy h1 {
    font-size: 1.92rem;
  }

  .action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
  }

  .action-btn {
    min-height: 52px;
    border-radius: 18px;
    height: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
    line-height: 1.18;
    white-space: normal;
    word-break: break-word;
    overflow: hidden;
  }

  .surface {
    border-radius: 24px;
    padding: 14px;
  }

  .surface-title {
    font-size: 1.5rem;
    max-width: none;
  }

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

  .dish-card {
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
      "media main"
      "price price";
    gap: 14px;
  }

  .media {
    width: 88px;
    height: 88px;
    grid-area: media;
  }

  .dish-main {
    grid-area: main;
  }

  .dish-side {
    grid-area: price;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
  }

  .mobile-sticky-order {
    display: inline-flex;
  }

  .menu-app {
    padding-bottom: calc(104px + var(--safe-bottom));
  }
}

@media (max-width: 520px) {
  .hero-head {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .hero-copy h1 {
    font-size: 1.62rem;
    line-height: 1;
  }

  .hero-subline {
    font-size: .9rem;
    line-height: 1.34;
  }

  .hero-badge,
  .hero-badge-soft {
    min-height: 34px;
    padding: 0 13px;
    font-size: .82rem;
  }

  .action-btn {
    min-height: 50px;
    padding: 8px 12px;
    font-size: .84rem;
  }

  .action-btn span:last-child {
    display: block;
    max-width: 100%;
  }

  .surface {
    border-radius: 20px;
    padding: 12px;
  }

  .surface-title {
    font-size: 1.34rem;
    line-height: 1.08;
  }

  .search-input {
    min-height: 50px;
    border-radius: 18px;
  }

  .chip {
    min-height: 38px;
    padding: 0 13px;
    font-size: .8rem;
  }

  .dish-card {
    padding: 12px;
    border-radius: 20px;
  }

  .dish-main h3 {
    font-size: 1.04rem;
  }

  .dish-main p {
    font-size: .9rem;
    line-height: 1.48;
  }

  .price-pill {
    min-height: 46px;
    min-width: 0;
    padding: 0 16px;
    font-size: .94rem;
  }

  .dish-open-hint {
    min-height: 38px;
    padding: 0 13px;
    font-size: .78rem;
  }

  .dish-sheet {
    width: calc(100vw - 8px);
    max-height: calc(100vh - 8px);
    border-radius: 24px 24px 0 0;
  }

  .dish-sheet-head {
    padding: 14px;
  }

  .sheet-main-card,
  .sheet-block-card {
    border-radius: 20px;
  }

  .sheet-image-frame {
    border-radius: 22px;
  }

  .sheet-image {
    max-height: 220px;
  }

.mobile-sticky-order {
      width: calc(100vw - 16px);
      min-height: 56px;
      bottom: calc(10px + var(--safe-bottom));
  }
}

/* Final click safety for category chips */
.surface-controls {
  isolation: isolate;
}

.surface-controls::before,
.chipbar-fade {
  pointer-events: none !important;
}

.chipgrid-wrap,
.chipbar-wrap,
.chipbar {
  position: relative;
  z-index: 20 !important;
  pointer-events: auto !important;
}

.chip,
.chipgrid-wrap [data-chip],
.chipbar [data-chip] {
  position: relative;
  z-index: 21 !important;
  pointer-events: auto !important;
  touch-action: manipulation;
  text-decoration: none;
}

/* Reliability overrides: hero actions + category chips */
.hero {
  z-index: 100 !important;
}

.hero::before,
.hero::after,
.action-btn::before,
.action-btn::after,
.surface-controls::before,
.surface-controls::after {
  pointer-events: none !important;
}

.hero-head,
.hero-copy,
.hero-badges,
.hero-actions,
.action-row,
.action-btn {
  position: relative;
  z-index: 101 !important;
}

.hero-actions {
  display: flex !important;
  flex-direction: column;
  gap: 12px !important;
  isolation: isolate;
}

.action-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch;
  gap: 10px !important;
  margin-top: 0 !important;
}

.action-row--primary {
  z-index: 101 !important;
}

.action-row--secondary {
  z-index: 102 !important;
}

.action-row--primary .action-btn {
  flex: 1 1 180px;
}

.action-row--secondary .action-btn {
  flex: 0 1 132px;
  pointer-events: auto !important;
}

.action-btn {
  white-space: normal;
  word-break: break-word;
}

@media (hover: hover) {
  .chip:hover,
  .chip.active {
    transform: none !important;
  }
}

@media (min-width: 721px) {
  .chipgrid-wrap {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 120 !important;
    isolation: isolate;
    margin-top: 20px !important;
    padding-top: 8px;
  }

  .chipbar-wrap {
    display: none !important;
  }

  .chipgrid-wrap .chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    line-height: 1.15;
    vertical-align: top;
  }
}

@media (max-width: 720px) {
  .action-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .action-row--primary .action-btn,
  .action-row--secondary .action-btn {
    flex: initial;
  }

  .action-btn,
  .action-btn:hover,
  .action-btn:active {
    transform: none !important;
  }

  .action-btn {
    min-height: 54px;
    padding: 10px 12px;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease !important;
  }

  .action-btn::after {
    display: none !important;
  }

  .action-btn:hover,
  .action-btn:active,
  .action-btn:focus,
  .action-btn:focus-visible {
    background: rgba(255,255,255,.96) !important;
    border-color: rgba(255,255,255,.42) !important;
    box-shadow:
      0 10px 22px rgba(2, 6, 23, 0.16),
      0 1px 0 rgba(255,255,255,.92) inset !important;
    outline: none !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
  }

  .action-btn--primary:hover,
  .action-btn--primary:active,
  .action-btn--primary:focus,
  .action-btn--primary:focus-visible,
  .action-btn--secondary:hover,
  .action-btn--secondary:active,
  .action-btn--secondary:focus,
  .action-btn--secondary:focus-visible,
  .action-btn--contact:hover,
  .action-btn--contact:active,
  .action-btn--contact:focus,
  .action-btn--contact:focus-visible,
  .action-btn--soft:hover,
  .action-btn--soft:active,
  .action-btn--soft:focus,
  .action-btn--soft:focus-visible {
    color: inherit !important;
    -webkit-text-fill-color: currentColor !important;
    filter: none !important;
  }

  .action-btn,
  .action-btn:visited,
  .action-btn span,
  .action-btn:hover span,
  .action-btn:active span,
  .action-btn:focus span,
  .action-btn:focus-visible span {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
  }

  .chipbar-wrap {
    margin-top: 18px !important;
    padding-top: 6px;
    isolation: isolate;
    z-index: 120 !important;
  }

  .chipbar {
    padding-top: 4px !important;
  }

  .chipbar .chip {
    min-height: 46px;
    padding: 0 16px;
    line-height: 1.15;
  }
}

/* Final premium refinement: safe visual pass only */
.hero {
  border-radius: 28px;
  padding: calc(18px + (var(--safe-top) * 0.12)) 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 26px 54px rgba(15, 23, 42, 0.20),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.hero-main-panel--full {
  display: grid;
  gap: 14px;
}

.hero-head {
  gap: 16px;
  align-items: start;
}

.hero-logo {
  width: 82px;
  height: 82px;
  border-width: 2px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.28);
}

.hero-copy h1,
.hero h1 {
  margin: 2px 0 4px;
  letter-spacing: -0.05em;
  font-size: clamp(1.9rem, 4.4vw, 3.35rem);
}

.hero-subline {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.52;
}

.hero-badges {
  gap: 10px;
  margin-top: 12px;
}

.hero-actions {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 20;
}

.action-btn,
.action-btn:hover,
.action-btn:active,
.action-btn:focus,
.action-btn:focus-visible {
  transform: none !important;
}

.hero-badge {
  min-height: 34px;
  padding: 0 14px;
  border-width: 1px;
  backdrop-filter: blur(12px);
}

.action-row {
  margin-top: 18px;
  gap: 10px;
  display: grid;
}

.action-row--primary {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.action-row--secondary {
  grid-template-columns: repeat(auto-fit, minmax(132px, max-content));
  align-items: stretch;
}

.action-btn {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.14),
    0 1px 0 rgba(255,255,255,.98) inset;
}

.action-btn--primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary-color) 18%, #ffffff 82%) 0%, #ffffff 100%);
  border-color: color-mix(in srgb, var(--primary-color) 22%, rgba(255, 255, 255, 0.52));
  box-shadow:
    0 16px 30px color-mix(in srgb, var(--primary-color) 12%, rgba(2, 6, 23, 0.12)),
    0 1px 0 rgba(255,255,255,.98) inset;
}

.action-btn--secondary,
.action-btn--contact {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.95) 100%);
}

.action-btn--soft {
  background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.14) 100%);
  color: #ffffff;
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}

/* Hero buttons: stable layout and click-safe overrides */
.hero,
.hero-main-panel--full,
.hero-head,
.hero-copy,
.hero-badges,
.hero-actions,
.action-row,
.action-btn {
  pointer-events: auto !important;
}

.hero::before,
.hero::after,
.action-btn::before,
.action-btn::after {
  pointer-events: none !important;
}

@media (min-width: 721px) {
  .hero-actions {
    gap: 12px !important;
  }

  .action-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: 0 !important;
  }

  .action-row--primary {
    grid-template-columns: none !important;
  }

  .action-row--secondary {
    grid-template-columns: none !important;
  }

  .action-row--primary .action-btn {
    flex: 1 1 180px !important;
    width: auto !important;
  }

  .action-row--secondary .action-btn,
  .action-row--secondary #share-menu {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 132px !important;
  }

  .action-btn,
  .action-btn:hover,
  .action-btn:active,
  .action-btn:focus,
  .action-btn:focus-visible {
    transform: none !important;
  }
}

@media (min-width: 721px) and (max-width: 1220px) {
  .action-row--primary .action-btn {
    flex-basis: 220px !important;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .action-row--primary .action-btn,
  .action-row--secondary .action-btn,
  .action-row--secondary #share-menu {
    min-width: 0 !important;
    flex: 1 1 calc(33.333% - 12px) !important;
  }
}

.surface {
  border-radius: 26px;
  padding: 16px;
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255,255,255,.9) inset;
}

.surface-controls {
  padding: 18px;
  background:
    radial-gradient(480px 180px at 100% 0%, color-mix(in srgb, var(--primary-color) 10%, transparent 90%) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.94) 100%);
}

.surface-head {
  margin-bottom: 18px;
}

.surface-kicker {
  margin-bottom: 10px;
  letter-spacing: .22em;
}

.surface-title {
  max-width: 16ch;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  line-height: 1.05;
}

.tools {
  gap: 14px;
  margin-bottom: 4px;
}

.search-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.search-input {
  min-height: 56px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.switch {
  min-height: 56px;
  padding: 0 8px 0 2px;
}

.chipgrid-wrap,
.chipbar-wrap {
  margin-top: 16px !important;
}

.chip {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.chip.active {
  box-shadow:
    0 14px 26px color-mix(in srgb, var(--primary-color) 30%, transparent 70%),
    0 1px 0 rgba(255,255,255,.24) inset;
}

.section {
  padding-top: 6px;
}

.category-head {
  margin-bottom: 16px;
  padding: 0 2px;
}

.category-title {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -0.04em;
}

.category-count {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 10%, #ffffff 90%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 16%, #dbeafe 84%);
  font-weight: 800;
}

.dish-card {
  grid-template-columns: 112px minmax(0, 1fr) auto;
  min-height: 150px;
  padding: 18px;
  border-radius: 24px;
  border-color: rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.95) 100%);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255,255,255,.98) inset;
}

.dish-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 46px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255,255,255,.98) inset;
}

.dish-card .topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

@media (max-width: 640px) {
  .dish-card .topline {
    gap: 6px;
  }

  .dish-card .pop-badge,
  .dish-card .home-badge {
    min-height: 21px;
    padding: 0 8px;
    font-size: 0.67rem;
  }
}

.media {
  width: 112px;
  height: 112px;
  border-radius: 22px;
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.10),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.dish-main {
  gap: 10px;
}

.dish-main h3,
.dish-name {
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  letter-spacing: -0.04em;
}

.dish-main p,
.dish-desc {
  margin-top: 8px;
  color: #5a6b82;
  line-height: 1.56;
}

.price-pill {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--secondary-color) 26%, transparent 74%);
}

.dish-open-hint {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 7%, #ffffff 93%);
  border: 1px solid color-mix(in srgb, var(--primary-color) 12%, #dbeafe 88%);
  color: #334155;
}

.dish-sheet {
  border-radius: 30px 30px 0 0;
  box-shadow:
    0 32px 72px rgba(15, 23, 42, 0.26),
    0 1px 0 rgba(255,255,255,.94) inset;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}

.dish-sheet-head {
  padding: 18px 20px;
  flex: 0 0 auto;
}

.dish-sheet-head h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  letter-spacing: -0.04em;
}

.sheet-top-premium {
  gap: 18px;
  align-items: stretch;
}

.dish-sheet-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.sheet-main-card,
.sheet-block-card {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.94) 100%);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.sheet-main-card {
  padding: 22px;
}

.sheet-block-card {
  padding: 18px 20px;
}

.sheet-image-frame {
  border-radius: 24px;
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255,255,255,.95) inset;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.sheet-image {
  object-fit: cover;
  object-position: center;
}

.sheet-main-kicker,
.sheet-section-tag,
.sheet-meta-pill {
  font-weight: 800;
}

.sheet-meta-row {
  gap: 10px;
  flex-wrap: wrap;
}

.sheet-meta-pill {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.sheet-service-note {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: #64748b;
}

.trust-strip {
  position: relative;
  z-index: 45;
  margin-top: 16px;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--primary-color) 14%, transparent) 0%, transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.94) 100%);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.07),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.trust-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.trust-head h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: .98;
  letter-spacing: -0.045em;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 112px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.045);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 10px 20px color-mix(in srgb, var(--primary-color) 24%, transparent);
}

.trust-card strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 5px;
}

.trust-card p {
  margin: 0;
  color: #526179;
  line-height: 1.45;
  font-size: .93rem;
}

.pairing-strip {
  border-top: 0;
  padding: 16px;
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--primary-color) 11%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(247,250,255,.96) 100%);
}

.pairing-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.pairing-head h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.pairing-head p {
  margin: 0;
  color: #64748b;
  line-height: 1.4;
}

.pairing-head-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  max-width: 220px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--primary-color) 24%, #dbeafe);
  background: color-mix(in srgb, var(--primary-color) 9%, #ffffff);
  color: var(--primary-color);
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
}

.pairing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pairing-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pairing-card:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--primary-color) 24%, #dbeafe);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.075);
}

.pairing-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  overflow: hidden;
  background: #eef2ff;
  color: var(--primary-color);
  font-weight: 900;
}

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

.pairing-copy {
  min-width: 0;
}

.pairing-copy strong,
.pairing-copy small,
.pairing-copy em {
  display: block;
}

.pairing-copy em {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-color) 9%, #eef2ff);
  color: var(--primary-color);
  font-size: .64rem;
  font-style: normal;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pairing-card--drink .pairing-copy em {
  background: rgba(14, 165, 233, .10);
  color: #0369a1;
}

.pairing-card--dessert .pairing-copy em {
  background: rgba(245, 158, 11, .13);
  color: #92400e;
}

.pairing-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.pairing-copy small {
  margin-top: 4px;
  color: #64748b;
  font-weight: 800;
}

.pairing-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--primary-color) 26%, #dbeafe);
  background: color-mix(in srgb, var(--primary-color) 12%, #ffffff);
  color: var(--primary-color);
  font-weight: 900;
  font-size: .88rem;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--primary-color) 11%, transparent);
}

.supp-group {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  overflow: hidden;
}

.supp-row {
  min-height: 52px;
}

.supp-row.is-selected {
  background: color-mix(in srgb, var(--primary-color) 7%, #ffffff 93%);
}

.dish-sheet-foot {
  box-shadow: 0 -1px 0 rgba(148, 163, 184, 0.14);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  z-index: 2;
}

body.sheet-open .hero,
body.sheet-open .surface,
body.sheet-open .surface-controls,
body.sheet-open .surface-menu-list {
  pointer-events: none;
}

.dish-overlay {
  z-index: 300 !important;
}

.dish-sheet {
  z-index: 301 !important;
}

@media (max-width: 720px) {
  .chipbar-wrap {
    overflow: visible !important;
    margin-top: 14px !important;
    padding: 0 !important;
  }

  .chipbar-fade {
    display: none !important;
  }

  .chipbar {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    overflow: visible !important;
    padding: 0 !important;
    -webkit-overflow-scrolling: auto;
    scroll-snap-type: none;
  }

  .chipbar .chip {
    flex: 0 1 auto;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
  }

  .surface-controls {
    overflow: visible !important;
  }
}

@media (max-width: 720px) {
  .surface-controls {
    padding: 16px 14px 18px !important;
    border-radius: 26px;
  }

  .surface-head {
    margin-bottom: 14px;
  }

  .surface-title {
    font-size: 1.28rem !important;
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .tools {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px 12px !important;
    align-items: center !important;
    margin-bottom: 0 !important;
  }

  .search-wrap {
    grid-column: 1 / -1;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.95) 100%);
    box-shadow:
      0 10px 24px rgba(15, 23, 42, 0.05),
      0 1px 0 rgba(255,255,255,.98) inset;
  }

  .search-input {
    min-height: 50px !important;
    border-radius: 18px !important;
    font-size: .96rem !important;
  }

  .switch {
    min-height: 34px;
    padding: 0 !important;
    justify-self: start;
    gap: 8px;
    font-size: .9rem;
    font-weight: 800;
    color: #334155;
  }

  .result-count {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary-color) 8%, #ffffff 92%);
    border: 1px solid color-mix(in srgb, var(--primary-color) 14%, #dbeafe 86%);
    font-size: .84rem !important;
    font-weight: 800;
    color: #475569;
  }

  .chipbar-wrap {
    margin-top: 14px !important;
    padding: 12px !important;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.94) 100%);
    border: 1px solid rgba(191, 219, 254, 0.32);
    box-shadow:
      0 14px 30px rgba(15, 23, 42, 0.06),
      0 1px 0 rgba(255,255,255,.98) inset;
  }

  .chipbar {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
    padding: 0 !important;
  }

  .chipbar .chip {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    border-radius: 16px;
    box-shadow:
      0 8px 18px rgba(15, 23, 42, 0.05),
      0 1px 0 rgba(255,255,255,.98) inset;
  }
}

@media (max-width: 420px) {
  .chipbar {
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
  }

  .chipbar .chip {
    min-height: 42px;
    padding: 0 10px;
    font-size: .82rem;
  }
}

@media (max-width: 720px) {
  /* FIX 2026-06-14: content-visibility:auto faisait rendre les cartes/sections
     hors-ecran a leur taille placeholder (carte 150px, section 1px de large).
     Resultat: dernieres categories (boissons/cocktails sans photo) minuscules.
     Neutralise — perf negligeable pour un menu de ~100 plats. */
  .surface-menu-list,
  .section,
  .dish-card {
    content-visibility: visible;
  }

  .hero {
    border-radius: 24px;
    padding: calc(14px + (var(--safe-top) * 0.1)) 14px 14px;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-subline {
    font-size: .95rem;
  }

  .surface,
  .surface-controls {
    padding: 14px;
  }

  .surface-title {
    max-width: none;
    font-size: 1.45rem;
  }

  .action-row--primary,
  .action-row--secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tools {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .switch,
  .result-count {
    justify-self: start;
  }

  .dish-card {
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas:
      "media main"
      "price price";
    min-height: 0;
    padding: 14px;
  }

  .media {
    width: 86px;
    height: 86px;
    grid-area: media;
  }

  .dish-main {
    grid-area: main;
  }

  .dish-side {
    grid-area: price;
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .price-pill {
    justify-self: start;
  }

  .dish-sheet-head {
    padding: 14px 16px;
  }

  .sheet-top-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-head {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: 1.62rem;
  }

  .action-btn {
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 16px;
    font-size: .9rem;
  }

  .action-row--primary,
  .action-row--secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dish-card {
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .dish-main h3,
  .dish-name {
    font-size: 1.04rem;
  }

  .dish-main p,
  .dish-desc {
    font-size: .9rem;
    line-height: 1.46;
  }

  .price-pill {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: .92rem;
  }

  .dish-open-hint {
    min-height: 36px;
    padding: 0 11px;
    font-size: .76rem;
  }
}

@media (max-width: 720px) {
  .surface-controls {
    padding: 16px 14px 18px !important;
  }

  .surface-controls .tools {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px 12px !important;
    align-items: center !important;
  }

  .surface-controls .search-wrap {
    grid-column: 1 / -1 !important;
  }

  .surface-controls .switch {
    justify-self: start !important;
    width: auto !important;
  }

  .surface-controls .result-count {
    justify-self: end !important;
    width: auto !important;
    text-align: right !important;
  }

  .surface-controls .chipbar-wrap {
    margin-top: 14px !important;
    padding: 12px !important;
    border-radius: 20px !important;
    overflow: visible !important;
  }

  .surface-controls .chipbar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .surface-controls .chipbar .chip {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 44px !important;
    height: auto !important;
    padding: 10px 12px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    border-radius: 16px !important;
  }

  .surface-controls .chipbar-fade {
    display: none !important;
  }
}

.legal-footer {
  max-width: 1180px;
  margin: 18px auto 28px;
  padding: 0 4px;
}

.legal-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(131, 151, 191, .18);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.legal-footer__brand {
  font-size: .9rem;
  color: #5d6780;
}

.legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.legal-footer__links a {
  color: #21304e;
  font-weight: 700;
  text-decoration: none;
}

.legal-footer__links a:hover {
  text-decoration: underline;
}

.hero-main-panel--full {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .legal-footer {
    margin: 14px auto 110px;
    padding: 0 12px;
  }

  .legal-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final hero click fix: keep the lower action row above any accumulated overlays */
.hero-main-panel--full,
.hero-actions,
.action-row--secondary {
  position: relative !important;
  isolation: isolate !important;
}

.hero-main-panel--full {
  z-index: 20 !important;
}

.hero-actions {
  z-index: 40 !important;
}

.action-row--primary {
  position: relative !important;
  z-index: 41 !important;
}

.action-row--secondary {
  z-index: 60 !important;
  pointer-events: auto !important;
}

.action-row--secondary .action-btn,
.action-row--secondary #share-menu {
  position: relative !important;
  z-index: 61 !important;
  pointer-events: auto !important;
}

.hero-actions::before,
.hero-actions::after,
.action-row--primary::before,
.action-row--primary::after,
.action-row--secondary::before,
.action-row--secondary::after {
  pointer-events: none !important;
}

@media (min-width: 721px) {
  .hero-main-panel--full,
  .hero-head,
  .hero-copy,
  .hero-badges,
  .hero-actions,
  .action-row,
  .action-row--primary,
  .action-row--secondary {
    position: static !important;
    z-index: auto !important;
    isolation: auto !important;
    pointer-events: auto !important;
  }

  .hero::before,
  .hero::after,
  .hero-main-panel--full::before,
  .hero-main-panel--full::after,
  .hero-actions::before,
  .hero-actions::after,
  .action-row::before,
  .action-row::after {
    display: none !important;
  }

  .hero-actions {
    display: block !important;
  }

  .action-row--primary,
  .action-row--secondary {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: 12px !important;
  }

  .action-row--primary .action-btn {
    flex: 1 1 180px !important;
    min-width: 180px !important;
    width: auto !important;
  }

  .action-row--secondary .action-btn,
  .action-row--secondary #share-menu {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    min-width: 140px !important;
    width: auto !important;
    max-width: none !important;
  }

  .hero-head,
  .hero-copy,
  .hero-badges,
  .hero-logo,
  .hero-kicker,
  .hero-subline,
  .hero h1 {
    pointer-events: none !important;
  }

  .hero-actions,
  .action-row--primary,
  .action-row--secondary,
  .action-btn,
  .action-btn * {
    pointer-events: auto !important;
  }
}

/* Menu page hero actions: dedicated classes, independent from old generic action-row/action-btn rules */
.menu-app .hero-actions-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  position: relative !important;
  z-index: 20 !important;
  margin-top: 4px !important;
}

.menu-app .hero-actions-menu__row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: stretch !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 21 !important;
  pointer-events: none !important;
}

.menu-app .hero-actions-menu__row--primary {
  z-index: 21 !important;
}

.menu-app .hero-actions-menu__row--secondary {
  z-index: 30 !important;
}

.menu-app .hero-actions-menu__link,
.menu-app .hero-actions-menu__link:hover,
.menu-app .hero-actions-menu__link:active,
.menu-app .hero-actions-menu__link:focus,
.menu-app .hero-actions-menu__link:focus-visible {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  min-height: 52px !important;
  padding: 0 18px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  font-size: 0.96rem !important;
  line-height: 1.2 !important;
  color: #0f172a !important;
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.14),
    0 1px 0 rgba(255,255,255,.98) inset !important;
  transform: none !important;
  pointer-events: auto !important;
  position: relative !important;
  z-index: 31 !important;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.95) 100%) !important;
}

.menu-app .hero-actions-menu__link * {
  pointer-events: none !important;
}

.menu-app .hero-actions-menu__link--primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary-color) 18%, #ffffff 82%) 0%, #ffffff 100%) !important;
  border-color: color-mix(in srgb, var(--primary-color) 22%, rgba(255, 255, 255, 0.52)) !important;
}

.menu-app .hero-actions-menu__link--contact,
.menu-app .hero-actions-menu__link--secondary {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.95) 100%) !important;
}

.menu-app .hero-actions-menu__link--soft {
  color: #ffffff !important;
  background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.14) 100%) !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow: none !important;
}

.menu-app .hero-actions-menu__row::before,
.menu-app .hero-actions-menu__row::after,
.menu-app .hero-actions-menu::before,
.menu-app .hero-actions-menu::after {
  display: none !important;
  pointer-events: none !important;
}

.menu-app .review-prompt-overlay {
  z-index: 5000 !important;
}

.menu-app .review-prompt-card {
  z-index: 5001 !important;
  isolation: isolate !important;
}

.menu-app .review-prompt-actions,
.menu-app .review-prompt-actions .btn-outline,
.menu-app .review-prompt-actions button,
.menu-app .review-prompt-actions a {
  position: relative !important;
  z-index: 5002 !important;
  pointer-events: auto !important;
}

@media (min-width: 721px) {
  .menu-app .hero-head,
  .menu-app .hero-copy,
  .menu-app .hero-kicker,
  .menu-app .hero-subline,
  .menu-app .hero-badges,
  .menu-app .hero-logo,
  .menu-app .hero h1 {
    pointer-events: none !important;
  }

  .menu-app .hero-actions-menu__row--primary .hero-actions-menu__link {
    flex: 0 1 auto !important;
    min-width: 220px !important;
  }

  .menu-app .hero-actions-menu__row--secondary .hero-actions-menu__link {
    flex: 0 1 auto !important;
    min-width: 140px !important;
  }
}

[hidden] {
  display: none !important;
}

.page-language-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6px;
}

.menu-language-switcher {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.16);
  margin-right: 6px;
  max-width: min(100%, 100%);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.menu-language-switcher::-webkit-scrollbar {
  display: none;
}

.menu-language-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255,255,255,.10);
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.menu-language-switcher__link:hover,
.menu-language-switcher__link:focus-visible {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-1px);
}

.menu-language-switcher__link.is-active {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.34);
}

.menu-language-switcher__link img,
.menu-language-switcher__link svg {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15,23,42,.08);
  flex: 0 0 auto;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .hero-head,
html[dir="rtl"] .hero-actions-menu__link,
html[dir="rtl"] .surface-head,
html[dir="rtl"] .tools,
html[dir="rtl"] .dish-card,
html[dir="rtl"] .review-prompt-card,
html[dir="rtl"] .dish-sheet {
  direction: rtl;
}

.review-prompt-overlay[hidden],
.review-prompt-card[hidden],
.dish-overlay[hidden],
.dish-sheet[hidden] {
  display: none !important;
  pointer-events: none !important;
}

@media (max-width: 720px) {
  .trust-strip {
    margin-top: 12px;
    padding: 16px 14px;
    border-radius: 24px;
  }

  .trust-head {
    display: block;
    margin-bottom: 12px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-card {
    min-height: 0;
    padding: 13px;
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .pairing-strip {
    padding: 14px;
  }

  .pairing-head {
    display: block;
  }

  .pairing-head-badge {
    display: none;
    margin-top: 10px;
    max-width: 100%;
  }

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

  .pairing-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 68px;
  }

  .pairing-action {
    margin-top: 2px;
  }

  .pairing-media {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 720px) {
  .page-language-row { margin-bottom: 10px; }

  .menu-language-switcher {
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
    max-width: min(100%, 320px);
  }

  .menu-language-switcher__link {
    width: 34px;
    height: 34px;
  }

  .menu-language-switcher__link img,
  .menu-language-switcher__link svg {
    width: 20px;
    height: 14px;
  }

  .menu-app .hero-actions-menu {
    margin-top: 6px !important;
  }

  .menu-app .hero-actions-menu__row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .menu-app .hero-actions-menu__link,
  .menu-app .hero-actions-menu__link:hover,
  .menu-app .hero-actions-menu__link:active,
  .menu-app .hero-actions-menu__link:focus,
  .menu-app .hero-actions-menu__link:focus-visible {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
  }
}

@media (min-width: 721px) {
  .menu-app .hero-main-panel--full {
    gap: 8px !important;
  }

  .menu-app .hero-head {
    padding-top: 0 !important;
    margin-top: -2px !important;
  }

  .menu-app .hero-copy h1,
  .menu-app .hero h1 {
    margin-top: 0 !important;
  }

  .menu-app .hero-badges {
    margin-top: 8px !important;
  }

  .menu-app .hero-actions-menu {
    margin-top: 0 !important;
  }
}

@media (max-width: 720px) {
}

/* 2026-04 stable premium layer - visual only, keeps restaurant admin colors */
.menu-app {
  width: min(1120px, 100%);
  padding-inline: clamp(10px, 2vw, 18px);
}

.menu-app .hero {
  display: block !important;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 30px) !important;
  border-radius: clamp(24px, 3vw, 34px) !important;
  color: var(--hero-text);
  background:
    linear-gradient(135deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--primary-color) 36%, transparent) 0, transparent 36%),
    radial-gradient(circle at 12% 100%, color-mix(in srgb, var(--primary-color) 18%, transparent) 0, transparent 30%),
    linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 90%, #ffffff 10%) 0%, color-mix(in srgb, var(--secondary-color) 72%, var(--primary-color) 28%) 100%) !important;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 22px 60px rgba(15, 23, 42, .16);
}

.menu-app .hero::before,
.menu-app .hero::after,
.menu-app .hero-main-panel--full::before,
.menu-app .hero-main-panel--full::after,
.menu-app .hero-actions-menu::before,
.menu-app .hero-actions-menu::after,
.menu-app .hero-actions-menu__row::before,
.menu-app .hero-actions-menu__row::after {
  display: none !important;
}

.menu-app .hero-main-panel--full {
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.menu-app .page-language-row {
  display: flex !important;
  justify-content: flex-end !important;
  margin: 0 0 16px !important;
}

.menu-app .menu-language-switcher {
  max-width: 100%;
  padding: 6px !important;
  gap: 6px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .13) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 12px 26px rgba(2,6,23,.12) !important;
}

.menu-app .menu-language-switcher__link {
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.14) !important;
  transition: transform .2s ease, background .2s ease;
}

.menu-app .menu-language-switcher__link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.24) !important;
}

.menu-app .hero-head {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 22px) !important;
  padding: 0 !important;
}

.menu-app .hero-logo {
  width: clamp(72px, 8vw, 96px) !important;
  height: clamp(72px, 8vw, 96px) !important;
  border-radius: 26px !important;
  background: rgba(255,255,255,.12) !important;
  box-shadow: 0 16px 32px rgba(2,6,23,.18) !important;
}

.menu-app .hero-copy h1 {
  margin: 2px 0 6px !important;
  font-size: clamp(2.1rem, 5.2vw, 4.25rem) !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
  color: var(--hero-text) !important;
}

.menu-app .hero-kicker {
  margin-bottom: 8px !important;
  color: color-mix(in srgb, var(--hero-text) 72%, transparent) !important;
  letter-spacing: .18em !important;
}

.menu-app .hero-subline {
  color: var(--hero-subtext) !important;
  font-size: clamp(.98rem, 1.5vw, 1.08rem) !important;
}

.menu-app .hero-badges {
  gap: 9px !important;
  margin-top: 12px !important;
}

.menu-app .hero-badges .badge {
  min-height: 34px !important;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary-color) 18%, rgba(255,255,255,.20)) 0%, rgba(255,255,255,.12) 100%) !important;
  border: 1px solid color-mix(in srgb, var(--primary-color) 24%, rgba(255,255,255,.24)) !important;
  color: var(--hero-text) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 18px rgba(2,6,23,.10) !important;
}

.menu-app .hero-actions-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: clamp(18px, 2.5vw, 24px) !important;
  position: relative !important;
  z-index: 20 !important;
}

.menu-app .hero-actions-menu__row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 0 !important;
}

.menu-app .hero-actions-menu__row--secondary {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.menu-app .hero-actions-menu__more {
  position: relative !important;
  z-index: 30 !important;
}

.menu-app .hero-actions-menu__more-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 46px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, .38) !important;
  background: rgba(255, 255, 255, .92) !important;
  color: #0f172a !important;
  font-size: .92rem !important;
  font-weight: 850 !important;
  cursor: pointer !important;
  list-style: none !important;
  box-shadow: 0 14px 28px rgba(2,6,23,.12), inset 0 1px 0 rgba(255,255,255,.95) !important;
}

.menu-app .hero-actions-menu__more-toggle::-webkit-details-marker {
  display: none !important;
}

.menu-app .hero-actions-menu__more[open] .hero-actions-menu__more-toggle {
  margin-bottom: 12px !important;
}

.menu-app .hero-actions-menu__link,
.menu-app .hero-actions-menu__link:hover,
.menu-app .hero-actions-menu__link:focus,
.menu-app .hero-actions-menu__link:focus-visible {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  width: 100% !important;
  min-height: 50px !important;
  padding: 0 14px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.68) !important;
  color: #0f172a !important;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, color-mix(in srgb, var(--primary-color) 6%, rgba(246,248,252,.95)) 100%) !important;
  box-shadow: 0 12px 26px rgba(2,6,23,.14), inset 0 1px 0 rgba(255,255,255,.95) !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  line-height: 1.14 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
}

.menu-app .hero-actions-menu__link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 34px rgba(2,6,23,.18), inset 0 1px 0 rgba(255,255,255,.95) !important;
}

.menu-app .hero-actions-menu__link:active {
  transform: scale(.985) !important;
}

.menu-app .hero-actions-menu__link--primary {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 24%, #ffffff 76%) 0%, rgba(255,255,255,.98) 52%, color-mix(in srgb, var(--primary-color) 10%, #ffffff 90%) 100%) !important;
  border-color: color-mix(in srgb, var(--primary-color) 34%, #ffffff 66%) !important;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--primary-color) 16%, rgba(2,6,23,.12)), inset 0 1px 0 rgba(255,255,255,.98) !important;
}

.menu-app .hero-actions-menu__link--contact,
.menu-app .hero-actions-menu__link--secondary {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, color-mix(in srgb, var(--primary-color) 4%, rgba(246,248,252,.95)) 100%) !important;
}

.menu-app .trust-strip {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  margin-top: 18px !important;
  padding: clamp(18px, 2.4vw, 26px) !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(148,163,184,.16) !important;
  box-shadow: 0 18px 46px rgba(15,23,42,.08) !important;
}

.menu-app .trust-head {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: 0 !important;
}

.menu-app .trust-head h2 {
  margin: 0 !important;
  text-align: right !important;
  font-size: clamp(1.8rem, 3.8vw, 3rem) !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.menu-app .trust-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.menu-app .trust-card {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  min-width: 0 !important;
  min-height: 108px !important;
  padding: 18px !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(148,163,184,.14) !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.07) !important;
}

.menu-app .trust-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 17px !important;
  background: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 22px color-mix(in srgb, var(--primary-color) 28%, transparent) !important;
}

.menu-app .trust-text strong {
  font-size: 1.04rem !important;
  line-height: 1.12 !important;
}

.menu-app .trust-text span {
  color: #64748b !important;
  line-height: 1.35 !important;
}

.menu-app .surface-controls {
  overflow: hidden !important;
  padding: clamp(18px, 2.4vw, 28px) !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.96), color-mix(in srgb, var(--primary-color) 7%, #ffffff 93%)) !important;
  border: 1px solid rgba(148,163,184,.16) !important;
  box-shadow: 0 18px 46px rgba(15,23,42,.08) !important;
}

.menu-app .controls-grid {
  align-items: center !important;
  gap: 14px !important;
}

.menu-app .search-wrap {
  min-height: 56px !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(148,163,184,.16), 0 10px 24px rgba(15,23,42,.06) !important;
}

.menu-app .chipbar-fade {
  display: none !important;
}

.menu-app .chipbar {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  overflow: visible !important;
}

.menu-app .chipbar .chip {
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid rgba(148,163,184,.22) !important;
  color: #1f2937 !important;
  box-shadow: 0 9px 20px rgba(15,23,42,.05) !important;
}

.menu-app .chipbar .chip.active,
.menu-app .chipbar .chip[aria-selected="true"] {
  color: #ffffff !important;
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.menu-app .dish-card {
  gap: 16px !important;
  padding: 14px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(148,163,184,.14) !important;
  box-shadow: 0 14px 34px rgba(15,23,42,.08) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}

.menu-app .dish-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 42px rgba(15,23,42,.12) !important;
}

.menu-app .dish-card .media,
.menu-app .dish-card .skeleton {
  border-radius: 18px !important;
  overflow: hidden !important;
}

.menu-app .dish-card .media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.menu-app .price-pill {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--primary-color) 24%, transparent) !important;
}

.menu-app .mobile-sticky-order {
  left: 16px !important;
  right: 16px !important;
  bottom: calc(12px + env(safe-area-inset-bottom)) !important;
  width: auto !important;
  min-height: 54px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 88%, #ffffff 12%) 0%, var(--primary-color) 55%, color-mix(in srgb, var(--primary-color) 64%, #0f172a 36%) 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 38px color-mix(in srgb, var(--primary-color) 30%, rgba(15,23,42,.22)) !important;
  z-index: 1200 !important;
}

body.sheet-open .mobile-sticky-order,
body.modal-open .mobile-sticky-order {
  display: none !important;
}

@media (max-width: 720px) {
  .menu-app {
    padding-inline: 10px;
  }

  .menu-app .hero {
    padding: 16px !important;
    border-radius: 24px !important;
  }

  .menu-app .page-language-row {
    justify-content: flex-start !important;
    margin-bottom: 14px !important;
  }

  .menu-app .menu-language-switcher {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap !important;
  }

  .menu-app .hero-head {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .menu-app .hero-logo {
    width: 76px !important;
    height: 76px !important;
    border-radius: 22px !important;
  }

  .menu-app .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem) !important;
    line-height: .95 !important;
  }

  .menu-app .hero-subline {
    font-size: .95rem !important;
  }

  .menu-app .hero-actions-menu__row,
  .menu-app .hero-actions-menu__row--primary,
  .menu-app .hero-actions-menu__row--secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .menu-app .hero-actions-menu__row--secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .menu-app .hero-actions-menu__more-toggle {
    width: 100% !important;
    min-height: 46px !important;
    border-radius: 16px !important;
  }

  .menu-app .hero-actions-menu__link,
  .menu-app .hero-actions-menu__link:hover,
  .menu-app .hero-actions-menu__link:focus,
  .menu-app .hero-actions-menu__link:focus-visible {
    min-height: 48px !important;
    padding-inline: 10px !important;
    border-radius: 16px !important;
    font-size: .9rem !important;
  }

  .menu-app .trust-head {
    display: block !important;
  }

  .menu-app .trust-head h2 {
    text-align: left !important;
    margin-top: 8px !important;
  }

  .menu-app .trust-grid {
    grid-template-columns: 1fr !important;
  }

  .menu-app .trust-card {
    min-height: 94px !important;
  }

  .menu-app .controls-grid {
    grid-template-columns: 1fr !important;
  }

  .menu-app .chipbar {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .menu-app .chipbar::-webkit-scrollbar {
    display: none;
  }

  .menu-app .chipbar .chip {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
  }

  .menu-app .dish-card {
    grid-template-columns: 86px minmax(0, 1fr) !important;
    align-items: center !important;
    padding: 12px !important;
  }

  .menu-app .dish-card .media,
  .menu-app .dish-card .skeleton {
    width: 86px !important;
    height: 86px !important;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .menu-app .hero-actions-menu__row,
  .menu-app .hero-actions-menu__row--primary,
  .menu-app .hero-actions-menu__row--secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .menu-app .trust-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Flat color override requested: remove gradients from the menu digital */
body,
.menu-app {
  background: var(--restaurant-bg) !important;
  background-image: none !important;
}

body::before,
.menu-app::before,
.menu-app::after {
  content: none !important;
  background: none !important;
  background-image: none !important;
}

.hero,
.menu-app .hero {
  background: var(--secondary-color) !important;
  background-image: none !important;
}

.hero::before,
.hero::after,
.menu-app .hero::before,
.menu-app .hero::after {
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

.hero-head,
.menu-app .hero-head {
  background: transparent !important;
  background-image: none !important;
}

.surface,
.surface-menu-list,
.dish-card,
.dish-sheet,
.dish-sheet-head,
.dish-sheet-body,
.chip,
.chipbar .chip,
.chipgrid-wrap .chip,
.price-pill,
.hero-actions-menu__link,
.hero-actions-menu__link--primary,
.hero-actions-menu__link--secondary,
.hero-actions-menu__link--contact,
.hero-actions-menu__link--soft,
.action-btn,
.action-btn--primary,
.action-btn--secondary,
.action-btn--soft,
.menu-app .surface,
.menu-app .surface-menu-list,
.menu-app .dish-card,
.menu-app .dish-sheet,
.menu-app .dish-sheet-head,
.menu-app .dish-sheet-body,
.menu-app .chip,
.menu-app .chipbar .chip,
.menu-app .chipgrid-wrap .chip,
.menu-app .price-pill,
.menu-app .hero-actions-menu__link,
.menu-app .hero-actions-menu__link--primary,
.menu-app .hero-actions-menu__link--secondary,
.menu-app .hero-actions-menu__link--contact,
.menu-app .hero-actions-menu__link--soft,
.menu-app .action-btn,
.menu-app .action-btn--primary,
.menu-app .action-btn--secondary,
.menu-app .action-btn--soft {
  background-image: none !important;
}

.surface,
.surface-menu-list,
.dish-card,
.dish-sheet,
.dish-sheet-head,
.dish-sheet-body,
.chip,
.chipbar .chip,
.chipgrid-wrap .chip,
.hero-actions-menu__link,
.hero-actions-menu__link--secondary,
.hero-actions-menu__link--contact,
.action-btn,
.action-btn--secondary,
.menu-app .surface,
.menu-app .surface-menu-list,
.menu-app .dish-card,
.menu-app .dish-sheet,
.menu-app .dish-sheet-head,
.menu-app .dish-sheet-body,
.menu-app .chip,
.menu-app .chipbar .chip,
.menu-app .chipgrid-wrap .chip,
.menu-app .hero-actions-menu__link,
.menu-app .hero-actions-menu__link--secondary,
.menu-app .hero-actions-menu__link--contact,
.menu-app .action-btn,
.menu-app .action-btn--secondary {
  background: var(--menu-surface-bg, #ffffff) !important;
}

.price-pill,
.menu-app .price-pill {
  background: var(--primary-color) !important;
  color: #ffffff !important;
}

.hero-actions-menu__link--primary,
.action-btn--primary,
.menu-app .hero-actions-menu__link--primary,
.menu-app .action-btn--primary {
  background: #ffffff !important;
}

.hero-actions-menu__link--soft,
.action-btn--soft,
.menu-app .hero-actions-menu__link--soft,
.menu-app .action-btn--soft {
  background: rgba(255, 255, 255, 0.14) !important;
}
.dish-side.dual-pricing {
  align-items: stretch;
  justify-content: center;
  min-width: 172px;
  gap: 10px;
}

.dual-price-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: min(194px, 100%);
}

.dual-price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "badge price"
    "copy copy";
  align-items: start;
  gap: 8px 10px;
  padding: 10px 11px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dual-price-row--lunch .dual-price-badge {
  background: rgba(15, 23, 42, 0.94);
}

.dual-price-row--dinner {
  background: rgba(255, 249, 249, 0.84);
}

.dual-price-row--dinner .dual-price-badge {
  background: rgba(111, 26, 26, 0.96);
}

.dual-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-area: badge;
  min-width: 50px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.dual-price-amount {
  grid-area: price;
  justify-self: end;
  align-self: center;
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.dual-price-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.dual-price-title {
  color: #0f172a;
  font-size: .78rem;
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.dual-price-copy small {
  color: #7b8798;
  font-size: .66rem;
  line-height: 1.12;
}

.dish-open-hint {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 232, 240, 0.74);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  color: #475569;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dish-card:hover .dish-open-hint {
  color: #0f172a;
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.pricing-block {
  margin-top: 12px;
}

.pricing-block .sheet-section-head {
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-block .sheet-section-head h4 {
  font-size: clamp(1rem, 2vw, 1.18rem);
  letter-spacing: -0.03em;
}

.pricing-block .sheet-section-tag {
  min-height: 26px;
  padding: 0 10px;
  font-size: .68rem;
  background: rgba(255, 247, 247, 0.95);
  border-color: rgba(127, 29, 29, 0.16);
  color: #7f1d1d;
  box-shadow: 0 8px 18px rgba(127, 29, 29, 0.06);
}

.pricing-choice-group {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-choice {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "badge"
    "price"
    "copy";
  align-items: start;
  gap: 3px;
  padding: 14px 12px;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition:
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease,
    background-color .22s ease;
}

.pricing-choice:hover {
  border-color: rgba(191, 209, 234, 0.95);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.pricing-choice.is-selected {
  border-color: rgba(59, 130, 246, 0.28);
  background: rgba(248, 251, 255, 0.92);
  box-shadow:
    0 20px 40px rgba(37, 99, 235, 0.14),
    0 0 0 1px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-1px) scale(1.005);
}

.pricing-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-choice-badge {
  display: inline-flex;
  grid-area: badge;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.pricing-choice--lunch .pricing-choice-badge {
  background: rgba(15, 23, 42, 0.95);
}

.pricing-choice--dinner .pricing-choice-badge {
  background: rgba(111, 26, 26, 0.96);
}

.pricing-choice-copy {
  display: grid;
  grid-area: copy;
  gap: 3px;
  min-width: 0;
  margin-top: 2px;
}

.pricing-choice-copy strong {
  color: #0f172a;
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.pricing-choice-copy small {
  color: #7b8798;
  font-size: .69rem;
  line-height: 1.2;
}

.pricing-choice-price {
  grid-area: price;
  font-size: 1.18rem;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
  letter-spacing: -.03em;
  margin-top: 4px;
}

.dish-sheet-foot {
  gap: 10px;
}

.sheet-summary {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.68);
  box-shadow:
    0 12px 24px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,.92);
  font-size: .85rem;
}

.sheet-total {
  margin-top: 6px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 18px;
  background: rgba(240, 246, 255, 0.88);
  border: 1px solid rgba(147, 197, 253, 0.45);
  box-shadow:
    0 12px 26px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255,255,255,.94);
  color: #1d4ed8;
  font-size: .94rem;
  letter-spacing: -0.02em;
}

.sheet-actions {
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sheet-actions .btn-ghost,
.sheet-actions .btn-outline,
.sheet-actions .btn-primary {
  width: auto !important;
}

.sheet-actions .btn-ghost {
  min-height: 42px;
  padding: 0 16px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border-color: rgba(191, 219, 254, 0.78);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,.92);
  font-size: .88rem;
}

.sheet-actions .btn-outline,
.sheet-actions .btn-primary {
  flex: 1 1 180px;
}

@media (max-width: 720px) {
  .dish-side.dual-pricing {
    min-width: 100%;
    justify-content: flex-start;
  }

  .dual-price-card {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .dual-price-row {
    flex: 1 1 0;
    min-width: 0;
  }

  .dish-open-hint {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .pricing-block .sheet-section-head {
    margin-bottom: 10px;
  }

  .pricing-choice-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pricing-choice {
    gap: 7px 8px;
    padding: 11px 10px;
    border-radius: 18px;
  }

  .pricing-choice-copy strong {
    font-size: .84rem;
  }

  .pricing-choice-copy small {
    font-size: .63rem;
  }

  .pricing-choice-price {
    font-size: .94rem;
  }

  .pricing-choice-badge {
    min-width: 44px;
    min-height: 22px;
    padding: 0 7px;
    font-size: .56rem;
  }

  .dual-price-card {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .dual-price-row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "badge price"
      "copy copy";
    align-items: start;
    gap: 6px 8px;
    padding: 10px;
    border-radius: 18px;
    min-height: 74px;
  }

  .dual-price-amount {
    font-size: .9rem;
  }

  .dual-price-title {
    font-size: .7rem;
  }

  .dual-price-copy small {
    display: block;
    font-size: .58rem;
    line-height: 1.15;
  }

  .dual-price-badge {
    min-width: 46px;
    min-height: 24px;
    padding: 0 8px;
    font-size: .58rem;
  }

  .dish-side.dual-pricing {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }

  .dual-price-copy {
    gap: 1px;
  }

  .dish-open-hint {
    min-height: 32px;
    padding: 0 11px;
    font-size: .72rem;
  }

  .pricing-choice {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "price"
      "copy";
    align-items: start;
    gap: 3px;
  }

  .pricing-choice-price {
    margin-top: 3px;
  }

  .sheet-summary {
    padding: 9px 11px;
    font-size: .82rem;
  }

  .sheet-total {
    min-height: 40px;
    padding: 0 12px;
    border-radius: 16px;
    font-size: .9rem;
  }

  .sheet-actions {
    justify-content: flex-end;
    gap: 8px;
  }

  .sheet-actions .btn-ghost {
    min-height: 38px;
    padding: 0 14px;
    font-size: .84rem;
    margin-left: auto;
  }

  .sheet-actions .btn-outline,
  .sheet-actions .btn-primary {
    flex: 1 1 100%;
  }
}

/* Final polish: dual pricing modal, mobile-first premium */
.pricing-block.sheet-block-card {
  padding: 16px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.92) 100%);
  border: 1px solid rgba(226, 232, 240, 0.72);
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.pricing-block .sheet-section-head {
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-block .sheet-section-head h4 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.pricing-block .sheet-section-tag {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.08);
  border: 1px solid rgba(127, 29, 29, 0.14);
  color: #7f1d1d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pricing-choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pricing-choice {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "badge"
    "price"
    "copy";
  align-items: start;
  gap: 3px;
  padding: 14px 12px;
  min-height: 0;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.92), rgba(255,255,255,0.72) 70%),
    rgba(255,255,255,0.76);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.pricing-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 209, 234, 0.95);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.98);
}

.pricing-choice.is-selected {
  border-color: rgba(59, 130, 246, 0.2);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.98), rgba(240,246,255,0.92) 72%),
    rgba(255,255,255,0.86);
  box-shadow:
    0 22px 46px rgba(37, 99, 235, 0.13),
    0 0 0 1px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255,255,255,1);
  transform: translateY(-2px);
}

.pricing-choice-badge {
  min-width: 48px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.pricing-choice--lunch .pricing-choice-badge {
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.98), rgba(15, 23, 42, 0.94));
}

.pricing-choice--dinner .pricing-choice-badge {
  background: linear-gradient(180deg, rgba(127, 29, 29, 0.98), rgba(111, 26, 26, 0.92));
}

.pricing-choice-copy {
  gap: 2px;
}

.pricing-choice-copy strong {
  font-size: 0.9rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.pricing-choice-copy small {
  font-size: 0.68rem;
  line-height: 1.18;
  color: #7b8798;
}

.pricing-choice-price {
  font-size: 1rem;
  font-weight: 950;
  align-self: start;
  color: #0f172a;
  letter-spacing: -0.04em;
}

.dish-sheet-foot {
  gap: 10px;
}

.sheet-summary {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(226,232,240,0.74);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.95);
  font-size: 0.82rem;
  line-height: 1.25;
}

.sheet-total {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0.98), rgba(236, 243, 255, 0.92));
  border: 1px solid rgba(147, 197, 253, 0.34);
  box-shadow:
    0 16px 34px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.98);
  color: #1d4ed8;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.sheet-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.sheet-actions .btn-ghost,
.sheet-actions .btn-outline,
.sheet-actions .btn-primary {
  width: auto !important;
}

.sheet-actions .btn-ghost {
  min-height: 40px;
  padding: 0 15px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(203, 213, 225, 0.72);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.95);
  font-size: 0.84rem;
  font-weight: 700;
}

.sheet-actions .btn-outline,
.sheet-actions .btn-primary {
  min-height: 44px;
  flex: 1 1 180px;
  border-radius: 18px;
}

@media (max-width: 640px) {
  .pricing-block.sheet-block-card {
    padding: 14px;
    border-radius: 24px;
  }

  .pricing-choice-group {
    gap: 8px;
  }

  .pricing-choice {
    padding: 11px;
    min-height: 96px;
    border-radius: 22px;
  }

  .pricing-choice-copy strong {
    font-size: 0.86rem;
  }

  .pricing-choice-copy small {
    font-size: 0.64rem;
  }

  .pricing-choice-price {
    font-size: 0.95rem;
  }

  .sheet-summary {
    min-height: 40px;
    font-size: 0.79rem;
  }

  .sheet-total {
    min-height: 44px;
    font-size: 0.88rem;
  }
}

@media (max-width: 520px) {
  .pricing-block .sheet-section-head {
    margin-bottom: 10px;
  }

  .pricing-block .sheet-section-head h4 {
    font-size: 0.98rem;
  }

  .pricing-block .sheet-section-tag {
    min-height: 24px;
    padding: 0 9px;
    font-size: 0.64rem;
  }

  .pricing-choice-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pricing-choice {
    gap: 7px 8px;
    padding: 10px;
    min-height: 88px;
    border-radius: 20px;
  }

  .pricing-choice-badge {
    min-width: 42px;
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.54rem;
  }

  .pricing-choice-copy strong {
    font-size: 0.81rem;
  }

  .pricing-choice-copy small {
    font-size: 0.61rem;
  }

  .pricing-choice-price {
    font-size: 0.9rem;
  }

  .sheet-summary {
    padding: 9px 11px;
  }

  .sheet-total {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 16px;
    font-size: 0.84rem;
  }

  .sheet-actions {
    justify-content: flex-end;
    gap: 8px;
  }

  .sheet-actions .btn-ghost {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 13px;
    margin-left: auto;
    font-size: 0.8rem;
  }

  .sheet-actions .btn-outline,
  .sheet-actions .btn-primary {
    flex: 1 1 100%;
    min-height: 42px;
    border-radius: 16px;
  }
}

/* Smart Card premium pass 2026-05: app-like restaurant experience */
:root {
  --smart-ink: #07111f;
  --smart-muted: #607086;
  --smart-line: rgba(11, 24, 43, .10);
  --smart-card: rgba(255, 255, 255, .88);
  --smart-shadow: 0 24px 80px rgba(7, 17, 31, .16);
  --smart-soft-shadow: 0 14px 34px rgba(7, 17, 31, .10);
}

.menu-app {
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--primary-color) 24%, transparent), transparent 30%),
    radial-gradient(circle at 88% 2%, rgba(14, 165, 233, .13), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, var(--menu-inner-bg, #f7faff) 52%, #eef5ff 100%);
}

.hero {
  max-width: 1180px;
  margin-inline: auto;
}

.hero-main-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .20);
  box-shadow: 0 30px 90px rgba(6, 18, 49, .25);
}

.hero-main-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .20), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 36%);
}

.hero-head,
.hero-actions-menu,
.hero-connected-row {
  position: relative;
  z-index: 1;
}

.hero-head {
  align-items: center;
  gap: clamp(14px, 3vw, 24px);
}

.hero-logo {
  width: clamp(72px, 12vw, 104px);
  height: clamp(72px, 12vw, 104px);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(0,0,0,.20);
}

.hero-copy h1 {
  letter-spacing: -.055em;
  line-height: .92;
  text-wrap: balance;
}

.hero-subline {
  max-width: 680px;
  color: rgba(255,255,255,.82);
}

.hero-actions-menu {
  margin-top: clamp(18px, 4vw, 30px);
}

.hero-actions-menu__row {
  gap: 10px;
}

.hero-actions-menu__row--primary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
}

.hero-actions-menu__link {
  min-height: 48px;
  border-radius: 18px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.hero-actions-menu__link:hover {
  transform: translateY(-2px);
}

.hero-actions-menu__link--primary {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  color: #061225;
}

.hero-actions-menu__link--soft {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
}

.hero-actions-menu__more {
  margin-top: 12px;
}

.hero-actions-menu__more-toggle {
  min-height: 42px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  color: #061225;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.surface-controls {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 18px 48px rgba(15,23,42,.10);
}

.category-nav,
.category-nav-mobile {
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar,
.category-nav-mobile::-webkit-scrollbar {
  display: none;
}

.cat-chip {
  min-height: 42px;
  border-radius: 999px;
  font-weight: 900;
}

/* Smart Card hotfix 2026-05: category active state contrast */
.menu-app .surface-controls .chipgrid-wrap .chip,
.menu-app .surface-controls .chipbar .chip,
.menu-app .surface-controls .cat-chip {
  color: #243044 !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(148,163,184,.24) !important;
}

.menu-app .surface-controls .chipgrid-wrap .chip.active,
.menu-app .surface-controls .chipbar .chip.active,
.menu-app .surface-controls .chipgrid-wrap .chip[aria-selected="true"],
.menu-app .surface-controls .chipbar .chip[aria-selected="true"],
.menu-app .surface-controls .cat-chip.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #07111f 0%, var(--primary-color) 100%) !important;
  border-color: rgba(7,17,31,.92) !important;
  box-shadow: 0 14px 30px rgba(7,17,31,.16) !important;
}

.section {
  max-width: 1180px;
  margin-inline: auto;
}

.category-head {
  align-items: end;
  margin-bottom: 18px;
}

.category-title {
  font-size: clamp(1.55rem, 4vw, 2.55rem);
  letter-spacing: -.045em;
}

.dish-card {
  position: relative;
  min-height: 168px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,249,255,.92));
  border: 1px solid rgba(11,24,43,.08);
  box-shadow: var(--smart-soft-shadow);
  overflow: hidden;
}

.dish-card::before {
  content: none;
}

.dish-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--smart-shadow);
}

.dish-card .media {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff, #fff7ed);
}

.dish-card .media img {
  transform: scale(1.005);
  transition: transform .45s ease, filter .45s ease;
}

.dish-card:hover .media img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.dish-name {
  letter-spacing: -.025em;
  color: var(--smart-ink);
}

.dish-desc {
  color: var(--smart-muted);
  line-height: 1.55;
}

.price-pill {
  min-height: 42px;
  border-radius: 16px;
  background: #07111f;
  color: #fff;
  box-shadow: 0 12px 28px rgba(7,17,31,.18);
}

.dish-open-hint {
  color: color-mix(in srgb, var(--primary-color) 74%, #0f172a 26%);
  font-weight: 900;
}

.dish-sheet {
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -26px 90px rgba(7,17,31,.25);
}

.dish-sheet-head,
.dish-sheet-foot {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
}

.sheet-total,
.sheet-actions .btn-primary,
.sheet-actions .btn-outline,
.btn-primary {
  border-radius: 18px;
}

@media (max-width: 720px) {
  .menu-app {
    padding-inline: 10px;
  }

  .hero-main-panel {
    border-radius: 28px;
    padding: 18px;
  }

  .hero-head {
    grid-template-columns: auto 1fr;
  }

  .hero-logo {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 4.25rem);
  }

  .hero-actions-menu__row--primary {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions-menu__link {
    min-height: 46px;
    padding-inline: 10px;
    font-size: .82rem;
  }

  .surface-controls {
    top: 8px;
    border-radius: 24px;
  }

  .dish-card {
    border-radius: 24px;
    min-height: 150px;
  }

  .dish-card .media {
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .hero-actions-menu__row--primary {
    grid-template-columns: 1fr;
  }

  .hero-actions-menu__link--primary:first-child {
    min-height: 52px;
  }
}

/* Restaurant public header rebuild: app-like, compact, action-first. */
.menu-app .restaurant-app-hero {
  margin: 0 0 12px !important;
  padding: 0 !important;
  color: #f8fbff !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.menu-app .restaurant-app-hero::before,
.menu-app .restaurant-app-hero::after {
  display: none !important;
}

.menu-app .restaurant-hero-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: clamp(26px, 4vw, 38px) !important;
  padding: clamp(18px, 4vw, 34px) !important;
  background:
    radial-gradient(520px 260px at 86% -18%, color-mix(in srgb, var(--primary-color) 28%, transparent 72%) 0%, transparent 68%),
    linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 94%, #000 6%) 0%, color-mix(in srgb, var(--secondary-color) 74%, #12336b 26%) 100%) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow: 0 26px 70px rgba(5, 14, 35, .28) !important;
  isolation: isolate !important;
}

.menu-app .restaurant-hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.16), transparent 30%, rgba(255,255,255,.08) 68%, transparent),
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.13), transparent 30%);
  opacity: .82;
  z-index: -1;
}

.menu-app .restaurant-hero-topline,
.menu-app .restaurant-hero-main,
.menu-app .restaurant-hero-actions,
.menu-app .restaurant-connected-row {
  position: relative !important;
  z-index: 2 !important;
}

.menu-app .restaurant-hero-topline {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin-bottom: clamp(16px, 3vw, 24px) !important;
}

.menu-app .restaurant-hero-label {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  background: rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.82) !important;
  font-size: .68rem !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

.menu-app .restaurant-hero-language .page-language-row {
  margin: 0 !important;
  justify-content: flex-end !important;
}

.menu-app .restaurant-hero-language .menu-language-switcher {
  max-width: min(390px, 44vw) !important;
  padding: 5px !important;
  gap: 5px !important;
  overflow-x: auto !important;
  flex-wrap: nowrap !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.menu-app .restaurant-hero-language .menu-language-switcher__link {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 auto !important;
}

.menu-app .restaurant-hero-main {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: clamp(18px, 4vw, 34px) !important;
}

.menu-app .restaurant-hero-identity {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(14px, 3vw, 22px) !important;
  min-width: 0 !important;
}

.menu-app .restaurant-hero-logo,
.menu-app .hero-logo.restaurant-hero-logo {
  width: clamp(74px, 9vw, 104px) !important;
  height: clamp(74px, 9vw, 104px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  background: #fff !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.8) !important;
}

.menu-app .restaurant-hero-copy .hero-kicker {
  color: color-mix(in srgb, var(--primary-color) 36%, #ffffff 64%) !important;
  opacity: 1 !important;
  letter-spacing: .18em !important;
}

.menu-app .restaurant-hero-copy h1 {
  margin: 5px 0 5px !important;
  max-width: 11ch !important;
  color: #fff !important;
  font-size: clamp(2.35rem, 8vw, 5.15rem) !important;
  line-height: .88 !important;
  letter-spacing: -.07em !important;
  text-wrap: balance !important;
  text-shadow: 0 18px 46px rgba(0,0,0,.30) !important;
}

.menu-app .restaurant-hero-address {
  max-width: 48ch !important;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(.92rem, 1.6vw, 1.05rem) !important;
  line-height: 1.45 !important;
}

.menu-app .restaurant-hero-badges {
  margin-top: 12px !important;
  gap: 8px !important;
}

.menu-app .restaurant-hero-badges .hero-badge,
.menu-app .restaurant-connected-row .hero-badge {
  min-height: 32px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  color: #f8fbff !important;
  background: rgba(255,255,255,.13) !important;
  border-color: rgba(255,255,255,.18) !important;
  font-size: .78rem !important;
  box-shadow: none !important;
}

.menu-app .restaurant-hero-service {
  flex: 0 0 auto !important;
  min-width: 172px !important;
  padding: 16px 18px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14) !important;
  text-align: right !important;
}

.menu-app .restaurant-hero-service span {
  display: block !important;
  margin-bottom: 5px !important;
  color: rgba(255,255,255,.58) !important;
  font-size: .68rem !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

.menu-app .restaurant-hero-service strong {
  display: block !important;
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
}

.menu-app .restaurant-hero-actions {
  margin-top: clamp(18px, 4vw, 30px) !important;
  gap: 10px !important;
}

.menu-app .restaurant-primary-actions,
.menu-app .hero-actions-menu__row.restaurant-primary-actions {
  display: grid !important;
  grid-template-columns: 1.25fr 1.55fr repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  align-items: stretch !important;
}

.menu-app .restaurant-action,
.menu-app .hero-actions-menu__link.restaurant-action {
  min-height: 54px !important;
  border-radius: 18px !important;
  padding: 0 14px !important;
  color: #07111f !important;
  font-size: .9rem !important;
  font-weight: 950 !important;
  letter-spacing: -.02em !important;
  border: 1px solid rgba(255,255,255,.50) !important;
  background: rgba(255,255,255,.90) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.92) !important;
  backdrop-filter: blur(14px) !important;
}

.menu-app .restaurant-action:hover,
.menu-app .hero-actions-menu__link.restaurant-action:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.95) !important;
}

.menu-app .restaurant-action--order,
.menu-app .hero-actions-menu__link.restaurant-action--order {
  color: #fff !important;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 86%, #0f172a 14%) 0%, color-mix(in srgb, var(--primary-color) 72%, #061225 28%) 100%) !important;
  border-color: rgba(255,255,255,.26) !important;
  box-shadow: 0 20px 46px color-mix(in srgb, var(--primary-color) 34%, rgba(0,0,0,.25)) !important;
}

.menu-app .restaurant-action--ghost,
.menu-app .hero-actions-menu__link.restaurant-action--ghost {
  color: rgba(255,255,255,.88) !important;
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.17) !important;
  box-shadow: none !important;
}

.menu-app .restaurant-action--module,
.menu-app .hero-actions-menu__link.restaurant-action--module {
  background: rgba(255,255,255,.94) !important;
}

.menu-app .restaurant-action--disabled,
.menu-app .hero-actions-menu__link.restaurant-action--disabled {
  color: rgba(255,255,255,.74) !important;
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow: none !important;
}

.menu-app .restaurant-more-actions {
  margin-top: 10px !important;
}

.menu-app .restaurant-more-actions .hero-actions-menu__more-toggle {
  min-height: 42px !important;
  padding: 0 15px !important;
  border-radius: 999px !important;
  color: rgba(255,255,255,.86) !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.17) !important;
  box-shadow: none !important;
}

.menu-app .restaurant-more-actions[open] .hero-actions-menu__more-toggle {
  margin-bottom: 10px !important;
}

.menu-app .restaurant-more-actions .hero-actions-menu__row--secondary {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.menu-app .restaurant-more-actions .hero-actions-menu__link {
  flex: 0 1 auto !important;
  min-width: 0 !important;
  min-height: 42px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  color: rgba(7,17,31,.92) !important;
  font-size: .82rem !important;
  background: rgba(255,255,255,.88) !important;
  box-shadow: none !important;
}

.menu-app .restaurant-connected-row {
  margin-top: 10px !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.menu-app .trust-strip {
  display: none !important;
}

@media (max-width: 820px) {
  .menu-app .restaurant-hero-main {
    align-items: flex-start !important;
  }

  .menu-app .restaurant-hero-service {
    display: none !important;
  }

  .menu-app .restaurant-primary-actions,
  .menu-app .hero-actions-menu__row.restaurant-primary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .menu-app .restaurant-action--order,
  .menu-app .hero-actions-menu__link.restaurant-action--order {
    grid-column: 1 / -1 !important;
    order: -1 !important;
  }
}

@media (max-width: 560px) {
  .menu-app {
    padding-top: calc(8px + var(--safe-top)) !important;
  }

  .menu-app .restaurant-hero-card {
    border-radius: 28px !important;
    padding: 16px !important;
  }

  .menu-app .restaurant-hero-topline {
    align-items: center !important;
    margin-bottom: 14px !important;
  }

  .menu-app .restaurant-hero-label {
    min-height: 28px !important;
    padding: 0 10px !important;
    font-size: .6rem !important;
    letter-spacing: .14em !important;
  }

  .menu-app .restaurant-hero-language .menu-language-switcher {
    max-width: 168px !important;
    padding: 4px !important;
  }

  .menu-app .restaurant-hero-language .menu-language-switcher__link {
    width: 28px !important;
    height: 28px !important;
  }

  .menu-app .restaurant-hero-identity {
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .menu-app .restaurant-hero-logo,
  .menu-app .hero-logo.restaurant-hero-logo {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
  }

  .menu-app .restaurant-hero-copy h1 {
    max-width: 8.8ch !important;
    font-size: clamp(2rem, 13vw, 3.35rem) !important;
    line-height: .9 !important;
  }

  .menu-app .restaurant-hero-address {
    font-size: .86rem !important;
  }

  .menu-app .restaurant-hero-badges {
    margin-top: 9px !important;
  }

  .menu-app .restaurant-hero-badges .hero-badge {
    min-height: 29px !important;
    padding: 0 10px !important;
    font-size: .72rem !important;
  }

  .menu-app .restaurant-hero-actions {
    margin-top: 16px !important;
  }

  .menu-app .restaurant-action,
  .menu-app .hero-actions-menu__link.restaurant-action {
    min-height: 50px !important;
    border-radius: 16px !important;
    padding: 0 10px !important;
    font-size: .82rem !important;
  }

  .menu-app .restaurant-more-actions .hero-actions-menu__row--secondary {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .menu-app .restaurant-more-actions .hero-actions-menu__link {
    justify-content: center !important;
    width: 100% !important;
  }

  .menu-app .surface-controls {
    margin-top: 10px !important;
  }
}

@media (max-width: 380px) {
  .menu-app .restaurant-primary-actions,
  .menu-app .hero-actions-menu__row.restaurant-primary-actions {
    grid-template-columns: 1fr !important;
  }

  .menu-app .restaurant-hero-language .menu-language-switcher {
    max-width: 132px !important;
  }
}

/* Final restaurant sheet header: compact Uber/Deliveroo-style card. */
.menu-app .restaurant-sheet-hero {
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: #111827 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
  isolation: isolate !important;
}

.menu-app .restaurant-sheet-hero::before,
.menu-app .restaurant-sheet-hero::after {
  display: none !important;
}

.menu-app .restaurant-sheet {
  position: relative !important;
  overflow: visible !important;
  border-radius: 30px !important;
  padding: clamp(14px, 2.4vw, 22px) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.96) 100%),
    radial-gradient(420px 180px at 92% -20%, color-mix(in srgb, var(--primary-color) 12%, transparent 88%) 0%, transparent 72%) !important;
  border: 1px solid rgba(205, 216, 231, .95) !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .10) !important;
}

.menu-app .restaurant-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary-color) 18%, transparent 82%), transparent 38%);
  opacity: .22;
}

.menu-app .restaurant-sheet > * {
  position: relative !important;
  z-index: 1 !important;
}

.menu-app .restaurant-sheet-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.menu-app .restaurant-sheet-label {
  display: inline-flex !important;
  align-items: center !important;
  height: 28px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid #dbe6f4 !important;
  background: #fff !important;
  color: #516179 !important;
  font-size: .66rem !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  box-shadow: 0 8px 18px rgba(15,23,42,.06) !important;
}

.menu-app .restaurant-sheet-language .page-language-row {
  margin: 0 !important;
  justify-content: flex-end !important;
}

.menu-app .restaurant-sheet-language .menu-language-switcher {
  max-width: min(360px, 44vw) !important;
  padding: 4px !important;
  gap: 4px !important;
  overflow-x: auto !important;
  flex-wrap: nowrap !important;
  background: rgba(15,23,42,.055) !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.menu-app .restaurant-sheet-language .menu-language-switcher__link {
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 auto !important;
  background: rgba(255,255,255,.74) !important;
  border-color: rgba(15,23,42,.06) !important;
}

.menu-app .restaurant-sheet-language .menu-language-switcher__link.is-active {
  background: #ffffff !important;
  border-color: color-mix(in srgb, var(--primary-color) 30%, #dbe6f4 70%) !important;
  box-shadow: 0 4px 12px rgba(15,23,42,.08) !important;
}

.menu-app .restaurant-sheet-main {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  min-width: 0 !important;
}

.menu-app .restaurant-sheet-identity {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 14px !important;
  min-width: 0 !important;
}

.menu-app .restaurant-sheet-logo,
.menu-app .hero-logo.restaurant-sheet-logo {
  width: 76px !important;
  height: 76px !important;
  border-radius: 20px !important;
  object-fit: cover !important;
  border: 1px solid #e6edf6 !important;
  background: #fff !important;
  box-shadow: 0 14px 28px rgba(15,23,42,.12) !important;
}

.menu-app .restaurant-sheet-copy h1 {
  margin: 0 0 4px !important;
  max-width: 16ch !important;
  color: #07111f !important;
  font-size: clamp(2rem, 5.2vw, 3.8rem) !important;
  line-height: .92 !important;
  letter-spacing: -.065em !important;
  text-shadow: none !important;
}

.menu-app .restaurant-sheet-address {
  margin: 0 !important;
  max-width: 58ch !important;
  color: #526174 !important;
  font-size: .93rem !important;
  line-height: 1.38 !important;
  text-shadow: none !important;
}

.menu-app .restaurant-sheet-badges {
  margin-top: 8px !important;
  gap: 6px !important;
}

.menu-app .restaurant-sheet-badges .hero-badge:not(.restaurant-badge-status):not(.restaurant-badge-google):not(.restaurant-badge-halal),
.menu-app .restaurant-sheet-connected .hero-badge {
  min-height: 26px !important;
  padding: 0 9px !important;
  border-radius: 999px !important;
  color: #102033 !important;
  background: #fff !important;
  border: 1px solid #dbe6f4 !important;
  box-shadow: none !important;
  font-size: .72rem !important;
  font-weight: 850 !important;
}

.menu-app .restaurant-sheet-badges .hero-badge-soft {
  color: color-mix(in srgb, var(--primary-color) 82%, #07111f 18%) !important;
  background: color-mix(in srgb, var(--primary-color) 9%, #ffffff 91%) !important;
  border-color: color-mix(in srgb, var(--primary-color) 20%, #dbe6f4 80%) !important;
}

/* Badges premium — styles forcés sur restaurant-sheet-badges */
.menu-app .restaurant-sheet-badges .restaurant-badge-status--open {
  min-height: 28px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  background: #042f25 !important;
  border: 1px solid rgba(0,190,115,.65) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 0 0 1px rgba(0,190,115,.15), 0 0 18px rgba(0,160,90,.22) !important;
}
.menu-app .restaurant-sheet-badges .restaurant-badge-status--closed {
  min-height: 28px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  background: rgba(80,0,0,.72) !important;
  border: 1px solid rgba(255,80,80,.55) !important;
  color: #fca5a5 !important;
  box-shadow: 0 0 18px rgba(220,38,38,.18) !important;
}
.menu-app .restaurant-sheet-badges .restaurant-badge-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #22c55e !important;
  box-shadow: 0 0 10px rgba(34,197,94,.7) !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}
.menu-app .restaurant-sheet-badges .restaurant-badge-status--closed .restaurant-badge-dot {
  background: #f87171 !important;
  box-shadow: none !important;
}
.menu-app .restaurant-sheet-badges .restaurant-badge-google {
  min-height: 28px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  background: #0d0800 !important;
  border: 1px solid rgba(212,160,45,.90) !important;
  color: #f6c84a !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(212,160,45,.25), 0 0 18px rgba(212,160,45,.28) !important;
  text-decoration: none !important;
}
.menu-app .restaurant-sheet-badges .restaurant-badge-google svg {
  color: #f6c74a !important;
  fill: #f6c74a !important;
}
.menu-app .restaurant-sheet-badges .restaurant-badge-halal {
  min-height: 28px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  background: #042f25 !important;
  border: 1px solid rgba(0,190,115,.65) !important;
  color: #74f0a5 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 0 0 1px rgba(0,190,115,.15), 0 0 18px rgba(0,160,90,.22) !important;
}

.menu-app .restaurant-sheet-actions {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: start !important;
  gap: 10px !important;
  margin-top: 14px !important;
  z-index: 20 !important;
}

.menu-app .restaurant-quick-actions,
.menu-app .hero-actions-menu__row.restaurant-quick-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  pointer-events: auto !important;
}

.menu-app .restaurant-quick-action,
.menu-app .hero-actions-menu__link.restaurant-quick-action {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 44px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: #101827 !important;
  background: #fff !important;
  border: 1px solid #dce6f3 !important;
  box-shadow: 0 8px 18px rgba(15,23,42,.07) !important;
  font-size: .84rem !important;
  font-weight: 900 !important;
  letter-spacing: -.015em !important;
  backdrop-filter: none !important;
}

.menu-app .restaurant-quick-action:hover,
.menu-app .hero-actions-menu__link.restaurant-quick-action:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 24px rgba(15,23,42,.10) !important;
}

.menu-app .restaurant-quick-action--order,
.menu-app .hero-actions-menu__link.restaurant-quick-action--order {
  min-width: 150px !important;
  color: #fff !important;
  background: #111827 !important;
  border-color: #111827 !important;
  box-shadow: 0 14px 26px rgba(17,24,39,.22) !important;
}

.menu-app .restaurant-quick-action--module,
.menu-app .hero-actions-menu__link.restaurant-quick-action--module {
  color: #0f172a !important;
  background: rgba(255,255,255,.88) !important;
}

.menu-app .restaurant-quick-action--ghost,
.menu-app .hero-actions-menu__link.restaurant-quick-action--ghost {
  color: #42526a !important;
  background: rgba(255,255,255,.62) !important;
  box-shadow: none !important;
}

.menu-app .restaurant-quick-action--disabled,
.menu-app .hero-actions-menu__link.restaurant-quick-action--disabled {
  color: #637083 !important;
  background: #edf2f7 !important;
  box-shadow: none !important;
}

.menu-app .restaurant-sheet-more {
  position: relative !important;
  z-index: 50 !important;
  margin: 0 !important;
}

.menu-app .restaurant-sheet-more .hero-actions-menu__more-toggle {
  width: auto !important;
  min-width: 76px !important;
  min-height: 44px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: #111827 !important;
  background: #fff !important;
  border: 1px solid #dce6f3 !important;
  box-shadow: 0 8px 18px rgba(15,23,42,.07) !important;
  font-size: .84rem !important;
  font-weight: 900 !important;
}

.menu-app .restaurant-sheet-more[open] .hero-actions-menu__more-toggle {
  margin-bottom: 0 !important;
  background: #111827 !important;
  color: #fff !important;
  border-color: #111827 !important;
}

.menu-app .restaurant-sheet-more .hero-actions-menu__row--secondary {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 7px !important;
  width: min(360px, calc(100vw - 28px)) !important;
  max-height: min(56vh, 420px) !important;
  overflow: auto !important;
  padding: 10px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.98) !important;
  border: 1px solid #dce6f3 !important;
  box-shadow: 0 24px 70px rgba(15,23,42,.22) !important;
  backdrop-filter: blur(18px) !important;
}

.menu-app .restaurant-sheet-more .hero-actions-menu__link {
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 40px !important;
  padding: 0 10px !important;
  border-radius: 14px !important;
  color: #172033 !important;
  background: #f7f9fc !important;
  border: 1px solid #e4ebf4 !important;
  box-shadow: none !important;
  font-size: .8rem !important;
  font-weight: 850 !important;
}

.menu-app .restaurant-sheet-connected {
  margin-top: 9px !important;
  gap: 8px !important;
}

.menu-app .trust-strip {
  display: none !important;
}

@media (min-width: 880px) {
  .menu-app .restaurant-sheet {
    padding: 20px 22px !important;
  }

  .menu-app .restaurant-sheet-main {
    padding-right: 4px !important;
  }
}

@media (max-width: 720px) {
  .menu-app .restaurant-sheet {
    border-radius: 26px !important;
    padding: 14px !important;
  }

  .menu-app .restaurant-sheet-top {
    margin-bottom: 10px !important;
  }

  .menu-app .restaurant-sheet-label {
    height: 26px !important;
    padding: 0 9px !important;
    font-size: .6rem !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-switcher {
    max-width: 152px !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-switcher__link {
    width: 26px !important;
    height: 26px !important;
  }

  .menu-app .restaurant-sheet-logo,
  .menu-app .hero-logo.restaurant-sheet-logo {
    width: 66px !important;
    height: 66px !important;
    border-radius: 18px !important;
  }

  .menu-app .restaurant-sheet-identity {
    gap: 11px !important;
  }

  .menu-app .restaurant-sheet-copy h1 {
    font-size: clamp(1.8rem, 10.4vw, 2.75rem) !important;
    max-width: 9.8ch !important;
  }

  .menu-app .restaurant-sheet-address {
    font-size: .82rem !important;
    line-height: 1.32 !important;
  }

  .menu-app .restaurant-sheet-badges {
    margin-top: 7px !important;
  }

  .menu-app .restaurant-sheet-badges .hero-badge:not(.restaurant-badge-status):not(.restaurant-badge-google):not(.restaurant-badge-halal) {
    min-height: 24px !important;
    font-size: .68rem !important;
  }

  .menu-app .restaurant-sheet-actions {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .menu-app .restaurant-quick-actions,
  .menu-app .hero-actions-menu__row.restaurant-quick-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .menu-app .restaurant-quick-action,
  .menu-app .hero-actions-menu__link.restaurant-quick-action {
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 9px !important;
    font-size: .78rem !important;
  }

  .menu-app .restaurant-quick-action--order,
  .menu-app .hero-actions-menu__link.restaurant-quick-action--order {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
  }

  .menu-app .restaurant-sheet-more .hero-actions-menu__more-toggle {
    min-width: 52px !important;
    width: 52px !important;
    padding: 0 !important;
  }

  .menu-app .restaurant-sheet-more .hero-actions-menu__more-toggle span:last-child {
    display: none !important;
  }

  .menu-app .restaurant-sheet-more .hero-actions-menu__row--secondary {
    right: -2px !important;
    grid-template-columns: 1fr 1fr !important;
    width: min(332px, calc(100vw - 24px)) !important;
  }

  .menu-app .surface-controls {
    margin-top: 10px !important;
  }
}

@media (max-width: 420px) {
  .menu-app .restaurant-sheet-language .menu-language-switcher {
    max-width: 116px !important;
  }

  .menu-app .restaurant-sheet-logo,
  .menu-app .hero-logo.restaurant-sheet-logo {
    width: 58px !important;
    height: 58px !important;
    border-radius: 16px !important;
  }

  .menu-app .restaurant-sheet-copy h1 {
    font-size: clamp(1.58rem, 10vw, 2.25rem) !important;
  }

  .menu-app .restaurant-quick-actions,
  .menu-app .hero-actions-menu__row.restaurant-quick-actions {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Brand-color correction: the restaurant sheet must keep the restaurant identity color. */
.menu-app .restaurant-sheet {
  color: #ffffff !important;
  background:
    radial-gradient(520px 210px at 88% -18%, color-mix(in srgb, var(--primary-color) 42%, #ffffff 10%, transparent 48%) 0%, transparent 70%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 88%, #07111f 12%) 0%, color-mix(in srgb, var(--secondary-color) 88%, var(--primary-color) 12%) 100%) !important;
  border-color: color-mix(in srgb, var(--primary-color) 28%, rgba(255,255,255,.35) 72%) !important;
  box-shadow: 0 22px 58px color-mix(in srgb, var(--secondary-color) 32%, rgba(15,23,42,.24) 68%) !important;
}

.menu-app .restaurant-sheet::before {
  /* Voile dégradé désactivé — header en couleur pleine */
  background: none !important;
  opacity: 0 !important;
}

.menu-app .restaurant-sheet-label {
  color: var(--theme-text-on-secondary, rgba(255,255,255,.90)) !important;
  background: color-mix(in srgb, var(--theme-text-on-secondary, #ffffff) 12%, transparent) !important;
  border-color: color-mix(in srgb, var(--theme-text-on-secondary, #ffffff) 20%, transparent) !important;
  box-shadow: none !important;
}

.menu-app .restaurant-sheet-copy h1 {
  color: #ffffff !important;
  text-shadow: 0 16px 34px rgba(0,0,0,.24) !important;
}

.menu-app .restaurant-sheet-address {
  color: rgba(255,255,255,.82) !important;
}

.menu-app .restaurant-sheet-badges .hero-badge:not(.restaurant-badge-status):not(.restaurant-badge-google):not(.restaurant-badge-halal),
.menu-app .restaurant-sheet-connected .hero-badge {
  color: #ffffff !important;
  background: rgba(255,255,255,.13) !important;
  border-color: rgba(255,255,255,.20) !important;
}

.menu-app .restaurant-sheet-badges .hero-badge-soft {
  color: #ffffff !important;
  background: color-mix(in srgb, var(--primary-color) 52%, rgba(255,255,255,.16) 48%) !important;
  border-color: rgba(255,255,255,.24) !important;
}

.menu-app .restaurant-sheet-language .menu-language-switcher {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.18) !important;
}

.menu-app .restaurant-sheet-language .menu-language-switcher__link {
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.14) !important;
}

.menu-app .restaurant-sheet-language .menu-language-switcher__link.is-active {
  background: #ffffff !important;
  border-color: rgba(255,255,255,.70) !important;
}

.menu-app .restaurant-quick-action--order,
.menu-app .hero-actions-menu__link.restaurant-quick-action--order {
  color: color-mix(in srgb, var(--primary-color) 80%, #07111f 20%) !important;
  background: #ffffff !important;
  border-color: rgba(255,255,255,.82) !important;
  box-shadow: 0 16px 32px rgba(0,0,0,.22) !important;
}

.menu-app .restaurant-quick-action--module,
.menu-app .hero-actions-menu__link.restaurant-quick-action--module,
.menu-app .restaurant-quick-action--ghost,
.menu-app .hero-actions-menu__link.restaurant-quick-action--ghost,
.menu-app .restaurant-sheet-more .hero-actions-menu__more-toggle {
  color: #ffffff !important;
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.20) !important;
  box-shadow: none !important;
}

.menu-app .restaurant-quick-action--module:hover,
.menu-app .hero-actions-menu__link.restaurant-quick-action--module:hover,
.menu-app .restaurant-quick-action--ghost:hover,
.menu-app .hero-actions-menu__link.restaurant-quick-action--ghost:hover,
.menu-app .restaurant-sheet-more .hero-actions-menu__more-toggle:hover {
  background: rgba(255,255,255,.18) !important;
}

.menu-app .restaurant-sheet-more[open] .hero-actions-menu__more-toggle {
  color: color-mix(in srgb, var(--primary-color) 78%, #07111f 22%) !important;
  background: #ffffff !important;
  border-color: rgba(255,255,255,.82) !important;
}

/* Compact language dropdown: keeps all flags accessible without header overflow. */
.menu-app .page-language-row {
  position: relative !important;
  display: flex !important;
  justify-content: flex-end !important;
  min-width: 0 !important;
  overflow: visible !important;
}

.menu-app .menu-language-picker {
  position: relative !important;
  z-index: 80 !important;
  max-width: 100% !important;
}

.menu-app .menu-language-picker__toggle {
  list-style: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 34px !important;
  max-width: min(190px, 44vw) !important;
  padding: 4px 10px 4px 5px !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  color: #ffffff !important;
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  box-shadow: none !important;
  user-select: none !important;
}

.menu-app .menu-language-picker__toggle::-webkit-details-marker {
  display: none !important;
}

.menu-app .menu-language-picker__flag,
.menu-app .menu-language-picker__flag svg {
  display: inline-flex !important;
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  border-radius: 999px !important;
  overflow: hidden !important;
}

.menu-app .menu-language-picker__flag svg {
  width: 28px !important;
  height: 28px !important;
  object-fit: cover !important;
}

.menu-app .menu-language-picker__label {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
}

.menu-app .menu-language-picker__chevron {
  flex: 0 0 auto !important;
  font-size: .72rem !important;
  opacity: .82 !important;
  transition: transform .18s ease !important;
}

.menu-app .menu-language-picker[open] .menu-language-picker__chevron {
  transform: rotate(180deg) !important;
}

.menu-app .menu-language-picker .menu-language-switcher {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 7px !important;
  width: min(320px, calc(100vw - 28px)) !important;
  max-width: calc(100vw - 28px) !important;
  max-height: min(58vh, 420px) !important;
  overflow: auto !important;
  padding: 10px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.98) !important;
  border: 1px solid #dce6f3 !important;
  box-shadow: 0 24px 70px rgba(15,23,42,.22) !important;
  backdrop-filter: blur(18px) !important;
  scrollbar-width: thin !important;
}

.menu-app .menu-language-picker .menu-language-switcher__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 42px !important;
  padding: 0 10px !important;
  border-radius: 14px !important;
  color: #172033 !important;
  background: #f7f9fc !important;
  border: 1px solid #e4ebf4 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-size: .78rem !important;
  font-weight: 850 !important;
}

.menu-app .menu-language-picker .menu-language-switcher__link svg {
  width: 24px !important;
  height: 18px !important;
  flex: 0 0 24px !important;
  border-radius: 5px !important;
  overflow: hidden !important;
}

.menu-app .menu-language-picker .menu-language-switcher__link span {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.menu-app .menu-language-picker .menu-language-switcher__link.is-active {
  color: color-mix(in srgb, var(--primary-color) 76%, #07111f 24%) !important;
  background: color-mix(in srgb, var(--primary-color) 10%, #ffffff 90%) !important;
  border-color: color-mix(in srgb, var(--primary-color) 24%, #dce6f3 76%) !important;
}

.menu-app .menu-language-picker .menu-language-switcher__link:hover,
.menu-app .menu-language-picker .menu-language-switcher__link:focus-visible {
  transform: none !important;
  background: #ffffff !important;
  border-color: color-mix(in srgb, var(--primary-color) 24%, #dce6f3 76%) !important;
}

.menu-app .restaurant-sheet-language,
.menu-app .restaurant-sheet-top {
  overflow: visible !important;
}

.menu-app .restaurant-sheet-language .menu-language-switcher {
  max-width: calc(100vw - 28px) !important;
}

@media (max-width: 720px) {
  .menu-app .menu-language-picker__toggle {
    max-width: 118px !important;
    min-height: 32px !important;
    padding-right: 8px !important;
  }

  .menu-app .menu-language-picker__label {
    display: none !important;
  }

  .menu-app .menu-language-picker .menu-language-switcher {
    right: -2px !important;
    grid-template-columns: 1fr 1fr !important;
    width: min(304px, calc(100vw - 24px)) !important;
  }
}

@media (max-width: 380px) {
  .menu-app .menu-language-picker .menu-language-switcher {
    grid-template-columns: 1fr !important;
    width: min(220px, calc(100vw - 24px)) !important;
  }
}

/* Safety fix: valid brand background after language dropdown changes. */
.menu-app .restaurant-sheet {
  background:
    radial-gradient(520px 210px at 88% -18%, color-mix(in srgb, var(--primary-color) 45%, transparent) 0%, transparent 70%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 84%, #07111f) 0%, color-mix(in srgb, var(--secondary-color) 88%, var(--primary-color)) 100%) !important;
}

@supports not (background: color-mix(in srgb, #000 50%, #fff)) {
  .menu-app .restaurant-sheet {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  }
}

/* Mobile language fix: dropdown flows below the top row instead of covering identity/CTA. */
@media (max-width: 720px) {
  .menu-app .restaurant-sheet-top {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .menu-app .restaurant-sheet-language {
    position: static !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  .menu-app .menu-language-picker {
    position: static !important;
  }

  .menu-app .menu-language-picker__toggle {
    max-width: 64px !important;
    min-width: 56px !important;
    min-height: 34px !important;
    justify-content: center !important;
    padding: 3px 8px 3px 4px !important;
  }

  .menu-app .menu-language-picker .menu-language-switcher {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 228px !important;
    z-index: 120 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 9px !important;
    border-radius: 18px !important;
  }

  .menu-app .menu-language-picker .menu-language-switcher__link {
    height: 38px !important;
    padding: 0 8px !important;
    font-size: .76rem !important;
  }

  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet-main {
    margin-top: 244px !important;
  }
}

@media (max-width: 380px) {
  .menu-app .menu-language-picker .menu-language-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-height: 238px !important;
  }

  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet-main {
    margin-top: 254px !important;
  }
}

@supports not selector(:has(*)) {
  @media (max-width: 720px) {
    .menu-app .menu-language-picker[open] .menu-language-switcher {
      position: static !important;
      width: calc(100vw - 48px) !important;
      max-width: calc(100vw - 48px) !important;
      margin-top: 8px !important;
    }
  }
}

/* Hard mobile language fix: use a centered fixed sheet to avoid clipped flags. */
@media (max-width: 720px) {
  .menu-app .menu-language-picker .menu-language-switcher,
  .menu-app .restaurant-sheet-language .menu-language-switcher,
  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher {
    position: fixed !important;
    top: calc(68px + env(safe-area-inset-top, 0px)) !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    max-height: min(62vh, 440px) !important;
    z-index: 999 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.98) !important;
    border: 1px solid #dce6f3 !important;
    box-shadow: 0 28px 90px rgba(4,12,28,.30) !important;
    backdrop-filter: blur(20px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet-main {
    margin-top: 0 !important;
  }

  .menu-app .menu-language-picker .menu-language-switcher__link,
  .menu-app .restaurant-sheet-language .menu-language-switcher__link {
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    padding: 0 10px !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 360px) {
  .menu-app .menu-language-picker .menu-language-switcher,
  .menu-app .restaurant-sheet-language .menu-language-switcher,
  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher {
    grid-template-columns: 1fr !important;
    top: calc(58px + env(safe-area-inset-top, 0px)) !important;
    max-height: 68vh !important;
  }
}

/* Final mobile language overlay polish: opaque, readable, not blended with header text. */
@media (max-width: 720px) {
  .menu-app .menu-language-picker .menu-language-switcher,
  .menu-app .restaurant-sheet-language .menu-language-switcher,
  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher {
    top: calc(78px + env(safe-area-inset-top, 0px)) !important;
    background: #ffffff !important;
    border: 1px solid #d9e4f2 !important;
    box-shadow: 0 30px 90px rgba(2, 8, 23, .38) !important;
  }

  .menu-app .menu-language-picker .menu-language-switcher__link,
  .menu-app .restaurant-sheet-language .menu-language-switcher__link {
    background: #f8fafc !important;
    color: #111827 !important;
    border: 1px solid #e2eaf4 !important;
  }

  .menu-app .menu-language-picker .menu-language-switcher__link.is-active,
  .menu-app .restaurant-sheet-language .menu-language-switcher__link.is-active {
    background: #eef2ff !important;
    color: #111827 !important;
    border-color: color-mix(in srgb, var(--primary-color) 28%, #dbe6f4 72%) !important;
  }
}

/* Mobile language final: native selector avoids overlays and clipped flags on phones. */
.menu-app .menu-language-native {
  display: none !important;
}

@media (max-width: 720px) {
  .menu-app .restaurant-sheet-language .menu-language-picker {
    display: none !important;
  }

  .menu-app .menu-language-native {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    max-width: 148px !important;
    min-height: 36px !important;
    padding: 4px 8px 4px 5px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.14) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    color: #ffffff !important;
    overflow: hidden !important;
  }

  .menu-app .menu-language-native__flag,
  .menu-app .menu-language-native__flag svg {
    display: inline-flex !important;
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
  }

  .menu-app .menu-language-native__select {
    min-width: 0 !important;
    width: 82px !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    font: inherit !important;
    font-size: .76rem !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    appearance: auto !important;
  }

  .menu-app .menu-language-native__select option {
    color: #111827 !important;
    background: #ffffff !important;
  }

  .menu-app .restaurant-sheet-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }
}

@media (max-width: 380px) {
  .menu-app .menu-language-native {
    max-width: 70px !important;
    padding-right: 5px !important;
  }

  .menu-app .menu-language-native__select {
    width: 24px !important;
    color: transparent !important;
  }
}

/* Pretty mobile language dropdown: restore custom UI without covering the hero. */
@media (max-width: 720px) {
  .menu-app .restaurant-sheet-language .menu-language-native {
    display: none !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker {
    display: block !important;
    position: relative !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker__toggle {
    display: inline-flex !important;
    max-width: 136px !important;
    min-width: 118px !important;
    min-height: 36px !important;
    padding: 4px 10px 4px 5px !important;
    justify-content: flex-start !important;
    background: rgba(255,255,255,.14) !important;
    border: 1px solid rgba(255,255,255,.24) !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker__label {
    display: inline-block !important;
    color: #ffffff !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(300px, calc(100vw - 36px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 36px) !important;
    max-height: 260px !important;
    z-index: 999 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 10px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid #dce6f3 !important;
    box-shadow: 0 24px 70px rgba(2, 8, 23, .34) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    backdrop-filter: none !important;
  }

  /* ── Popup langue — 1 colonne, noms complets ── */
  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
    right: 0 !important;
    left: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 10px !important;
    max-height: 72vh !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher__link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    height: 48px !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    color: #111827 !important;
    border: 1px solid #e2eaf4 !important;
    box-shadow: none !important;
    font-size: .86rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    overflow: visible !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher__link.is-active {
    background: #eef2ff !important;
    color: #1d4ed8 !important;
    border-color: #c7d2fe !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher__link svg {
    width: 28px !important;
    height: 20px !important;
    flex: 0 0 28px !important;
    border-radius: 6px !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher__link span {
    display: block !important;
    overflow: visible !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
    min-width: 0 !important;
    flex: 1 !important;
  }
}

@media (max-width: 380px) {
  .menu-app .restaurant-sheet-language .menu-language-picker__toggle {
    min-width: 58px !important;
    max-width: 64px !important;
    padding-right: 7px !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker__label {
    display: none !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher {
    width: min(286px, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Correct mobile language dropdown: custom UI in normal flow, never over the restaurant title. */
@media (max-width: 720px) {
  .menu-app .restaurant-sheet-top {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .menu-app .restaurant-sheet-top:has(.menu-language-picker[open]) .restaurant-sheet-language {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker {
    width: 100% !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker__toggle {
    margin-left: auto !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher,
  .menu-app .restaurant-sheet-language .menu-language-switcher,
  .menu-app .menu-language-picker .menu-language-switcher {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    max-height: 238px !important;
    margin-top: 10px !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 10px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid #dce6f3 !important;
    box-shadow: 0 18px 46px rgba(2, 8, 23, .22) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    backdrop-filter: none !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher__link,
  .menu-app .restaurant-sheet-language .menu-language-switcher__link {
    height: 40px !important;
    padding: 0 9px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    color: #111827 !important;
    border: 1px solid #e2eaf4 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 360px) {
  .menu-app .restaurant-sheet-language .menu-language-picker .menu-language-switcher,
  .menu-app .restaurant-sheet-language .menu-language-switcher,
  .menu-app .menu-language-picker .menu-language-switcher {
    grid-template-columns: 1fr !important;
    max-height: 280px !important;
  }
}

/* Desktop language click fix: keep the dropdown above hero overlays and fully clickable. */
@media (min-width: 721px) {
  .menu-app .restaurant-sheet,
  .menu-app .restaurant-sheet-top,
  .menu-app .restaurant-sheet-language,
  .menu-app .page-language-row,
  .menu-app .menu-language-picker {
    overflow: visible !important;
  }

  .menu-app .restaurant-sheet-language,
  .menu-app .page-language-row,
  .menu-app .menu-language-picker {
    position: relative !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
  }

  .menu-app .menu-language-picker[open] {
    z-index: 10020 !important;
  }

  .menu-app .menu-language-picker[open] .menu-language-switcher {
    z-index: 10030 !important;
    pointer-events: auto !important;
  }

  .menu-app .menu-language-picker .menu-language-switcher__link,
  .menu-app .menu-language-picker .menu-language-switcher__link * {
    pointer-events: auto !important;
  }

  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet-main,
  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet-actions,
  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet::before {
    z-index: 1 !important;
  }
}

/* Definitive desktop language fix: fixed overlay above all header layers. */
@media (min-width: 721px) {
  .menu-app .restaurant-sheet-language .menu-language-picker[open] .menu-language-switcher,
  .menu-app .menu-language-picker[open] .menu-language-switcher {
    position: fixed !important;
    top: 74px !important;
    right: max(24px, calc((100vw - 1080px) / 2 + 24px)) !important;
    left: auto !important;
    width: 320px !important;
    max-width: calc(100vw - 48px) !important;
    max-height: min(70vh, 520px) !important;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
    isolation: isolate !important;
    transform: translateZ(0) !important;
    background: #ffffff !important;
    border: 1px solid #dce6f3 !important;
    box-shadow: 0 30px 90px rgba(2, 8, 23, .34) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker[open] .menu-language-switcher::before,
  .menu-app .restaurant-sheet-language .menu-language-picker[open] .menu-language-switcher::after,
  .menu-app .menu-language-picker[open] .menu-language-switcher::before,
  .menu-app .menu-language-picker[open] .menu-language-switcher::after {
    display: none !important;
    pointer-events: none !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker[open] .menu-language-switcher__link,
  .menu-app .menu-language-picker[open] .menu-language-switcher__link {
    position: relative !important;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
  }

  .menu-app .restaurant-sheet-language .menu-language-picker[open] .menu-language-switcher__link *,
  .menu-app .menu-language-picker[open] .menu-language-switcher__link * {
    pointer-events: none !important;
  }
}

/* Language open state: identity/action layers must not steal clicks from desktop dropdown. */
@media (min-width: 721px) {
  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet-main,
  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet-actions,
  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet::before {
    pointer-events: none !important;
  }

  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .restaurant-sheet-language,
  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .menu-language-picker,
  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .menu-language-switcher,
  .menu-app .restaurant-sheet:has(.menu-language-picker[open]) .menu-language-switcher__link {
    pointer-events: auto !important;
  }
}

/* Header premium polish: compact restaurant-app hierarchy without changing routes or actions. */
.menu-app .restaurant-sheet {
  overflow: visible !important;
  padding: clamp(15px, 1.8vw, 19px) clamp(15px, 2.1vw, 22px) !important;
  border-radius: clamp(24px, 2vw, 30px) !important;
  /* Header en couleur secondaire pleine — plus de dégradé forcé (thème modulaire) */
  background: var(--theme-secondary) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow:
    0 18px 42px color-mix(in srgb, var(--secondary-color) 24%, rgba(15,23,42,.18) 76%),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.menu-app .restaurant-sheet::before,
.menu-app .restaurant-sheet::after {
  pointer-events: none !important;
}

.menu-app .restaurant-sheet::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 18px 0 18px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent) !important;
  opacity: .72 !important;
}

.menu-app .restaurant-sheet-top {
  margin-bottom: clamp(10px, 1.4vw, 14px) !important;
}

.menu-app .restaurant-sheet-main {
  position: relative !important;
  z-index: 3 !important;
}

.menu-app .restaurant-sheet-identity {
  align-items: center !important;
}

.menu-app .restaurant-sheet-logo,
.menu-app .hero-logo.restaurant-sheet-logo {
  box-shadow: 0 14px 34px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.20) !important;
}

.menu-app .restaurant-sheet-copy h1 {
  font-size: clamp(2.35rem, 4.55vw, 3.75rem) !important;
  line-height: .88 !important;
  letter-spacing: -.075em !important;
  max-width: 12ch !important;
  text-wrap: balance !important;
}

.menu-app .restaurant-sheet-address {
  margin-top: 6px !important;
  max-width: 46ch !important;
  color: rgba(255,255,255,.80) !important;
}

.menu-app .restaurant-sheet-badges {
  margin-top: 7px !important;
}

.menu-app .restaurant-sheet-badges .hero-badge:not(.restaurant-badge-status):not(.restaurant-badge-google):not(.restaurant-badge-halal),
.menu-app .restaurant-sheet-connected .hero-badge {
  min-height: 24px !important;
  padding: 0 8px !important;
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.18) !important;
  font-size: .68rem !important;
}

.menu-app .restaurant-sheet-actions {
  align-items: center !important;
  gap: 9px !important;
  margin-top: 13px !important;
}

.menu-app .restaurant-quick-actions,
.menu-app .hero-actions-menu__row.restaurant-quick-actions {
  gap: 7px !important;
}

.menu-app .restaurant-quick-action,
.menu-app .hero-actions-menu__link.restaurant-quick-action {
  min-height: 42px !important;
  padding: 0 13px !important;
  font-size: .81rem !important;
}

.menu-app .restaurant-quick-action--order,
.menu-app .hero-actions-menu__link.restaurant-quick-action--order {
  min-width: 178px !important;
  color: color-mix(in srgb, var(--primary-color) 82%, #07111f 18%) !important;
  background: #ffffff !important;
  border-color: rgba(255,255,255,.90) !important;
  box-shadow:
    0 18px 34px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,255,255,.18) inset !important;
}

.menu-app .restaurant-quick-action--order:hover,
.menu-app .hero-actions-menu__link.restaurant-quick-action--order:hover {
  transform: translateY(-1px) scale(1.01) !important;
  box-shadow:
    0 20px 40px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,255,255,.22) inset !important;
}

.menu-app .restaurant-quick-action--module,
.menu-app .hero-actions-menu__link.restaurant-quick-action--module,
.menu-app .restaurant-quick-action--ghost,
.menu-app .hero-actions-menu__link.restaurant-quick-action--ghost {
  min-width: 0 !important;
  color: rgba(255,255,255,.92) !important;
  background: rgba(255,255,255,.105) !important;
  border-color: rgba(255,255,255,.16) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.menu-app .restaurant-quick-action--roulette,
.menu-app .hero-actions-menu__link.restaurant-quick-action--roulette {
  position: relative !important;
  min-width: 0 !important;
  color: #1a1200 !important;
  background: linear-gradient(135deg, #fbbf24, #f97316) !important;
  border-color: rgba(255,255,255,.35) !important;
  box-shadow: 0 10px 24px rgba(249,115,22,.38), inset 0 1px 0 rgba(255,255,255,.35) !important;
  font-weight: 800 !important;
  animation: roulette-pulse 2.2s ease-in-out infinite;
}

.menu-app .roulette-free-badge {
  position: absolute;
  top: -8px;
  right: -6px;
  background: #dc2626;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 2px 6px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0,0,0,.35), 0 0 0 2px rgba(0,0,0,.55);
  text-transform: uppercase;
  line-height: 1.4;
  pointer-events: none;
}

.menu-app .roulette-teaser-line {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 10px 0 0 !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(249,115,22,.18), rgba(251,191,36,.12)) !important;
  border: 1px solid rgba(251,191,36,.3) !important;
  color: #ffd98a !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  flex: 1 1 100% !important;
  grid-column: 1 / -1 !important;
  white-space: normal !important;
}

.menu-app .roulette-teaser-arrow {
  margin-left: auto;
  transition: transform .2s ease;
}

.menu-app .roulette-teaser-line:hover .roulette-teaser-arrow {
  transform: translateX(3px);
}

.menu-app .restaurant-quick-action--roulette:hover,
.menu-app .hero-actions-menu__link.restaurant-quick-action--roulette:hover {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 14px 30px rgba(249,115,22,.46), inset 0 1px 0 rgba(255,255,255,.4) !important;
}

@keyframes roulette-pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(249,115,22,.38), inset 0 1px 0 rgba(255,255,255,.35), 0 0 0 0 rgba(249,115,22,.35); }
  50% { box-shadow: 0 10px 24px rgba(249,115,22,.38), inset 0 1px 0 rgba(255,255,255,.35), 0 0 0 6px rgba(249,115,22,0); }
}

.menu-app .restaurant-quick-action--ghost,
.menu-app .hero-actions-menu__link.restaurant-quick-action--ghost {
  color: rgba(255,255,255,.82) !important;
}

.menu-app .restaurant-sheet-more {
  z-index: 120 !important;
}

.menu-app .restaurant-sheet-more .hero-actions-menu__more-toggle {
  min-width: 68px !important;
  min-height: 42px !important;
  padding: 0 12px !important;
  color: rgba(255,255,255,.86) !important;
  background: rgba(255,255,255,.095) !important;
  border-color: rgba(255,255,255,.15) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.menu-app .restaurant-sheet-more[open] .hero-actions-menu__more-toggle {
  color: color-mix(in srgb, var(--primary-color) 80%, #07111f 20%) !important;
  background: #ffffff !important;
  border-color: rgba(255,255,255,.90) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.22) !important;
}

.menu-app .restaurant-sheet-more .hero-actions-menu__row--secondary {
  top: calc(100% + 9px) !important;
  width: min(292px, calc(100vw - 32px)) !important;
  max-height: min(46vh, 330px) !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
  padding: 8px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.985) !important;
  box-shadow: 0 22px 54px rgba(2,8,23,.26) !important;
  backdrop-filter: blur(18px) !important;
  z-index: 200 !important;
}

.menu-app .restaurant-sheet-more .hero-actions-menu__link {
  min-height: 36px !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  padding: 0 10px !important;
  border-radius: 12px !important;
  background: transparent !important;
  border-color: transparent !important;
  color: #172033 !important;
  font-size: .78rem !important;
}

.menu-app .restaurant-sheet-more .hero-actions-menu__link:hover,
.menu-app .restaurant-sheet-more .hero-actions-menu__link:focus-visible {
  background: #f3f7fc !important;
  border-color: #e2eaf4 !important;
}

.menu-app .menu-language-picker__toggle {
  min-height: 32px !important;
  max-width: 168px !important;
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.18) !important;
}

.menu-app .menu-language-picker[open] .menu-language-picker__toggle {
  background: rgba(255,255,255,.18) !important;
}

.menu-app .surface-controls {
  margin-top: 14px !important;
}

.menu-app .surface-controls::before {
  opacity: .45 !important;
}

@media (min-width: 980px) {
  .menu-app .restaurant-sheet-main {
    max-width: calc(100% - 250px) !important;
  }

  .menu-app .restaurant-sheet-actions {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }
}

@media (min-width: 721px) {
  .menu-app .restaurant-sheet-more .hero-actions-menu__row--secondary {
    width: min(340px, calc(100vw - 40px)) !important;
    max-height: min(42vh, 280px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .menu-app .restaurant-sheet {
    padding: 13px !important;
    border-radius: 24px !important;
  }

  .menu-app .restaurant-sheet-top {
    margin-bottom: 9px !important;
  }

  .menu-app .restaurant-sheet-logo,
  .menu-app .hero-logo.restaurant-sheet-logo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 17px !important;
  }

  .menu-app .restaurant-sheet-copy h1 {
    font-size: clamp(1.82rem, 9.2vw, 2.45rem) !important;
    line-height: .90 !important;
    max-width: 10.6ch !important;
  }

  .menu-app .restaurant-sheet-address {
    margin-top: 4px !important;
    font-size: .78rem !important;
    max-width: 24ch !important;
  }

  .menu-app .restaurant-sheet-badges {
    margin-top: 6px !important;
  }

  .menu-app .restaurant-sheet-actions {
    margin-top: 11px !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
  }

  .menu-app .restaurant-quick-actions,
  .menu-app .hero-actions-menu__row.restaurant-quick-actions {
    gap: 6px !important;
  }

  .menu-app .restaurant-quick-action,
  .menu-app .hero-actions-menu__link.restaurant-quick-action {
    min-height: 40px !important;
    padding: 0 9px !important;
    border-radius: 18px !important;
    font-size: .75rem !important;
  }

  .menu-app .restaurant-quick-action--order,
  .menu-app .hero-actions-menu__link.restaurant-quick-action--order {
    min-height: 44px !important;
    border-radius: 999px !important;
    font-size: .82rem !important;
  }

  .menu-app .restaurant-sheet-more .hero-actions-menu__more-toggle {
    width: 48px !important;
    min-width: 48px !important;
    min-height: 44px !important;
    border-radius: 18px !important;
  }

  .menu-app .restaurant-sheet-more .hero-actions-menu__row--secondary {
    right: 0 !important;
    width: min(300px, calc(100vw - 30px)) !important;
    max-height: 230px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    padding: 9px !important;
    border-radius: 20px !important;
  }

  .menu-app .restaurant-sheet-more .hero-actions-menu__link {
    min-height: 38px !important;
    justify-content: center !important;
    font-size: .74rem !important;
    padding: 0 7px !important;
  }

  .menu-app .restaurant-sheet:has(.restaurant-sheet-more[open]) {
    margin-bottom: 8px !important;
  }

  .menu-app .surface-controls {
    margin-top: 10px !important;
  }
}

@media (max-width: 390px) {
  .menu-app .restaurant-sheet {
    padding: 12px !important;
  }

  .menu-app .restaurant-sheet-identity {
    gap: 9px !important;
  }

  .menu-app .restaurant-sheet-logo,
  .menu-app .hero-logo.restaurant-sheet-logo {
    width: 54px !important;
    height: 54px !important;
  }

  .menu-app .restaurant-sheet-copy h1 {
    font-size: clamp(1.62rem, 8.8vw, 2.12rem) !important;
  }

  .menu-app .restaurant-sheet-address {
    font-size: .72rem !important;
    max-width: 22ch !important;
  }

  .menu-app .restaurant-sheet-badges .hero-badge:not(.restaurant-badge-status):not(.restaurant-badge-google):not(.restaurant-badge-halal) {
    min-height: 22px !important;
    padding: 0 7px !important;
    font-size: .63rem !important;
  }

  .menu-app .restaurant-sheet-more .hero-actions-menu__row--secondary {
    width: min(286px, calc(100vw - 26px)) !important;
    max-height: 216px !important;
  }
}

/* Commercial-grade restaurant header state: closed orders should still invite menu browsing. */
.menu-app .restaurant-sheet {
  min-height: auto !important;
}

.menu-app .restaurant-sheet-copy h1 {
  text-wrap: balance !important;
}
.menu-app .restaurant-sheet-copy h1.restaurant-sheet-name,
.menu-app .restaurant-sheet-name {
  white-space: nowrap !important;
  text-wrap: nowrap !important;
  overflow: visible !important;
  max-width: 100% !important;
  line-height: 1.15 !important;
  padding-bottom: 0.05em !important;
  font-size: clamp(1.4rem, 3.8vw, 2.4rem) !important;
}

.menu-app .restaurant-quick-action--menu-primary,
.menu-app .hero-actions-menu__link.restaurant-quick-action--menu-primary {
  color: color-mix(in srgb, var(--primary-color) 84%, #07111f 16%) !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%) !important;
  border-color: rgba(255,255,255,.92) !important;
}

.menu-app .restaurant-quick-action--menu-primary::after,
.menu-app .hero-actions-menu__link.restaurant-quick-action--menu-primary::after {
  content: "" !important;
  width: 6px !important;
  height: 6px !important;
  margin-left: 2px !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--primary-color) 82%, #ffffff 18%) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-color) 12%, transparent) !important;
}

.menu-app .surface-service-alert {
  margin-top: 12px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.menu-app .service-alert-card,
.menu-app .mini-card.service-alert-card {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 72px !important;
  padding: 13px 16px !important;
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,251,255,.92)) !important;
  border: 1px solid rgba(218,228,241,.95) !important;
  box-shadow: 0 16px 40px rgba(15,23,42,.08) !important;
}

.menu-app .service-alert-card__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 16px !important;
  background: color-mix(in srgb, var(--primary-color) 10%, #ffffff 90%) !important;
  border: 1px solid color-mix(in srgb, var(--primary-color) 18%, #dbe6f4 82%) !important;
  color: color-mix(in srgb, var(--primary-color) 76%, #07111f 24%) !important;
  font-size: 1rem !important;
}

.menu-app .service-alert-card__copy {
  min-width: 0 !important;
}

.menu-app .service-alert-card__copy strong {
  display: block !important;
  color: #0b1220 !important;
  font-size: clamp(1rem, 1.6vw, 1.12rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -.025em !important;
}

.menu-app .service-alert-card__copy .muted {
  margin: 4px 0 0 !important;
  color: #56657a !important;
  font-size: .94rem !important;
  line-height: 1.42 !important;
}

.menu-app .service-alert-card__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: color-mix(in srgb, var(--primary-color) 82%, #07111f 18%) !important;
  background: #ffffff !important;
  border: 1px solid color-mix(in srgb, var(--primary-color) 18%, #dbe6f4 82%) !important;
  box-shadow: 0 8px 18px rgba(15,23,42,.06) !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.menu-app .service-alert-card__link:hover,
.menu-app .service-alert-card__link:focus-visible {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 24px rgba(15,23,42,.10) !important;
}

.menu-app .surface-service-alert + .surface-controls {
  margin-top: 12px !important;
}

@media (min-width: 1080px) {
  .menu-app .restaurant-sheet {
    padding: 20px 22px !important;
  }

  .menu-app .restaurant-sheet-actions {
    margin-top: 12px !important;
  }
}

@media (max-width: 720px) {
  .menu-app .restaurant-quick-action--menu-primary,
  .menu-app .hero-actions-menu__link.restaurant-quick-action--menu-primary {
    min-height: 44px !important;
  }

  .menu-app .surface-service-alert {
    margin-top: 10px !important;
  }

  .menu-app .service-alert-card,
  .menu-app .mini-card.service-alert-card {
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 10px !important;
    min-height: 0 !important;
    padding: 12px !important;
    border-radius: 22px !important;
  }

  .menu-app .service-alert-card__icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 14px !important;
  }

  .menu-app .service-alert-card__copy strong {
    font-size: .96rem !important;
  }

  .menu-app .service-alert-card__copy .muted {
    font-size: .84rem !important;
    line-height: 1.35 !important;
  }

  .menu-app .service-alert-card__link {
    display: none !important;
  }
}

/* Premium branded secondary actions: replaces emoji feel with app-like brand buttons. */
.menu-app .restaurant-sheet-more .restaurant-more-link,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link {
  position: relative !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  min-height: 46px !important;
  padding: 6px 12px 6px 8px !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  border: 1px solid #e4ebf4 !important;
  color: #172033 !important;
  box-shadow: 0 8px 18px rgba(15,23,42,.045) !important;
  overflow: hidden !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(135deg, var(--more-tint, rgba(15,23,42,.025)), transparent 62%) !important;
  opacity: .78 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link > span:not(.restaurant-more-icon) {
  position: relative !important;
  z-index: 1 !important;
  font-weight: 920 !important;
}

.menu-app .restaurant-more-icon {
  position: relative !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
  border-radius: 11px !important;
  color: #ffffff !important;
  font-size: .74rem !important;
  font-weight: 950 !important;
  letter-spacing: -.04em !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 8px 16px rgba(15,23,42,.10) !important;
}

.menu-app .restaurant-more-icon::before {
  display: block !important;
  line-height: 1 !important;
}

.menu-app .restaurant-more-link--phone {
  --more-tint: rgba(15,23,42,.045);
}

.menu-app .restaurant-more-icon--phone {
  color: #0f172a !important;
  background: linear-gradient(135deg, #eef4fb, #ffffff) !important;
  border: 1px solid #d8e3ef !important;
}

.menu-app .restaurant-more-icon--phone::before {
  content: "â˜Ž" !important;
  font-size: .88rem !important;
}

.menu-app .restaurant-more-link--whatsapp {
  --more-tint: rgba(37,211,102,.14);
}

.menu-app .restaurant-more-icon--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
}

.menu-app .restaurant-more-icon--whatsapp::before {
  content: "wa" !important;
  text-transform: uppercase !important;
  font-size: .62rem !important;
}

.menu-app .restaurant-more-link--google {
  --more-tint: rgba(66,133,244,.13);
}

.menu-app .restaurant-more-icon--google {
  color: #ffffff !important;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%) !important;
}

.menu-app .restaurant-more-icon--google::before {
  content: "G" !important;
  width: 22px !important;
  height: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #1f2937 !important;
  font-size: .86rem !important;
  font-weight: 950 !important;
}

.menu-app .restaurant-more-link--instagram {
  --more-tint: rgba(225,48,108,.12);
}

.menu-app .restaurant-more-icon--instagram {
  background: radial-gradient(circle at 30% 105%, #fdf497 0 20%, #fd5949 38%, #d6249f 62%, #285aeb 100%) !important;
}

.menu-app .restaurant-more-icon--instagram::before {
  content: "â—Ž" !important;
  font-size: 1.05rem !important;
}

.menu-app .restaurant-more-link--tiktok {
  --more-tint: rgba(0,0,0,.08);
}

.menu-app .restaurant-more-icon--tiktok {
  background:
    linear-gradient(135deg, rgba(37,244,238,.95), rgba(254,44,85,.95)),
    #0f172a !important;
}

.menu-app .restaurant-more-icon--tiktok::before {
  content: "â™ª" !important;
  color: #ffffff !important;
  font-size: 1rem !important;
}

.menu-app .restaurant-more-link--map {
  --more-tint: rgba(239,68,68,.12);
}

.menu-app .restaurant-more-icon--map {
  background: linear-gradient(135deg, #fb7185, #ef4444) !important;
}

.menu-app .restaurant-more-icon--map::before {
  content: "âŒ–" !important;
  font-size: 1rem !important;
}

.menu-app .restaurant-more-link--info {
  --more-tint: rgba(59,130,246,.11);
}

.menu-app .restaurant-more-icon--info {
  background: linear-gradient(135deg, #60a5fa, #2563eb) !important;
}

.menu-app .restaurant-more-icon--info::before {
  content: "i" !important;
  font-size: .95rem !important;
}

.menu-app .restaurant-more-link--blog {
  --more-tint: rgba(100,116,139,.11);
}

.menu-app .restaurant-more-icon--blog {
  background: linear-gradient(135deg, #cbd5e1, #64748b) !important;
}

.menu-app .restaurant-more-icon--blog::before {
  content: "â–¤" !important;
  font-size: .9rem !important;
}

.menu-app .restaurant-more-link--account,
.menu-app .restaurant-more-link--login {
  --more-tint: rgba(245,158,11,.13);
}

.menu-app .restaurant-more-icon--account,
.menu-app .restaurant-more-icon--login {
  background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
}

.menu-app .restaurant-more-icon--account::before {
  content: "ðŸ‘¤" !important;
  font-size: .78rem !important;
}

.menu-app .restaurant-more-icon--login::before {
  content: "ðŸ”’" !important;
  font-size: .78rem !important;
}

.menu-app .restaurant-more-link--share {
  --more-tint: rgba(15,23,42,.08);
}

.menu-app .restaurant-more-icon--share {
  background: linear-gradient(135deg, #111827, #334155) !important;
}

.menu-app .restaurant-more-icon--share::before {
  content: "â†—" !important;
  font-size: .9rem !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link:hover,
.menu-app .restaurant-sheet-more .restaurant-more-link:focus-visible {
  transform: translateY(-1px) !important;
  background: #ffffff !important;
  border-color: color-mix(in srgb, var(--primary-color) 20%, #dbe6f4 80%) !important;
  box-shadow: 0 14px 26px rgba(15,23,42,.10) !important;
}

@media (max-width: 720px) {
  .menu-app .restaurant-sheet-more .restaurant-more-link,
  .menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link {
    min-height: 44px !important;
    padding: 6px 9px !important;
    gap: 8px !important;
    justify-content: flex-start !important;
  }

  .menu-app .restaurant-more-icon {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
    border-radius: 10px !important;
  }
}

/* Final brand treatment: real inline SVG logos and full-color brand buttons. */
.menu-app .restaurant-more-icon svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}

.menu-app .restaurant-more-icon:has(svg)::before {
  content: none !important;
  display: none !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--whatsapp,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  border-color: rgba(255,255,255,.36) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(18,140,126,.26) !important;
}

.menu-app .restaurant-more-link--whatsapp .restaurant-more-icon {
  color: #25d366 !important;
  background: #ffffff !important;
  border: 0 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--instagram,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--instagram {
  background: radial-gradient(circle at 18% 110%, #fdf497 0 18%, #fd5949 38%, #d6249f 62%, #285aeb 100%) !important;
  border-color: rgba(255,255,255,.36) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(214,36,159,.22) !important;
}

.menu-app .restaurant-more-link--instagram .restaurant-more-icon {
  color: #d6249f !important;
  background: #ffffff !important;
  border: 0 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--tiktok,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--tiktok {
  background: linear-gradient(135deg, #050505 0%, #111827 100%) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.22) !important;
}

.menu-app .restaurant-more-link--tiktok .restaurant-more-icon {
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(37,244,238,.95), rgba(254,44,85,.95)) !important;
  border: 0 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--map,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--map {
  background: linear-gradient(135deg, #ef4444 0%, #fb7185 100%) !important;
  border-color: rgba(255,255,255,.34) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(239,68,68,.20) !important;
}

.menu-app .restaurant-more-link--map .restaurant-more-icon {
  color: #ef4444 !important;
  background: #ffffff !important;
  border: 0 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--google,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--google {
  background: #ffffff !important;
  border-color: #dfe7f2 !important;
  color: #172033 !important;
  box-shadow: 0 10px 22px rgba(66,133,244,.10) !important;
}

.menu-app .restaurant-more-link--google .restaurant-more-icon {
  color: initial !important;
  background: #ffffff !important;
  border: 1px solid #e3eaf3 !important;
}

.menu-app .restaurant-more-link--google .restaurant-more-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.menu-app .restaurant-more-link--google .restaurant-more-icon svg path {
  fill: revert-layer !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--phone,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--phone {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4fb 100%) !important;
  border-color: #dbe6f4 !important;
  color: #0f172a !important;
}

.menu-app .restaurant-more-link--phone .restaurant-more-icon,
.menu-app .restaurant-more-link--info .restaurant-more-icon,
.menu-app .restaurant-more-link--blog .restaurant-more-icon,
.menu-app .restaurant-more-link--login .restaurant-more-icon,
.menu-app .restaurant-more-link--account .restaurant-more-icon,
.menu-app .restaurant-more-link--share .restaurant-more-icon {
  border: 0 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--info,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--info {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
  color: #1d4ed8 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--blog,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--blog {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  color: #334155 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--login,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--login,
.menu-app .restaurant-sheet-more .restaurant-more-link--account,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--account {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
  color: #9a3412 !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--share,
.menu-app .restaurant-sheet-more .hero-actions-menu__link.restaurant-more-link--share {
  background: linear-gradient(135deg, #111827 0%, #334155 100%) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.16) !important;
}

.menu-app .restaurant-more-link--share .restaurant-more-icon {
  background: rgba(255,255,255,.14) !important;
  color: #ffffff !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link--whatsapp::after,
.menu-app .restaurant-sheet-more .restaurant-more-link--instagram::after,
.menu-app .restaurant-sheet-more .restaurant-more-link--tiktok::after,
.menu-app .restaurant-sheet-more .restaurant-more-link--map::after,
.menu-app .restaurant-sheet-more .restaurant-more-link--share::after {
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 62%) !important;
}

.menu-app .restaurant-sheet-more .restaurant-more-link:hover,
.menu-app .restaurant-sheet-more .restaurant-more-link:focus-visible {
  filter: saturate(1.04) brightness(1.02) !important;
}

/* Hotfix 2026-05: keep public menu categories readable on mobile and restore rating pills. */
.menu-app .category-head {
  direction: ltr !important;
  text-align: left !important;
}

.menu-app .category-title {
  text-align: left !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}

.menu-app .category-count {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.menu-app .dish-signal-row {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 10px 0 0 !important;
}

.menu-app .dish-rating-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 26px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  border: 1px solid #fed7aa !important;
  background: #fff7ed !important;
  color: #9a3412 !important;
  font-size: .82rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

.menu-app .dish-signal-pill,
.menu-app .pop-badge,
.menu-app .home-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-height: 26px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  border: 1px solid #a7f3d0 !important;
  background: #ecfdf5 !important;
  color: #047857 !important;
  font-size: .82rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

@media (max-width: 720px) {
  .menu-app .category-head {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    direction: ltr !important;
    text-align: left !important;
  }

  .menu-app .category-title {
    order: 1 !important;
    text-align: left !important;
    justify-self: flex-start !important;
    align-self: center !important;
  }

  .menu-app .category-count {
    order: 2 !important;
    flex: 0 0 auto !important;
  }

  .menu-app .dish-signal-row {
    justify-content: flex-start !important;
  }
}

/* Hotfix 2026-05: soften over-bold menu typography and keep dish actions visible on mobile. */
.menu-app .dish-card,
.menu-app .dish-sheet,
.menu-app .dish-sheet button,
.menu-app .dish-sheet input,
.menu-app .dish-sheet label,
.menu-app .dish-signal-row,
.menu-app .category-head,
.menu-app .mobile-sticky-order {
  font-weight: 600 !important;
}

.menu-app .dish-name,
.menu-app .dish-main h3,
.menu-app .dish-sheet-head h3,
.menu-app .sheet-main h3,
.menu-app .category-title {
  font-weight: 760 !important;
  letter-spacing: -.025em !important;
}

.menu-app .price-pill,
.menu-app .sheet-price,
.menu-app .sheet-total,
.menu-app .dish-open-hint,
.menu-app .btn-primary,
.menu-app .btn-outline,
.menu-app .btn-ghost,
.menu-app .dish-sheet .supp-row strong {
  font-weight: 720 !important;
}

.menu-app .dish-rating-pill,
.menu-app .dish-signal-pill,
.menu-app .pop-badge,
.menu-app .home-badge {
  font-weight: 700 !important;
}

.menu-app .dish-desc,
.menu-app .sheet-desc,
.menu-app .sheet-muted {
  font-weight: 450 !important;
}

.menu-app .dish-sheet {
  display: grid !important;
  grid-template-rows: auto auto minmax(0, 1fr) auto !important;
}

.menu-app .dish-sheet-body {
  min-height: 0 !important;
}

.menu-app .dish-sheet-foot {
  position: sticky !important;
  bottom: 0 !important;
  z-index: 5 !important;
  background: rgba(255, 255, 255, .98) !important;
  backdrop-filter: blur(14px) !important;
}

@media (max-width: 720px) {
  .menu-app .dish-sheet {
    max-height: min(92vh, calc(100dvh - 12px)) !important;
    height: auto !important;
    display: grid !important;
    grid-template-rows: auto auto minmax(0, 1fr) auto !important;
  }

  .menu-app .dish-sheet-body {
    overflow: auto !important;
    min-height: 0 !important;
    padding-bottom: 18px !important;
  }

  .menu-app .dish-sheet-foot {
    display: block !important;
    padding: 12px 14px calc(14px + env(safe-area-inset-bottom)) !important;
    border-top: 1px solid rgba(226,232,240,.95) !important;
    box-shadow: 0 -14px 34px rgba(15,23,42,.10) !important;
  }

  .menu-app .sheet-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .menu-app .sheet-actions button {
    width: 100% !important;
    min-height: 48px !important;
    font-size: .98rem !important;
  }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  PREMIUM REDESIGN — FINAL LAYER — wins all cascade          ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── BODY & PAGE ── */
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif !important;
}

/* ── SURFACE CARD ── */
.surface {
  border-radius: 28px !important;
  border: 1px solid var(--theme-border-on-inner, rgba(15, 23, 42, 0.07)) !important;
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.09) !important;
  padding: 18px !important;
  background: var(--theme-inner-bg) !important;
}

/* ── HERO ── */
.hero {
  border-radius: 28px !important;
  box-shadow: 0 24px 56px rgba(2, 6, 23, 0.22) !important;
  overflow: hidden !important;
}

.hero-logo {
  width: 80px !important;
  height: 80px !important;
  border-radius: 20px !important;
  border: 3px solid rgba(255,255,255,.9) !important;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.28) !important;
}

h1 {
  font-size: clamp(1.45rem, 6vw, 2rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
}

.hero-subline {
  font-size: 0.92rem !important;
  opacity: 0.88 !important;
  line-height: 1.5 !important;
}

.action-btn {
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  border-radius: 999px !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  letter-spacing: -0.01em !important;
}

/* ── CHIPBAR ── */
.chipbar-wrap {
  border-radius: 16px !important;
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 4px 20px rgba(15, 23, 42, 0.09) !important;
  margin-top: 14px !important;
}

.chipbar {
  padding: 10px 12px 8px !important;
  gap: 7px !important;
}

.chip {
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  border: 1.5px solid rgba(15, 23, 42, 0.10) !important;
  background: #fff !important;
  color: #374151 !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.07) !important;
  transition: all 0.17s ease !important;
  letter-spacing: 0 !important;
}

.chip:hover {
  border-color: rgba(15, 23, 42, 0.18) !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.10) !important;
  transform: translateY(-1px) !important;
}

.chip.active {
  color: #fff !important;
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--primary-color) 20%, transparent 80%),
    0 6px 20px color-mix(in srgb, var(--primary-color) 38%, transparent 62%) !important;
  transform: translateY(-1px) !important;
}

/* ── SECTIONS ── */
.section {
  margin-top: 28px !important;
}

.category-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid var(--theme-border-on-inner, rgba(15, 23, 42, 0.05)) !important;
}

.category-title,
.section h2 {
  font-size: clamp(1.25rem, 3.5vw, 1.6rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  color: var(--theme-text-on-inner, #0b1220) !important;
  margin: 0 !important;
  padding-bottom: 0 !important;
  position: static !important;
  display: block !important;
}

.category-title::after,
.section h2::after {
  display: none !important;
}

.category-count {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 26px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--theme-text-on-inner, #0b1220) 8%, transparent) !important;
  color: var(--theme-text-muted-on-inner, #64748b) !important;
  font-weight: 700 !important;
  font-size: 0.76rem !important;
  border: none !important;
  white-space: nowrap !important;
}

/* ── DISH CARDS ── */
.dish-card {
  display: grid !important;
  grid-template-columns: 130px 1fr auto !important;
  grid-template-areas: none !important;
  align-items: center !important;
  gap: 18px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(2, 6, 23, 0.06) !important;
  padding: 18px !important;
  margin-bottom: 10px !important;
  transition: transform 0.2s ease, box-shadow 0.22s ease, border-color 0.2s ease !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 0 !important;
}

.dish-card::after {
  content: none !important;
}

.dish-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.13) !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}

.dish-card:active {
  transform: translateY(-1px) !important;
}

/* ── DISH IMAGE ── */
.media {
  width: 130px !important;
  height: 130px !important;
  min-width: 130px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(15, 23, 42, 0.07) !important;
  background: #eef2f7 !important;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.11) !important;
  aspect-ratio: 1 / 1 !important;
  grid-area: unset !important;
}

.media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.24s ease !important;
}

.dish-card:hover .media img {
  transform: scale(1.06) !important;
}

.media-empty {
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
  color: #94a3b8 !important;
  font-size: 1.5rem !important;
  background: linear-gradient(135deg, #f1f5f9, #e8edf5) !important;
}

/* ── DISH MAIN CONTENT ── */
.dish-main {
  min-width: 0 !important;
  grid-area: unset !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.topline {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
  margin-bottom: 2px !important;
}

.dish-main h3,
.dish-name {
  margin: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #0b1220 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  display: block !important;
}

.dish-main p,
.dish-desc {
  margin: 0 !important;
  color: #637083 !important;
  font-size: 0.84rem !important;
  line-height: 1.52 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.dish-signal-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-top: 6px !important;
}

.dish-rating-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 3px 8px !important;
  border-radius: 999px !important;
  background: #fef9c3 !important;
  color: #92400e !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
}

.pop-badge {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  min-height: 22px !important;
}

.home-badge {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  min-height: 22px !important;
}

/* ── DISH SIDE (price) ── */
.dish-side {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 6px !important;
  justify-items: end !important;
  flex-shrink: 0 !important;
  grid-area: unset !important;
}

.price-pill {
  white-space: nowrap !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  font-weight: 900 !important;
  font-size: 0.92rem !important;
  color: #fff !important;
  background: var(--primary-color) !important;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary-color) 30%, transparent 70%) !important;
  letter-spacing: -0.01em !important;
  min-width: 90px !important;
  text-align: center !important;
}

.dish-open-hint {
  font-size: 0.72rem !important;
  color: #94a3b8 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

/* ── DUAL PRICE CARD ── */
.dual-price-card {
  display: grid !important;
  gap: 5px !important;
}

.dual-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
}

/* ── MOBILE BREAKPOINTS ── */
@media (max-width: 520px) {
  .dish-card {
    grid-template-columns: 88px 1fr !important;
    grid-template-areas: "media main" ". price" !important;
    padding: 14px !important;
    gap: 12px !important;
    align-items: start !important;
    border-radius: 20px !important;
    margin-bottom: 8px !important;
  }

  .media {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    border-radius: 14px !important;
    grid-area: media !important;
  }

  .dish-main {
    grid-area: main !important;
    align-self: center !important;
  }

  .dish-side {
    grid-area: price !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .price-pill {
    min-width: 0 !important;
    font-size: 0.88rem !important;
    padding: 8px 14px !important;
  }

  .dish-main h3,
  .dish-name {
    font-size: 0.96rem !important;
  }

  .category-title,
  .section h2 {
    font-size: 1.18rem !important;
  }

  .section {
    margin-top: 22px !important;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .dish-card {
    grid-template-columns: 110px 1fr auto !important;
    gap: 16px !important;
  }
  .media {
    width: 110px !important;
    height: 110px !important;
    min-width: 110px !important;
  }
}


/* ════ MENU PREMIUM v9 FINAL ════ */
/* Final polish for menu principal — typography, consistency, premium feel */

/* ── Inter font global ── */
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
}

/* ── Sheet (product detail) scroll fix ── */
.sheet-body {
  scroll-behavior: auto !important;
}

/* ── Sheet header ── */
.sheet-title {
  font-size: clamp(1.05rem, 3vw, 1.3rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
}

/* ── Sheet content ── */
.sheet-top-premium {
  display: grid !important;
  gap: 16px !important;
}

.sheet-image-frame {
  border-radius: 20px !important;
  overflow: hidden !important;
}

.sheet-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  display: block !important;
}

.sheet-main-card h3 {
  font-size: clamp(1.15rem, 4vw, 1.55rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.15 !important;
  margin: 0 0 8px !important;
  color: #0b1220 !important;
}

.sheet-desc {
  font-size: 0.9rem !important;
  color: #64748b !important;
  line-height: 1.6 !important;
  margin: 10px 0 !important;
}

.sheet-price {
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  color: #0b1220 !important;
  line-height: 1 !important;
}

.sheet-meta-pill {
  border-radius: 999px !important;
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.sheet-section-head h4 {
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
  color: #0b1220 !important;
}

.allergen-pill {
  border-radius: 999px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
}

/* ── Category header ── */
.category-head {
  margin-bottom: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid rgba(15,23,42,.05) !important;
}

.category-title,
.section h2 {
  text-transform: none !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
}

/* ── Category count ── */
.category-count {
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 2px 10px !important;
  min-height: 24px !important;
}

/* ── Chip active: no text-transform ── */
.chip {
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* ── Sticky bar ── */
.hero-sticky {
  border-radius: 0 0 16px 16px !important;
}

.hero h1 {
  text-transform: none !important;
}

/* ── Price pill improvements ── */
.price-pill {
  white-space: nowrap !important;
  min-width: 82px !important;
  text-align: center !important;
}

/* ── Button: add to order (onsite/click-collect) ── */
.sticky-order-button,
[data-scroll-order] {
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  letter-spacing: -0.01em !important;
  transition: transform 0.18s ease, box-shadow 0.2s ease !important;
}

/* ── Sheet overlay ── */
#sheet-overlay {
  backdrop-filter: blur(6px) !important;
}

/* ── Review prompt ── */
.review-prompt {
  border-radius: 24px !important;
}

/* ── Topbar improvements ── */
.page-topbar h1,
.hero-logo + * h1 {
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}

/* ── Mobile: sheet full screen ── */
@media (max-width: 540px) {
  .sheet-title {
    font-size: 1rem !important;
  }
  .sheet-main-card h3 {
    font-size: 1.2rem !important;
  }
  .sheet-price {
    font-size: 1.2rem !important;
  }
}

/* END MENU PREMIUM v9 FINAL */


/* ════ CSS POLISH 9/10 ════ */
/* Emil Kowalski Design × Impeccable × Hallmark */

/* ── Dish card — hover premium ── */
.dish-card {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease !important;
}

.dish-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 36px rgba(15,23,42,.14) !important;
}

.dish-card:active {
  transform: translateY(-1px) scale(0.99) !important;
  transition-duration: 0.08s !important;
}

/* ── Chip — hover premium ── */
.chip {
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease !important;
}

.chip:hover:not([aria-current="page"]) {
  transform: translateY(-1px) !important;
}

/* ── Buttons — hover premium ── */
button, .btn, [class*="btn-"] {
  transition: transform 0.15s ease, box-shadow 0.18s ease !important;
}

button:hover:not(:disabled), .btn:hover {
  transform: translateY(-1px) !important;
}

/* ── Price pill ── */
.price-pill {
  font-variant-numeric: tabular-nums !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
}

/* ── Category title — no uppercase ── */
.category-title, .section h2 {
  text-transform: none !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
}

/* ── Dish name — clean typography ── */
.dish-name {
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* ── Sheet title ── */
.sheet-title {
  font-size: clamp(1rem, 3vw, 1.25rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
}

/* ── Sheet overlay — blur ── */
#sheet-overlay {
  backdrop-filter: blur(6px) !important;
}

/* ── Mobile ── */
@media (max-width: 540px) {
  .dish-name { font-size: 0.9rem !important; }
  .price-pill { font-size: 0.88rem !important; }
}

/* END CSS POLISH 9/10 */



/* MENU LANG UNIFIED */
/* Harmonise le dropdown langue du menu avec le style global */

.restaurant-sheet-language .menu-language-native {
  display: none !important;
}

.restaurant-sheet-language .menu-language-picker {
  position: relative !important;
}

.restaurant-sheet-language .menu-language-switcher {
  position: absolute !important;
  right: 0 !important;
  top: calc(100% + 8px) !important;
  display: none !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 6px !important;
  width: min(340px, calc(100vw - 24px)) !important;
  padding: 12px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.98) !important;
  border: 1px solid rgba(15,23,42,.1) !important;
  box-shadow: 0 24px 60px rgba(15,23,42,.22) !important;
  z-index: 9999 !important;
}

.restaurant-sheet-language .menu-language-picker[open] .menu-language-switcher {
  display: grid !important;
}

.restaurant-sheet-language .menu-language-switcher__link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 12px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.restaurant-sheet-language .menu-language-switcher__link:hover {
  background: #f1f5f9 !important;
}

.restaurant-sheet-language .menu-language-switcher__link.is-active {
  background: #eef2ff !important;
  color: #1d4ed8 !important;
}

.restaurant-sheet-language .menu-language-switcher svg {
  width: 22px !important;
  min-width: 22px !important;
  height: 15px !important;
  border-radius: 3px !important;
  flex-shrink: 0 !important;
}

/* END MENU LANG UNIFIED */


/* ═══ DA SACLAY CARTE ═══ */
/* Uber Eats vertical x Aman x Linear x Apple. Palette neutre + accent resto. */

/* Section = grille de cartes verticales, aeree */
[data-category-section] {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  margin-bottom: 44px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
@media (min-width: 600px) { [data-category-section] { grid-template-columns: repeat(2,1fr) !important; gap: 22px !important; } }
@media (min-width: 1000px) { [data-category-section] { grid-template-columns: repeat(3,1fr) !important; gap: 24px !important; } }

/* Titre categorie span pleine largeur */
[data-category-section] > .category-head {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  padding: 0 2px 4px !important;
  margin: 0 0 4px !important;
  border: 0 !important;
}
[data-category-section] .category-title {
  font-size: clamp(1.35rem, 4.5vw, 1.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em !important;
  color: var(--theme-text-on-inner, #1a1a1a) !important;
  text-transform: none !important;
  margin: 0 !important;
}
[data-category-section] .category-count {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--theme-text-muted-on-inner, #9a9a9a) !important;
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
}

/* CARTE: verticale, blanche, cliquable, photo dominante */
[data-category-section] .dish-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--theme-inner-bg) !important;
  border: 1px solid var(--theme-border-on-inner, rgba(0,0,0,.07)) !important;
  border-radius: 20px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.04) !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease !important;
  height: 100% !important;
}
[data-category-section] .dish-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 44px rgba(0,0,0,.12) !important;
}
[data-category-section] .dish-card:active { transform: translateY(-1px) !important; }

/* PHOTO: pleine largeur, dominante (70% impact) */
[data-category-section] .dish-card .media {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  background: #f2f2f2 !important;
  margin: 0 !important;
}
[data-category-section] .dish-card .media img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; border-radius: 0 !important;
  display: block !important;
  transition: transform .6s cubic-bezier(.22,1,.36,1) !important;
}
[data-category-section] .dish-card:hover .media img { transform: scale(1.05) !important; }
[data-category-section] .dish-card .media-empty {
  width: 100% !important; height: 100% !important;
  display: grid !important; place-items: center !important;
  color: #c4c4c4 !important; font-weight: 700 !important; font-size: .85rem !important;
  background: #f2f2f2 !important;
}

/* CONTENU: espace genereux */
[data-category-section] .dish-card .dish-main {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 16px 18px 4px !important;
}
[data-category-section] .dish-card .topline {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 3px !important;
}
/* UN seul badge: overline accent, sans fond */
[data-category-section] .dish-card .pop-badge {
  order: -1 !important;
  background: none !important;
  color: var(--primary-color, #1a1a1a) !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
/* Masquer le bruit: 2e badge + signal pill */
[data-category-section] .dish-card .home-badge,
[data-category-section] .dish-card .dish-signal-pill { display: none !important; }

[data-category-section] .dish-card .dish-name {
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  text-transform: none !important;
  margin: 0 !important;
}
[data-category-section] .dish-card .dish-desc {
  font-size: 0.86rem !important;
  line-height: 1.55 !important;
  color: #707070 !important;
  margin: 2px 0 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
[data-category-section] .dish-card .dish-signal-row { margin-top: 6px !important; }
[data-category-section] .dish-card .dish-rating-pill {
  background: none !important; border: 0 !important; padding: 0 !important;
  color: #8a8a8a !important; font-size: 0.78rem !important; font-weight: 600 !important;
}

/* PIED: prix typographique + cercle "+" accent (zero bouton plein) */
[data-category-section] .dish-card .dish-side {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 8px 18px 18px !important;
  width: 100% !important;
}
[data-category-section] .dish-card .price-pill {
  background: none !important;
  color: #1a1a1a !important;
  padding: 0 !important;
  font-size: 1.22rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  font-variant-numeric: tabular-nums !important;
}
[data-category-section] .dish-card .dish-open-hint {
  width: 40px !important; height: 40px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background: rgba(0,0,0,.05) !important;
  color: var(--primary-color, #1a1a1a) !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  transition: background .2s ease, color .2s ease, transform .15s ease !important;
}
[data-category-section] .dish-card .dish-open-hint::after {
  content: "+" !important; font-size: 1.5rem !important; font-weight: 400 !important; line-height: 1 !important;
}
[data-category-section] .dish-card:hover .dish-open-hint {
  background: var(--primary-color, #1a1a1a) !important;
  color: #fff !important;
  transform: scale(1.08) !important;
}

/* DUAL PRICING: stack discret */
[data-category-section] .dish-card .dish-side.dual-pricing { align-items: center !important; }
[data-category-section] .dish-card .dual-price-card { display: flex !important; flex-direction: column !important; gap: 3px !important; }
[data-category-section] .dish-card .dual-price-row { display: flex !important; align-items: baseline !important; gap: 6px !important; }
[data-category-section] .dish-card .dual-price-badge {
  font-size: 0.58rem !important; font-weight: 700 !important; letter-spacing: 0.08em !important;
  text-transform: uppercase !important; color: #9a9a9a !important; background: none !important; padding: 0 !important; min-width: 0 !important;
}
[data-category-section] .dish-card .dual-price-amount {
  font-size: 1.05rem !important; font-weight: 800 !important; letter-spacing: -0.04em !important;
  color: #1a1a1a !important; font-variant-numeric: tabular-nums !important;
}
[data-category-section] .dish-card .dual-price-copy { display: none !important; }

/* Controls + recherche: epure neutre */
.surface-controls { background: #fff !important; border: 1px solid rgba(0,0,0,.06) !important; border-radius: 20px !important; }
.search-input {
  border-radius: 14px !important; border: 1px solid rgba(0,0,0,.1) !important; background: #fafafa !important;
  min-height: 48px !important;
}
.search-input:focus { border-color: var(--primary-color, #1a1a1a) !important; box-shadow: 0 0 0 3px rgba(0,0,0,.05) !important; outline: none !important; }

/* Espace vertical entre la liste */
.surface-menu-list { display: flex !important; flex-direction: column !important; gap: 8px !important; align-items: stretch !important; }

/* ═══ FIN DA SACLAY CARTE ═══ */


/* ═══ SACLAY TWEAKS ═══ */

/* ETOILES DOREES (note plat) */
[data-category-section] .dish-card .dish-rating-pill {
  color: #E0A100 !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
}

/* PRIX: vraiment nu, aucun fond/pill residuel */
[data-category-section] .dish-card .price-pill {
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

/* BOUTON + : un seul, propre, accent */
[data-category-section] .dish-card .dish-side .dish-open-hint {
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background: var(--primary-color, #1a1a1a) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.14) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  transition: transform .15s ease, filter .18s ease !important;
}
/* Un seul "+" via ::after, ::before neutralise */
[data-category-section] .dish-card .dish-side .dish-open-hint::before {
  content: "" !important;
  display: none !important;
}
[data-category-section] .dish-card .dish-side .dish-open-hint::after {
  content: "+" !important;
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
}
[data-category-section] .dish-card:hover .dish-side .dish-open-hint {
  transform: scale(1.1) !important;
  filter: brightness(1.08) !important;
}

/* ═══ FIN SACLAY TWEAKS ═══ */


/* ═══ SACLAY PUB ═══ */
/* Carte = publicite pour le plat. Photo dominante, zero bordure, badge overlay. */

[data-category-section] .dish-card {
  position: relative !important;
  border: 1px solid var(--theme-border-on-inner, rgba(0,0,0,.07)) !important;
  border-radius: 22px !important;
  background: var(--theme-inner-bg) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07) !important;
  overflow: hidden !important;
}
[data-category-section] .dish-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 26px 52px rgba(0,0,0,.15) !important;
}

/* PHOTO 4:3 plein cadre, dominante */
[data-category-section] .dish-card .media {
  aspect-ratio: 4 / 3 !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 0 !important;
  background: #f0f0f0 !important;
}
[data-category-section] .dish-card .media img {
  width: 100% !important; height: 100% !important; object-fit: cover !important;
  border-radius: 0 !important;
}

/* BADGE GLASSY en overlay sur la photo (coin haut gauche) */
[data-category-section] .dish-card .pop-badge {
  position: absolute !important;
  top: 12px !important; left: 12px !important;
  z-index: 3 !important;
  order: 0 !important;
  background: rgba(255,255,255,.92) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  backdrop-filter: blur(8px) !important;
  color: #1a1a1a !important;
  border-radius: 999px !important;
  padding: 5px 12px !important;
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.12) !important;
}

/* CONTENU resserre, moins de texte */
/* ===== SOURCE DE VERITE CARTES MOBILE — alignement gauche + hauteur uniforme (2026-06-14) ===== */
[data-category-section] .dish-card .dish-main {
  padding: 14px 18px 6px !important;
  gap: 3px !important;
  flex: 1 1 auto !important;
  align-self: stretch !important;
  width: 100% !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  min-height: 104px !important;
}

/* ════════ ISOLATION ANTI-FUITE (2026-06-14) ════════
   L'admin (restaurant_dashboard.php) utilise un ANCIEN design .dish-card (grille,
   vignette 88px) qui DOIT rester. Sur le menu, on verrouille align-self:stretch pour
   qu'aucune propriete de centrage de l'ancien design ne fuie sur les cartes
   (c'est ce qui avait centre les titres). NE PAS SUPPRIMER. */
[data-category-section] .dish-card,
[data-category-section] .dish-card .media,
[data-category-section] .dish-card .dish-main,
[data-category-section] .dish-card .dish-side {
  align-self: stretch !important;
}
[data-category-section] .dish-card .dish-name {
  font-size: 1.12rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.25 !important;
  color: var(--theme-text-on-inner, #1a1a1a) !important;
  text-transform: none !important;
}
/* Description: 1 ligne, discrete */
[data-category-section] .dish-card .dish-desc {
  font-size: 0.85rem !important;
  line-height: 1.45 !important;
  color: var(--theme-text-muted-on-inner, #8a8a8a) !important;
  margin: 3px 0 0 !important;
  -webkit-line-clamp: 1 !important;
}
/* Note: tres discrete, doree, juste l'essentiel */
[data-category-section] .dish-card .dish-signal-row { margin-top: 6px !important; }
[data-category-section] .dish-card .dish-rating-pill {
  color: #E0A100 !important; font-size: 0.78rem !important; font-weight: 700 !important;
  background: none !important; border: 0 !important; padding: 0 !important;
}

/* PIED: prix DOMINANT a gauche + bouton + a droite, meme ligne */
[data-category-section] .dish-card .dish-side {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 4px 18px 16px !important;
  gap: 12px !important;
}
[data-category-section] .dish-card .price-pill {
  background: none !important; border: 0 !important; box-shadow: none !important; padding: 0 !important;
  min-height: 0 !important;
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em !important;
  color: var(--theme-text-on-inner, #1a1a1a) !important;
  font-variant-numeric: tabular-nums !important;
  line-height: 1 !important;
}
[data-category-section] .dish-card .dish-open-hint {
  position: relative !important;
  width: 46px !important; height: 46px !important; min-width: 46px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background: var(--primary-color, #1a1a1a) !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.18) !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  font-size: 0 !important; text-indent: -9999px !important; overflow: hidden !important;
  transition: transform .16s ease, filter .18s ease !important;
}
[data-category-section] .dish-card .dish-open-hint::before { content: "" !important; display: none !important; }
[data-category-section] .dish-card .dish-open-hint::after {
  content: "+" !important; position: absolute !important; inset: 0 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-size: 1.6rem !important; font-weight: 300 !important; text-indent: 0 !important; line-height: 1 !important;
}
[data-category-section] .dish-card:hover .dish-open-hint { transform: scale(1.1) !important; filter: brightness(1.1) !important; }

/* Dual pricing: garder a gauche, compact */
[data-category-section] .dish-card .dish-side.dual-pricing { align-items: center !important; }
[data-category-section] .dish-card .dual-price-amount { font-size: 1.1rem !important; font-weight: 800 !important; color: #1a1a1a !important; letter-spacing: -.04em !important; }
[data-category-section] .dish-card .dual-price-badge { color: #9a9a9a !important; font-size: .58rem !important; }

/* ═══ FIN SACLAY PUB ═══ */


/* ═══ SACLAY EMOTION ═══ */
/* Photo star + chaleur + appetit. Zero changement de structure. */

/* Fond carte = fond intérieur du thème (suit les couleurs admin, desktop + mobile) */
[data-category-section] .dish-card {
  background: var(--theme-inner-bg) !important;
  border: 1px solid var(--theme-border-on-inner, rgba(45,32,20,.08)) !important;
  box-shadow: 0 2px 16px rgba(45,32,20,.07) !important;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease !important;
}
[data-category-section] .dish-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 28px 56px rgba(45,32,20,.17) !important;
}
[data-category-section] .dish-card:active { transform: translateY(-2px) scale(.992) !important; transition-duration:.09s !important; }

/* PHOTO = STAR : 4:3 dominante, saturation boostee (plat qui pop), zoom soyeux */
[data-category-section] .dish-card .media {
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
}
[data-category-section] .dish-card .media img {
  filter: saturate(1.08) contrast(1.03) !important;
  transition: transform .7s cubic-bezier(.22,1,.36,1), filter .4s ease !important;
}
[data-category-section] .dish-card:hover .media img {
  transform: scale(1.06) !important;
  filter: saturate(1.14) contrast(1.05) !important;
}
/* Degrade bas tres subtil = profondeur appetissante */
[data-category-section] .dish-card .media::after {
  content: "" !important; position: absolute !important; inset: 0 !important;
  background: linear-gradient(to bottom, transparent 62%, rgba(30,18,8,.16) 100%) !important;
  pointer-events: none !important; z-index: 1 !important;
}

/* BADGE: casse naturelle, glassy chaud aerien */
[data-category-section] .dish-card .pop-badge {
  text-transform: none !important;
  background: rgba(255,251,244,.86) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.3) !important;
  backdrop-filter: blur(12px) saturate(1.3) !important;
  color: #3a2c1a !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  padding: 5px 13px !important;
  box-shadow: 0 4px 14px rgba(40,25,10,.12) !important;
  top: 13px !important; left: 13px !important;
}

/* BOUTON +: encre chaude pleine (PAS bleu), dominant comme avant */
[data-category-section] .dish-card .dish-open-hint {
  width: 46px !important; height: 46px !important; min-width: 46px !important;
  background: #241d15 !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(36,29,21,.26) !important;
}
[data-category-section] .dish-card .dish-open-hint::after {
  content: "+" !important; color: #fff !important; font-weight: 300 !important; font-size: 1.6rem !important;
}
[data-category-section] .dish-card:hover .dish-open-hint {
  transform: scale(1.1) !important;
  background: #166534 !important; /* leger vert appetit au survol */
  box-shadow: 0 10px 24px rgba(22,101,52,.3) !important;
}

/* PRIX: visible mais elegant, encre chaude */
[data-category-section] .dish-card .price-pill {
  font-size: 1.42rem !important; font-weight: 800 !important; letter-spacing: -0.05em !important;
  color: var(--theme-text-on-inner, #1c1510) !important;
}

/* Titre + desc: tons chauds */
[data-category-section] .dish-card .dish-name { color: var(--theme-text-on-inner, #1c1510) !important; font-weight: 700 !important; }
[data-category-section] .dish-card .dish-desc { color: var(--theme-text-muted-on-inner, #968b7c) !important; -webkit-line-clamp: 1 !important; }

/* Note doree discrete */
[data-category-section] .dish-card .dish-rating-pill {
  color: #C8920A !important; font-size: 0.78rem !important; font-weight: 700 !important;
  background: none !important; border: 0 !important; padding: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-category-section] .dish-card,
  [data-category-section] .dish-card .media img { transition: none !important; }
}

/* ═══ FIN SACLAY EMOTION ═══ */


/* ═══ SACLAY UNIFY ═══ */

/* DOUBLE TARIF ultra-compact (Option A) : 2 lignes minuscules, labels dores */
[data-category-section] .dish-card .dish-side.dual-pricing {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 18px 18px !important;
}
[data-category-section] .dish-card .dual-price-card {
  display: flex !important; flex-direction: column !important; gap: 1px !important;
  background: none !important; border: 0 !important; padding: 0 !important;
}
[data-category-section] .dish-card .dual-price-row {
  display: inline-flex !important; align-items: baseline !important; gap: 7px !important;
  padding: 0 !important; border: 0 !important; background: none !important; margin: 0 !important;
}
[data-category-section] .dish-card .dual-price-badge {
  text-transform: lowercase !important;
  font-size: 0.62rem !important; font-weight: 600 !important; letter-spacing: 0.02em !important;
  color: #C8920A !important; background: none !important; padding: 0 !important;
  min-width: 28px !important; box-shadow: none !important;
}
[data-category-section] .dish-card .dual-price-amount {
  font-size: 1.08rem !important; font-weight: 800 !important; letter-spacing: -0.04em !important;
  color: var(--theme-text-on-inner, #1c1510) !important; font-variant-numeric: tabular-nums !important; line-height: 1.15 !important;
}
[data-category-section] .dish-card .dual-price-copy { display: none !important; }

/* FALLBACK PHOTO PREMIUM (plus de rectangle gris) — suit le thème */
[data-category-section] .dish-card .media-empty {
  background: color-mix(in srgb, var(--theme-inner-bg) 88%, var(--theme-text-on-inner) 12%) !important;
  color: transparent !important;
  font-size: 0 !important;
  position: relative !important;
  width: 100% !important; height: 100% !important;
}
[data-category-section] .dish-card .media-empty::before {
  content: "\1F37D" !important;
  font-size: 2.4rem !important;
  opacity: 0.42 !important;
  position: absolute !important; inset: 0 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  filter: grayscale(.2) !important;
}

/* ═══ FIN SACLAY UNIFY ═══ */


/* ═══ SACLAY DUAL V1 ═══ */
/* Double tarif sur UNE ligne: "17,90 € midi · 24,90 € soir" */
[data-category-section] .dish-card .dish-side.dual-pricing {
  flex-direction: row !important; align-items: center !important;
  justify-content: space-between !important; padding: 12px 18px 18px !important;
}
[data-category-section] .dish-card .dual-price-card {
  display: flex !important; flex-direction: row !important; flex-wrap: wrap !important;
  align-items: baseline !important; gap: 0 !important;
  background: none !important; border: 0 !important; padding: 0 !important;
}
[data-category-section] .dish-card .dual-price-row {
  display: inline-flex !important; align-items: baseline !important; gap: 4px !important;
  padding: 0 !important; border: 0 !important; background: none !important; margin: 0 !important;
}
[data-category-section] .dish-card .dual-price-row + .dual-price-row::before {
  content: "\00B7" !important; color: #cdbfa6 !important; margin: 0 9px !important; font-weight: 700 !important;
}
[data-category-section] .dish-card .dual-price-amount {
  order: 1 !important;
  font-size: 1.0rem !important; font-weight: 800 !important; letter-spacing: -0.04em !important;
  color: #1c1510 !important; font-variant-numeric: tabular-nums !important;
}
[data-category-section] .dish-card .dual-price-badge {
  order: 2 !important;
  text-transform: lowercase !important; font-size: 0.7rem !important; font-weight: 600 !important;
  letter-spacing: 0.01em !important; color: #C8920A !important;
  background: none !important; padding: 0 !important; min-width: 0 !important; box-shadow: none !important;
}
[data-category-section] .dish-card .dual-price-copy { display: none !important; }
/* ═══ FIN SACLAY DUAL V1 ═══ */


/* ═══ PDP FINAL ═══ */
/* Fiche produit la plus belle de l'app -- Uber Eats premium */

#dish-sheet.dish-sheet { border-radius:28px 28px 0 0 !important; background:#fffdf9 !important; max-height:96vh !important; overflow:hidden !important; display:flex !important; flex-direction:column !important; }
#sheet-overlay,#dish-sheet-overlay { backdrop-filter:blur(10px) !important; background:rgba(20,14,8,.5) !important; }
.dish-sheet .sheet-handle { width:42px !important; height:5px !important; border-radius:999px !important; background:rgba(255,255,255,.7) !important; position:absolute !important; left:50% !important; transform:translateX(-50%) !important; top:10px !important; z-index:6 !important; }

/* croix flottante glassy */
.dish-sheet .dish-sheet-head { position:absolute !important; top:14px !important; right:14px !important; z-index:6 !important; padding:0 !important; border:0 !important; background:none !important; }
.dish-sheet .dish-sheet-head h3 { display:none !important; }
.dish-sheet .sheet-close { width:40px !important; height:40px !important; padding:0 !important; border:0 !important; border-radius:50% !important; background:rgba(255,255,255,.92) !important; -webkit-backdrop-filter:blur(8px) !important; backdrop-filter:blur(8px) !important; color:#1c1510 !important; font-size:0 !important; box-shadow:0 4px 14px rgba(0,0,0,.2) !important; cursor:pointer !important; }
.dish-sheet .sheet-close::after { content:"\00D7" !important; font-size:1.6rem !important; line-height:1 !important; font-weight:400 !important; }

.dish-sheet .dish-sheet-body { padding:0 !important; flex:1 !important; overflow-y:auto !important; position:relative !important; }

/* HERO XXL */
.dish-sheet .sheet-top-premium { display:block !important; margin:0 !important; }
.dish-sheet .sheet-visual-col,.dish-sheet .sheet-image-frame { margin:0 !important; border-radius:0 !important; overflow:hidden !important; position:relative !important; }
.dish-sheet .sheet-image { width:100% !important; aspect-ratio:4/3 !important; max-height:52vh !important; object-fit:cover !important; border-radius:0 !important; display:block !important; filter:saturate(1.1) contrast(1.04) !important; }
.dish-sheet .sheet-image-frame::after { content:"" !important; position:absolute !important; inset:0 !important; background:linear-gradient(to bottom,rgba(0,0,0,.12) 0%,transparent 22%,transparent 65%,rgba(28,16,6,.34) 100%) !important; pointer-events:none !important; }
.dish-sheet .sheet-image.empty { aspect-ratio:4/3 !important; background:linear-gradient(135deg,#f7efe2,#ecdfca) !important; }
.dish-sheet .sheet-visual-note { display:none !important; }

/* TITRE / PRIX ULTRA-DOMINANT / DESC */
.dish-sheet .sheet-main-card { padding:22px 22px 6px !important; background:transparent !important; border:0 !important; box-shadow:none !important; }
.dish-sheet .sheet-main-kicker { color:#C8920A !important; font-size:.68rem !important; font-weight:800 !important; letter-spacing:.13em !important; text-transform:uppercase !important; margin-bottom:8px !important; }
.dish-sheet .sheet-main-card h3 { font-size:clamp(1.7rem,7vw,2.3rem) !important; font-weight:800 !important; letter-spacing:-.05em !important; line-height:1.08 !important; color:#1c1510 !important; margin:0 0 14px !important; text-transform:none !important; }
.dish-sheet .sheet-meta-row { display:flex !important; align-items:center !important; gap:10px !important; flex-wrap:wrap !important; margin-bottom:14px !important; }
.dish-sheet .sheet-price { font-size:2rem !important; font-weight:800 !important; letter-spacing:-.06em !important; color:#1c1510 !important; font-variant-numeric:tabular-nums !important; line-height:1 !important; }
.dish-sheet .sheet-meta-pill { display:none !important; }
.dish-sheet .sheet-desc { color:#6b5d49 !important; font-size:.96rem !important; line-height:1.6 !important; margin:0 0 4px !important; }
.dish-sheet .sheet-service-note { display:none !important; }

/* SECTIONS sans bordure-bloc */
.dish-sheet .sheet-block-card,.dish-sheet .sheet-block { background:transparent !important; border:0 !important; border-radius:0 !important; box-shadow:none !important; margin:0 !important; padding:18px 22px 2px !important; }
.dish-sheet .sheet-section-head { margin-bottom:13px !important; border:0 !important; padding:0 !important; display:flex !important; align-items:center !important; gap:10px !important; }
.dish-sheet .sheet-section-head h4,.dish-sheet .opt-group-head h4 { font-size:1.1rem !important; font-weight:800 !important; letter-spacing:-.03em !important; color:#1c1510 !important; margin:0 !important; }
.dish-sheet .sheet-section-tag { display:none !important; }

/* OPTIONS */
.dish-sheet .opt-group { padding:20px 22px 2px !important; }
.dish-sheet .opt-group-head { display:flex !important; align-items:center !important; gap:10px !important; margin-bottom:13px !important; }
.dish-sheet .req-badge { background:#fef3c7 !important; color:#b45309 !important; border-radius:999px !important; font-size:.62rem !important; font-weight:800 !important; padding:3px 9px !important; text-transform:uppercase !important; letter-spacing:.04em !important; }

/* CHIPS (sauces + crudites gratuites) */
.dish-sheet .opt-chips { display:flex !important; flex-wrap:wrap !important; gap:9px !important; }
.dish-sheet .supp-row.opt-chip { display:inline-flex !important; align-items:center !important; justify-content:flex-start !important; width:auto !important; margin:0 !important; padding:11px 18px !important; border-radius:999px !important; background:#fff !important; border:1.5px solid rgba(40,25,10,.13) !important; cursor:pointer !important; box-shadow:none !important; transition:background .15s ease,border-color .15s ease,transform .12s ease !important; }
.dish-sheet .supp-row.opt-chip:active { transform:scale(.96) !important; }
.dish-sheet .supp-row.opt-chip input { position:absolute !important; opacity:0 !important; width:0 !important; height:0 !important; }
.dish-sheet .supp-row.opt-chip::before { display:none !important; }
.dish-sheet .opt-chip-label { font-size:.93rem !important; font-weight:600 !important; color:#1c1510 !important; }
.dish-sheet .supp-row.opt-chip.is-selected { background:#15803d !important; border-color:#15803d !important; }
.dish-sheet .supp-row.opt-chip.is-selected .opt-chip-label { color:#fff !important; }

/* CARTES (supplements payants) - minimaliste: nom + prix + bouton + */
.dish-sheet .opt-cards { display:grid !important; grid-template-columns:1fr !important; gap:10px !important; }
.dish-sheet .supp-row.opt-card { display:flex !important; align-items:center !important; justify-content:space-between !important; gap:12px !important; width:auto !important; margin:0 !important; padding:14px 16px !important; border-radius:16px !important; background:#fff !important; border:1.5px solid rgba(40,25,10,.1) !important; cursor:pointer !important; box-shadow:none !important; transition:border-color .15s ease,background .15s ease,transform .12s ease !important; }
.dish-sheet .supp-row.opt-card:active { transform:scale(.99) !important; }
.dish-sheet .supp-row.opt-card input { position:absolute !important; opacity:0 !important; width:0 !important; height:0 !important; }
.dish-sheet .supp-row.opt-card::before { display:none !important; }
.dish-sheet .opt-card-main { display:flex !important; flex-direction:column !important; gap:2px !important; min-width:0 !important; }
.dish-sheet .opt-card-name { font-size:.96rem !important; font-weight:600 !important; color:#1c1510 !important; }
.dish-sheet .opt-card-price { font-size:.82rem !important; font-weight:700 !important; color:#9a8f7e !important; }
.dish-sheet .opt-card-add { flex:0 0 auto !important; width:34px !important; height:34px !important; border-radius:50% !important; background:#eaf5ec !important; color:#15803d !important; display:inline-flex !important; align-items:center !important; justify-content:center !important; font-size:1.45rem !important; font-weight:300 !important; line-height:1 !important; transition:all .15s ease !important; }
.dish-sheet .supp-row.opt-card.is-selected { border-color:#15803d !important; background:#f4faf5 !important; }
.dish-sheet .supp-row.opt-card.is-selected .opt-card-add { background:#15803d !important; color:transparent !important; font-size:0 !important; }
.dish-sheet .supp-row.opt-card.is-selected .opt-card-add::after { content:"\2713" !important; color:#fff !important; font-size:15px !important; font-weight:800 !important; }
.dish-sheet .supp-row.opt-card.is-selected .opt-card-price { color:#15803d !important; }

/* PRICING midi/soir -> chips-cards */
.dish-sheet .pricing-block { padding:18px 22px 2px !important; }
.dish-sheet .pricing-choice-group { display:grid !important; gap:10px !important; }
.dish-sheet .pricing-choice { display:flex !important; flex-direction:column !important; align-items:flex-start !important; gap:4px !important; padding:14px 16px !important; border-radius:16px !important; border:1.5px solid rgba(40,25,10,.1) !important; background:#fff !important; cursor:pointer !important; }
.dish-sheet .pricing-choice input { position:absolute !important; opacity:0 !important; }
.dish-sheet .pricing-choice.is-selected { border-color:#15803d !important; background:#f4faf5 !important; box-shadow:none !important; }
.dish-sheet .pricing-choice-badge { order:1 !important; background:#241d15 !important; color:#fff !important; border-radius:999px !important; font-size:.64rem !important; font-weight:800 !important; min-width:50px !important; min-height:26px !important; display:inline-flex !important; align-items:center !important; justify-content:center !important; }
.dish-sheet .pricing-choice-price { order:2 !important; margin-left:0 !important; margin-top:5px !important; font-size:1.15rem !important; font-weight:900 !important; color:#1c1510 !important; white-space:nowrap !important; }
.dish-sheet .pricing-choice-copy { order:3 !important; margin-top:2px !important; }
.dish-sheet .pricing-choice-copy strong { color:#1c1510 !important; font-weight:700 !important; }
.dish-sheet .pricing-choice-copy small { color:#9a8f7e !important; }

/* ALLERGENES = tags discrets */
.dish-sheet .allergen-list { display:flex !important; flex-wrap:wrap !important; gap:6px !important; }
.dish-sheet .allergen-pill { background:transparent !important; border:0 !important; color:#9a8f7e !important; font-size:.8rem !important; font-weight:500 !important; padding:0 !important; }
.dish-sheet .allergen-pill:not(:last-child)::after { content:" \00B7" !important; margin-left:6px !important; color:#cdbfa6 !important; }

/* COMPLETEZ VOTRE MENU = carrousel horizontal */
.dish-sheet .pairing-strip { padding:18px 0 6px 22px !important; background:transparent !important; border:0 !important; }
.dish-sheet .pairing-head { padding-right:22px !important; }
.dish-sheet .pairing-head h4 { font-size:1.1rem !important; font-weight:800 !important; color:#1c1510 !important; letter-spacing:-.03em !important; }
.dish-sheet .pairing-head p { font-size:.82rem !important; color:#9a8f7e !important; }
.dish-sheet .pairing-head-badge { display:none !important; }
.dish-sheet .pairing-grid { display:flex !important; gap:12px !important; overflow-x:auto !important; scroll-snap-type:x mandatory !important; -webkit-overflow-scrolling:touch !important; padding:12px 22px 6px 0 !important; margin:0 !important; scrollbar-width:none !important; }
.dish-sheet .pairing-grid::-webkit-scrollbar { display:none !important; }
.dish-sheet .pairing-card { flex:0 0 64% !important; max-width:240px !important; scroll-snap-align:start !important; display:flex !important; flex-direction:column !important; align-items:stretch !important; text-align:left !important; padding:0 !important; border:1px solid rgba(40,25,10,.08) !important; border-radius:18px !important; background:#fff !important; overflow:hidden !important; cursor:pointer !important; transition:transform .18s ease,box-shadow .18s ease !important; }
.dish-sheet .pairing-card:hover { transform:translateY(-3px) !important; box-shadow:0 16px 34px rgba(45,32,20,.14) !important; }
.dish-sheet .pairing-media { width:100% !important; aspect-ratio:16/10 !important; background:linear-gradient(135deg,#f7efe2,#ecdfca) !important; display:flex !important; align-items:center !important; justify-content:center !important; color:#c2a878 !important; font-size:1.6rem !important; }
.dish-sheet .pairing-media img { width:100% !important; height:100% !important; object-fit:cover !important; }
.dish-sheet .pairing-copy { padding:12px 14px 4px !important; display:flex !important; flex-direction:column !important; gap:3px !important; }
.dish-sheet .pairing-copy em { font-size:.6rem !important; font-weight:700 !important; letter-spacing:.07em !important; text-transform:uppercase !important; color:#C8920A !important; font-style:normal !important; }
.dish-sheet .pairing-copy strong { font-size:.95rem !important; font-weight:700 !important; color:#1c1510 !important; }
.dish-sheet .pairing-copy small { font-size:1rem !important; font-weight:800 !important; color:#1c1510 !important; }
.dish-sheet .pairing-action { padding:6px 14px 14px !important; color:#15803d !important; font-weight:700 !important; font-size:.82rem !important; }

/* FOOTER STICKY + CTA ROI */
.dish-sheet .dish-sheet-foot { background:rgba(255,253,249,.97) !important; -webkit-backdrop-filter:blur(16px) !important; backdrop-filter:blur(16px) !important; border-top:1px solid rgba(40,25,10,.08) !important; padding:14px 22px calc(16px + env(safe-area-inset-bottom,0px)) !important; display:flex !important; flex-direction:column !important; gap:10px !important; box-shadow:0 -8px 28px rgba(45,32,20,.08) !important; }
.dish-sheet .sheet-summary { color:#9a8f7e !important; font-size:.8rem !important; }
.dish-sheet .sheet-total { font-size:1.4rem !important; font-weight:800 !important; letter-spacing:-.03em !important; color:#1c1510 !important; }
.dish-sheet .sheet-actions { display:flex !important; gap:10px !important; align-items:stretch !important; }
.dish-sheet .sheet-actions .btn-primary {
  flex:1 !important;
  background:linear-gradient(135deg,#1aa34a 0%,#15803d 100%) !important;
  border:0 !important; color:#fff !important; border-radius:999px !important;
  font-weight:800 !important; font-size:1.1rem !important; letter-spacing:-.01em !important; min-height:60px !important;
  box-shadow:0 12px 30px rgba(21,128,61,.36) !important;
  transition:transform .16s ease, box-shadow .2s ease, filter .2s ease !important;
}
.dish-sheet .sheet-actions .btn-primary:hover { transform:translateY(-2px) !important; filter:brightness(1.05) !important; box-shadow:0 18px 40px rgba(21,128,61,.44) !important; }
.dish-sheet .sheet-actions .btn-primary:active { transform:translateY(0) scale(.99) !important; }
.dish-sheet .sheet-actions .btn-outline { flex:1 !important; background:#fff !important; border:1.5px solid rgba(40,25,10,.16) !important; color:#1c1510 !important; border-radius:999px !important; font-weight:700 !important; min-height:60px !important; }
.dish-sheet .sheet-actions .btn-ghost { background:transparent !important; border:0 !important; color:#9a8f7e !important; border-radius:999px !important; font-weight:600 !important; min-height:60px !important; padding:0 14px !important; flex:0 0 auto !important; }

@media (min-width:760px){ #dish-sheet.dish-sheet { max-width:620px !important; margin-left:auto !important; margin-right:auto !important; border-radius:28px !important; max-height:92vh !important; } .dish-sheet .sheet-image { max-height:46vh !important; } }

/* ═══ FIN PDP FINAL ═══ */


/* ═══ PAIRING FIX ═══ */
/* Image plus grande et plus visible */
.dish-sheet .pairing-card { flex:0 0 66% !important; max-width:250px !important; }
.dish-sheet .pairing-media { aspect-ratio:1/1 !important; width:100% !important; }
.dish-sheet .pairing-media img { width:100% !important; height:100% !important; object-fit:cover !important; object-position:center !important; }

/* Bouton "Voir" plus petit et discret (plus de gros bloc) */
.dish-sheet .pairing-action {
  background:none !important; border:0 !important; box-shadow:none !important;
  width:auto !important; min-height:0 !important; border-radius:0 !important;
  padding:2px 14px 12px !important; margin:0 !important;
  color:#15803d !important; font-size:.74rem !important; font-weight:700 !important;
  align-self:flex-start !important; display:inline-flex !important; align-items:center !important; gap:4px !important;
}
.dish-sheet .pairing-action::after { content:"\2192" !important; font-weight:700 !important; }
/* ═══ FIN PAIRING FIX ═══ */


/* ═══ POLISH FINAL ═══ */

/* 1. PRIX ENCRE PARTOUT (zero bleu) */
.dish-sheet .sheet-price,
.dish-sheet .sheet-total,
.dish-sheet .opt-card-price,
.dish-sheet .pricing-choice-price,
.dish-sheet .pairing-copy small,
.dish-sheet .dual-price-amount { color:#1c1510 !important; }
[data-category-section] .dish-card .price-pill,
[data-category-section] .dish-card .dual-price-amount { color:#1c1510 !important; }

/* 2. HERO photo plus grande */
.dish-sheet .sheet-image { aspect-ratio:4/3 !important; min-height:40vh !important; max-height:58vh !important; }
@media (min-width:760px){ .dish-sheet .sheet-image { min-height:0 !important; max-height:48vh !important; } }

/* 3. CTA COMMANDER -- impact maximal */
.dish-sheet .sheet-actions .btn-primary {
  min-height:64px !important;
  font-size:1.18rem !important; font-weight:900 !important; letter-spacing:-.01em !important;
  background:linear-gradient(135deg,#1aa34a 0%,#138a3e 100%) !important;
  box-shadow:0 16px 40px rgba(20,120,58,.44) !important;
}
.dish-sheet .sheet-actions .btn-primary:hover { transform:translateY(-3px) !important; box-shadow:0 22px 50px rgba(20,120,58,.52) !important; filter:brightness(1.06) !important; }
.dish-sheet .sheet-total { font-size:1.5rem !important; }

/* 4. CARTES "Completez votre menu" plus fortes */
.dish-sheet .pairing-card { flex:0 0 70% !important; max-width:268px !important; border:0 !important; box-shadow:0 8px 24px rgba(45,32,20,.12) !important; border-radius:20px !important; }
.dish-sheet .pairing-card:hover { box-shadow:0 20px 44px rgba(45,32,20,.18) !important; }
.dish-sheet .pairing-media { aspect-ratio:1/1 !important; }
.dish-sheet .pairing-copy { padding:13px 15px 4px !important; }
.dish-sheet .pairing-copy strong { font-size:1.02rem !important; }
.dish-sheet .pairing-copy small { font-size:1.05rem !important; font-weight:800 !important; }
.dish-sheet .pairing-copy em { color:#C8920A !important; }

/* 5. ESPACEMENTS resserres (moins de vide) */
.dish-sheet .sheet-main-card { padding:20px 22px 4px !important; }
.dish-sheet .sheet-block-card,.dish-sheet .sheet-block,.dish-sheet .opt-group { padding:16px 22px 2px !important; }
.dish-sheet .opt-group-head,.dish-sheet .sheet-section-head { margin-bottom:11px !important; }
.dish-sheet .sheet-desc { margin-bottom:2px !important; }
.dish-sheet .dish-sheet-body > *:last-child { padding-bottom:14px !important; }

/* ═══ FIN POLISH FINAL ═══ */


/* ═══ CROSSSELL PREMIUM ═══ */
.dish-sheet .pairing-strip { padding:20px 0 8px 22px !important; }
.dish-sheet .pairing-head { padding-right:22px !important; margin-bottom:4px !important; }
.dish-sheet .pairing-head h4 { font-size:1.15rem !important; font-weight:800 !important; letter-spacing:-.03em !important; color:#1c1510 !important; }
.dish-sheet .pairing-head p { font-size:.84rem !important; color:#9a8f7e !important; line-height:1.45 !important; }
.dish-sheet .pairing-head-badge { display:none !important; }

/* Carrousel horizontal swipeable */
.dish-sheet .pairing-grid {
  display:flex !important; gap:14px !important; overflow-x:auto !important;
  scroll-snap-type:x mandatory !important; -webkit-overflow-scrolling:touch !important;
  padding:14px 22px 8px 0 !important; margin:0 !important; scrollbar-width:none !important;
}
.dish-sheet .pairing-grid::-webkit-scrollbar { display:none !important; }

/* Grande carte produit */
.dish-sheet .pairing-card {
  flex:0 0 78% !important; max-width:300px !important; scroll-snap-align:start !important;
  display:flex !important; flex-direction:column !important; align-items:stretch !important; text-align:left !important;
  padding:0 !important; border:0 !important; border-radius:20px !important; background:#fff !important; overflow:hidden !important;
  box-shadow:0 8px 26px rgba(45,32,20,.13) !important; cursor:pointer !important;
  transition:transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s ease !important;
}
.dish-sheet .pairing-card:hover { transform:translateY(-5px) !important; box-shadow:0 24px 50px rgba(45,32,20,.2) !important; }
.dish-sheet .pairing-card:active { transform:translateY(-2px) scale(.99) !important; }

/* IMAGE dominante (haute, gourmande) */
.dish-sheet .pairing-media { width:100% !important; aspect-ratio:4/3 !important; overflow:hidden !important; background:linear-gradient(135deg,#f7efe2,#ecdfca) !important; display:block !important; }
.dish-sheet .pairing-media img { width:100% !important; height:100% !important; object-fit:cover !important; display:block !important; filter:saturate(1.08) contrast(1.03) !important; transition:transform .6s cubic-bezier(.22,1,.36,1) !important; }
.dish-sheet .pairing-card:hover .pairing-media img { transform:scale(1.07) !important; }
.dish-sheet .pairing-media-empty { display:block !important; width:100% !important; height:100% !important; }

/* COPY */
.dish-sheet .pairing-copy { padding:14px 16px 16px !important; display:flex !important; flex-direction:column !important; gap:4px !important; }
.dish-sheet .pairing-copy em { font-size:.6rem !important; font-weight:700 !important; letter-spacing:.08em !important; text-transform:uppercase !important; color:#C8920A !important; font-style:normal !important; }
.dish-sheet .pairing-copy strong { font-size:1.06rem !important; font-weight:700 !important; color:#1c1510 !important; line-height:1.25 !important; }
.dish-sheet .pairing-foot { display:flex !important; align-items:center !important; justify-content:space-between !important; gap:10px !important; margin-top:8px !important; }
.dish-sheet .pairing-foot small { font-size:1.15rem !important; font-weight:800 !important; color:#1c1510 !important; letter-spacing:-.03em !important; }

/* BOUTON PANIER "Ajouter" */
.dish-sheet .pairing-add {
  display:inline-flex !important; align-items:center !important; gap:6px !important;
  background:#15803d !important; color:#fff !important; border-radius:999px !important;
  padding:9px 15px !important; font-size:.82rem !important; font-weight:700 !important;
  box-shadow:0 6px 16px rgba(21,128,61,.3) !important; transition:transform .15s ease, filter .15s ease !important; white-space:nowrap !important;
}
.dish-sheet .pairing-add svg { width:15px !important; height:15px !important; flex:0 0 auto !important; }
.dish-sheet .pairing-card:hover .pairing-add { filter:brightness(1.07) !important; }
.dish-sheet .pairing-card:active .pairing-add { transform:scale(.96) !important; }

/* neutralise ancien .pairing-action si present */
.dish-sheet .pairing-action { display:none !important; }

@media (min-width:760px){ .dish-sheet .pairing-card { flex-basis:48% !important; } }

/* ═══ FIN CROSSSELL PREMIUM ═══ */


/* ═══ BIGPHOTO ═══ */
/* Cartes cross-sell larges + image carree dominante */
.dish-sheet .pairing-grid { gap:14px !important; padding:14px 22px 8px 0 !important; }
.dish-sheet .pairing-card { flex:0 0 84% !important; max-width:340px !important; }
.dish-sheet .pairing-media { aspect-ratio:1/1 !important; width:100% !important; }
.dish-sheet .pairing-media img { width:100% !important; height:100% !important; object-fit:cover !important; }
@media (min-width:760px){ .dish-sheet .pairing-card { flex-basis:52% !important; } }
/* ═══ FIN BIGPHOTO ═══ */



/* ═══ POLISH2 ═══ */

/* CROSS-SELL: image dominante (~70%) + vrai bouton Ajouter */
.dish-sheet .pairing-grid { gap:14px !important; padding:14px 22px 8px 0 !important; }
.dish-sheet .pairing-card {
  position:relative !important; flex:0 0 72% !important; max-width:300px !important;
  display:flex !important; flex-direction:column !important; padding:0 !important; overflow:hidden !important;
  border:0 !important; border-radius:20px !important; background:#fff !important;
  box-shadow:0 8px 26px rgba(45,32,20,.13) !important;
  transition:transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s ease !important;
}
.dish-sheet .pairing-card:hover { transform:translateY(-5px) !important; box-shadow:0 24px 50px rgba(45,32,20,.2) !important; }
.dish-sheet .pairing-media { width:100% !important; aspect-ratio:4/3 !important; overflow:hidden !important; background:linear-gradient(135deg,#f7efe2,#ecdfca) !important; }
.dish-sheet .pairing-media img { width:100% !important; height:100% !important; object-fit:cover !important; display:block !important; filter:saturate(1.08) contrast(1.03) !important; transition:transform .6s cubic-bezier(.22,1,.36,1) !important; }
.dish-sheet .pairing-card:hover .pairing-media img { transform:scale(1.07) !important; }
.dish-sheet .pairing-media-empty { display:block !important; width:100% !important; height:100% !important; }
.dish-sheet .pairing-copy { display:flex !important; align-items:baseline !important; justify-content:space-between !important; gap:8px !important; padding:11px 14px 4px !important; }
.dish-sheet .pairing-copy strong { font-size:.96rem !important; font-weight:700 !important; color:#1c1510 !important; line-height:1.2 !important; }
.dish-sheet .pairing-copy small { font-size:1rem !important; font-weight:800 !important; color:#1c1510 !important; white-space:nowrap !important; }
.dish-sheet .pairing-add {
  position:static !important; width:auto !important; height:auto !important; border-radius:999px !important;
  margin:8px 14px 14px !important; padding:11px 14px !important;
  display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:7px !important;
  background:#15803d !important; color:#fff !important; font-size:.85rem !important; font-weight:700 !important;
  box-shadow:0 6px 16px rgba(21,128,61,.28) !important; transition:transform .15s ease, filter .15s ease !important;
}
.dish-sheet .pairing-add svg { width:16px !important; height:16px !important; }
.dish-sheet .pairing-card:hover .pairing-add { filter:brightness(1.07) !important; }
.dish-sheet .pairing-add:active { transform:scale(.96) !important; }

/* PANIER -- barre flottante premium */
.guest-cart-bar { padding:15px 22px !important; border-radius:20px !important; background:linear-gradient(135deg,#241d15,#1c1510) !important; box-shadow:0 18px 44px rgba(0,0,0,.34) !important; }
.guest-cart-bar .gc-bar-left { gap:11px !important; font-size:.98rem !important; font-weight:800 !important; }
.guest-cart-bar .gc-bar-left svg { opacity:.95 !important; }
.guest-cart-bar #guest-cart-total { font-size:1.12rem !important; font-weight:900 !important; letter-spacing:-.02em !important; }
.guest-cart-bar .gc-bar-arrow { color:#15803d !important; opacity:1 !important; font-weight:700 !important; }

/* PANIER -- tiroir premium */
.guest-cart-drawer { border-radius:26px 26px 0 0 !important; background:#fffdf9 !important; }
.gc-drawer-head { padding:20px 22px 10px !important; }
.gc-drawer-head h3 { font-size:1.35rem !important; letter-spacing:-.04em !important; }
.gc-list { padding:4px 22px !important; }
.gc-item { padding:14px 0 !important; gap:14px !important; }
.gc-item-main strong { font-size:.98rem !important; font-weight:700 !important; }
.gc-item-main small { font-size:.8rem !important; color:#9a8f7e !important; }
.gc-item-price { font-size:1.02rem !important; letter-spacing:-.02em !important; }
.gc-del { background:transparent !important; color:#c4b8a4 !important; }
.gc-del:hover { background:rgba(220,38,38,.08) !important; color:#dc2626 !important; }
.gc-drawer-foot { padding:16px 22px calc(20px + env(safe-area-inset-bottom,0px)) !important; background:rgba(255,253,249,.98) !important; }
.gc-total-row { margin-bottom:14px !important; }
.gc-total-row span { font-size:.95rem !important; }
.gc-total-row strong { font-size:1.55rem !important; }
.gc-checkout {
  min-height:60px !important; font-size:1.15rem !important; font-weight:800 !important; letter-spacing:-.01em !important;
  background:linear-gradient(135deg,#1aa34a,#138a3e) !important; box-shadow:0 16px 40px rgba(20,120,58,.42) !important;
}
.gc-checkout::before { content:"" !important; }

/* ═══ FIN POLISH2 ═══ */


/* ═══ CROSSSELL FINAL ═══ */
/* Section "Completez votre menu" uniquement. Image carree dominante. */

#dish-sheet .pairing-grid {
  display:flex !important; gap:14px !important; overflow-x:auto !important;
  scroll-snap-type:x mandatory !important; -webkit-overflow-scrolling:touch !important;
  padding:14px 22px 8px 0 !important; margin:0 !important; scrollbar-width:none !important;
}
#dish-sheet .pairing-grid::-webkit-scrollbar { display:none !important; }

#dish-sheet .pairing-card {
  position:relative !important; flex:0 0 76% !important; max-width:300px !important; scroll-snap-align:start !important;
  display:flex !important; flex-direction:column !important; padding:0 !important; margin:0 !important;
  border:0 !important; border-radius:20px !important; background:#fff !important; overflow:hidden !important;
  box-shadow:0 8px 26px rgba(45,32,20,.14) !important; cursor:pointer !important; text-align:left !important;
  transition:transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s ease !important;
}
#dish-sheet .pairing-card:hover { transform:translateY(-5px) !important; box-shadow:0 24px 50px rgba(45,32,20,.2) !important; }

/* IMAGE = carre dominant (jamais un bandeau) */
#dish-sheet .pairing-media {
  width:100% !important; aspect-ratio:1/1 !important; height:auto !important; min-height:0 !important;
  flex:0 0 auto !important; overflow:hidden !important; border-radius:0 !important;
  background:linear-gradient(135deg,#f7efe2,#ecdfca) !important; display:block !important;
}
#dish-sheet .pairing-media img {
  width:100% !important; height:100% !important; object-fit:cover !important; display:block !important;
  border-radius:0 !important; filter:saturate(1.08) contrast(1.03) !important;
  transition:transform .6s cubic-bezier(.22,1,.36,1) !important;
}
#dish-sheet .pairing-card:hover .pairing-media img { transform:scale(1.07) !important; }
#dish-sheet .pairing-media-empty { display:block !important; width:100% !important; height:100% !important; }

/* TEXTE compact : nom + prix */
#dish-sheet .pairing-copy {
  display:flex !important; align-items:baseline !important; justify-content:space-between !important; gap:8px !important;
  padding:11px 14px 2px !important;
}
#dish-sheet .pairing-copy strong { font-size:.95rem !important; font-weight:700 !important; color:#1c1510 !important; line-height:1.2 !important; }
#dish-sheet .pairing-copy small { font-size:1rem !important; font-weight:800 !important; color:#1c1510 !important; white-space:nowrap !important; }
#dish-sheet .pairing-copy em { display:none !important; }

/* BOUTON Ajouter au panier (bas) */
#dish-sheet .pairing-add {
  position:static !important; width:auto !important; height:auto !important;
  margin:8px 14px 14px !important; padding:11px 14px !important; border-radius:999px !important;
  display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:7px !important;
  background:#15803d !important; color:#fff !important; font-size:.84rem !important; font-weight:700 !important;
  box-shadow:0 6px 16px rgba(21,128,61,.28) !important; transition:transform .15s ease, filter .15s ease !important;
}
#dish-sheet .pairing-add svg { width:16px !important; height:16px !important; flex:0 0 auto !important; }
#dish-sheet .pairing-card:hover .pairing-add { filter:brightness(1.07) !important; }
#dish-sheet .pairing-add:active { transform:scale(.96) !important; }

@media (min-width:760px){ #dish-sheet .pairing-card { flex-basis:46% !important; } }

/* ═══ FIN CROSSSELL FINAL ═══ */


/* ═══ DISH ADD BTN ═══ */
/* Vrai composant bouton pilule (zero heritage du rond) */

[data-category-section] .dish-card .dish-side {
  display:flex !important; align-items:center !important; justify-content:space-between !important;
  gap:12px !important; flex-wrap:nowrap !important; flex-direction:row !important;
}

[data-category-section] .dish-card .dish-side .dish-add-btn {
  display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:7px !important;
  width:auto !important; min-width:0 !important; max-width:none !important; height:auto !important;
  flex:0 0 auto !important; white-space:nowrap !important; overflow:visible !important; text-indent:0 !important;
  padding:11px 17px !important; border-radius:999px !important;
  background:#15803d !important; color:#fff !important; font-size:.85rem !important; font-weight:700 !important;
  line-height:1 !important; letter-spacing:0 !important; border:0 !important; cursor:pointer !important;
  box-shadow:0 6px 16px rgba(21,128,61,.28) !important;
  transition:transform .15s ease, filter .18s ease, box-shadow .2s ease !important;
}
[data-category-section] .dish-card .dish-side .dish-add-btn::before,
[data-category-section] .dish-card .dish-side .dish-add-btn::after { content:none !important; display:none !important; }
[data-category-section] .dish-card .dish-side .dish-add-btn svg { width:16px !important; height:16px !important; flex:0 0 auto !important; display:block !important; }
[data-category-section] .dish-card:hover .dish-side .dish-add-btn { transform:translateY(-1px) !important; filter:brightness(1.07) !important; box-shadow:0 10px 22px rgba(21,128,61,.34) !important; }
[data-category-section] .dish-card .dish-side .dish-add-btn:active { transform:scale(.97) !important; }

/* Double tarification : le bouton reste a droite, aligne avec le stack prix */
[data-category-section] .dish-card .dish-side.dual-pricing { align-items:center !important; justify-content:space-between !important; }
[data-category-section] .dish-card .dish-side.dual-pricing .dual-price-card { flex:1 1 auto !important; min-width:0 !important; }
[data-category-section] .dish-card .dish-side.dual-pricing .dish-add-btn { flex:0 0 auto !important; }

/* Prix : ne pas comprimer */
[data-category-section] .dish-card .dish-side .price-pill { flex:0 0 auto !important; white-space:nowrap !important; }

@media (max-width:400px){
  [data-category-section] .dish-card .dish-side .dish-add-btn { padding:10px 14px !important; font-size:.8rem !important; }
}

/* ═══ FIN DISH ADD BTN ═══ */


/* ═══ CART BAR FIX ═══ */

/* BUG: masquer la barre panier quand la fiche produit (ou le tiroir) est ouverte */
body.sheet-open .guest-cart-bar {
  opacity:0 !important; pointer-events:none !important;
  transform:translateX(-50%) translateY(200%) !important;
}

/* BARRE PANIER -- version premium */
.guest-cart-bar {
  padding:12px 12px 12px 18px !important;
  border-radius:20px !important;
  background:linear-gradient(135deg,#262019 0%,#17120d 100%) !important;
  box-shadow:0 18px 46px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06) !important;
  border:1px solid rgba(255,255,255,.06) !important;
}
.guest-cart-bar .gc-bar-left { display:flex !important; align-items:center !important; gap:12px !important; }
.guest-cart-bar .gc-bar-left svg { color:#7bd99a !important; flex:0 0 auto !important; }
.guest-cart-bar #guest-cart-label { font-size:.96rem !important; font-weight:700 !important; color:rgba(255,255,255,.92) !important; }

/* total + fleche dans une pilule verte (contraste premium type Uber Eats) */
.guest-cart-bar .gc-bar-right {
  display:inline-flex !important; align-items:center !important; gap:8px !important;
  background:#15803d !important; padding:9px 14px !important; border-radius:999px !important;
  box-shadow:0 6px 16px rgba(21,128,61,.34) !important;
}
.guest-cart-bar #guest-cart-total { font-size:1.05rem !important; font-weight:900 !important; letter-spacing:-.02em !important; color:#fff !important; }
.guest-cart-bar .gc-bar-arrow { color:#fff !important; font-size:1.2rem !important; opacity:1 !important; font-weight:700 !important; line-height:1 !important; }

.guest-cart-bar:hover { transform:translateX(-50%) translateY(-2px) !important; }
.guest-cart-bar.show:hover { transform:translateX(-50%) translateY(-2px) !important; }

/* ═══ FIN CART BAR FIX ═══ */


/* ═══ CART BAR NOPILL ═══ */
/* Total + fleche sans pilule verte (poses simplement sur la barre) */
.guest-cart-bar .gc-bar-right {
  background:none !important; padding:0 !important; box-shadow:none !important; border-radius:0 !important;
  display:inline-flex !important; align-items:center !important; gap:9px !important;
}
.guest-cart-bar #guest-cart-total { color:#fff !important; font-weight:900 !important; font-size:1.08rem !important; letter-spacing:-.02em !important; }
.guest-cart-bar .gc-bar-arrow { color:#7bd99a !important; font-size:1.25rem !important; font-weight:700 !important; opacity:1 !important; }
/* ═══ FIN CART BAR NOPILL ═══ */


/* ═══ SHEET FOOT PREMIUM ═══ */
.dish-sheet .dish-sheet-foot {
  background:rgba(255,253,249,.98) !important; -webkit-backdrop-filter:blur(16px) !important; backdrop-filter:blur(16px) !important;
  border-top:1px solid rgba(40,25,10,.08) !important; box-shadow:0 -10px 30px rgba(45,32,20,.08) !important;
  padding:14px 22px calc(16px + env(safe-area-inset-bottom,0px)) !important;
  display:flex !important; flex-direction:column !important; gap:0 !important;
}

/* Suppléments sélectionnés : petite ligne discrète (plus de champ) */
.dish-sheet .sheet-summary {
  background:none !important; border:0 !important; padding:0 !important; box-shadow:none !important;
  font-size:.8rem !important; font-weight:500 !important; color:#9a8f7e !important; margin:0 0 6px !important; text-align:left !important;
}

/* Total : ligne épurée, pas une boîte */
.dish-sheet .sheet-total {
  background:none !important; border:0 !important; padding:0 !important; box-shadow:none !important;
  font-size:1.22rem !important; font-weight:800 !important; letter-spacing:-.03em !important; color:#1c1510 !important;
  margin:0 0 12px !important; text-align:left !important;
}

/* Actions en colonne */
.dish-sheet .sheet-actions { display:flex !important; flex-direction:column !important; gap:6px !important; align-items:stretch !important; }

/* CTA principal : le plus beau de la fiche */
.dish-sheet .sheet-actions #dish-add-cart {
  order:1 !important; width:100% !important; flex:none !important;
  display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:9px !important;
  min-height:58px !important; border-radius:999px !important; border:0 !important; cursor:pointer !important;
  background:linear-gradient(135deg,#1aa34a 0%,#138a3e 100%) !important; color:#fff !important;
  font-size:1.12rem !important; font-weight:800 !important; letter-spacing:-.01em !important;
  box-shadow:0 14px 34px rgba(20,120,58,.4) !important;
  transition:transform .16s ease, filter .2s ease, box-shadow .2s ease !important;
}
.dish-sheet .sheet-actions #dish-add-cart svg { width:19px !important; height:19px !important; flex:0 0 auto !important; }
.dish-sheet .sheet-actions #dish-add-cart:hover { transform:translateY(-2px) !important; filter:brightness(1.06) !important; box-shadow:0 20px 46px rgba(20,120,58,.5) !important; }
.dish-sheet .sheet-actions #dish-add-cart:active { transform:translateY(0) scale(.99) !important; }

/* Fermer : lien discret centré (plus de gros bouton rond) */
.dish-sheet .sheet-actions #dish-cancel {
  order:2 !important; width:auto !important; align-self:center !important; min-height:0 !important;
  background:none !important; border:0 !important; box-shadow:none !important;
  color:#9a8f7e !important; font-size:.88rem !important; font-weight:600 !important; padding:8px 12px !important;
  cursor:pointer !important; text-decoration:none !important; transition:color .15s ease !important;
}
.dish-sheet .sheet-actions #dish-cancel:hover { color:#1c1510 !important; }

/* on garde masqués les anciens boutons commande */
.dish-sheet .sheet-actions #dish-order-click,
.dish-sheet .sheet-actions #dish-order-onsite,
.dish-sheet .sheet-actions #dish-ok { display:none !important; }

/* ═══ FIN SHEET FOOT PREMIUM ═══ */


/* ═══ SACLAY SENIOR ═══ */
/* Passe finition niveau Maison Saclay -- specificite ID, gagne tout */

/* 1. CROSS-SELL : 75% image / 25% texte, cartes hautes, photos XXL */
#dish-sheet .pairing-strip { padding:16px 0 8px 22px !important; }
#dish-sheet .pairing-head h4 { font-size:1.18rem !important; font-weight:800 !important; letter-spacing:-.035em !important; color:#1c1510 !important; }
#dish-sheet .pairing-head p { font-size:.83rem !important; color:#9a8f7e !important; margin-top:2px !important; }
#dish-sheet .pairing-grid { gap:14px !important; padding:14px 22px 6px 0 !important; }
#dish-sheet .pairing-card { flex:0 0 80% !important; max-width:320px !important; border-radius:22px !important; box-shadow:0 10px 30px rgba(45,32,20,.14) !important; }
#dish-sheet .pairing-card:hover { transform:translateY(-6px) !important; box-shadow:0 28px 58px rgba(45,32,20,.22) !important; }
#dish-sheet .pairing-media { aspect-ratio:4/5 !important; }            /* image dominante (~75%) */
#dish-sheet .pairing-copy { padding:12px 15px 2px !important; }
#dish-sheet .pairing-copy strong { font-size:1rem !important; }
#dish-sheet .pairing-copy small { font-size:1.02rem !important; }
#dish-sheet .pairing-add { margin:8px 15px 15px !important; padding:12px 16px !important; font-size:.86rem !important; box-shadow:0 8px 20px rgba(21,128,61,.3) !important; }

/* 2. PRIX produit : premium noir (zero bleu), aucun fond-badge */
#dish-sheet .sheet-price { background:none !important; border:0 !important; box-shadow:none !important; padding:0 !important; color:#1c1510 !important; font-size:1.75rem !important; font-weight:800 !important; letter-spacing:-.05em !important; }
#dish-sheet .sheet-meta-pill { display:none !important; }
#dish-sheet .sheet-main-kicker { color:#C8920A !important; }

/* 3. ESPACES resserres (dense, fluide) */
#dish-sheet .sheet-main-card { padding:18px 22px 2px !important; }
#dish-sheet .sheet-main-card h3 { margin:0 0 10px !important; }
#dish-sheet .sheet-meta-row { margin-bottom:10px !important; }
#dish-sheet .sheet-desc { margin:0 0 2px !important; line-height:1.55 !important; }
#dish-sheet .sheet-block-card, #dish-sheet .sheet-block, #dish-sheet .opt-group { padding:14px 22px 0 !important; }
#dish-sheet .sheet-section-head, #dish-sheet .opt-group-head { margin-bottom:10px !important; }
#dish-sheet .supp-row.opt-chip, #dish-sheet .supp-row.opt-card { margin-bottom:8px !important; }

/* 4. FOOTER : total mis en scene (Apple style) + CTA hero */
#dish-sheet .dish-sheet-foot { padding:16px 22px calc(18px + env(safe-area-inset-bottom,0px)) !important; box-shadow:0 -12px 34px rgba(45,32,20,.1) !important; }
#dish-sheet .sheet-summary { font-size:.78rem !important; color:#9a8f7e !important; margin:0 0 8px !important; }
#dish-sheet .sheet-total-label { display:block !important; font-size:.7rem !important; text-transform:uppercase !important; letter-spacing:.12em !important; font-weight:700 !important; color:#9a8f7e !important; margin:0 0 1px !important; }
#dish-sheet .sheet-total { background:none !important; border:0 !important; padding:0 !important; box-shadow:none !important; font-size:1.75rem !important; font-weight:800 !important; letter-spacing:-.05em !important; color:#1c1510 !important; margin:0 0 14px !important; }
#dish-sheet .sheet-actions #dish-add-cart {
  min-height:60px !important; font-size:1.14rem !important; font-weight:800 !important;
  background:linear-gradient(135deg,#1aa34a 0%,#138a3e 100%) !important;
  box-shadow:0 16px 40px rgba(20,120,58,.42) !important;
}
#dish-sheet .sheet-actions #dish-add-cart:hover { transform:translateY(-2px) !important; box-shadow:0 22px 50px rgba(20,120,58,.52) !important; filter:brightness(1.06) !important; }
#dish-sheet .sheet-actions #dish-cancel { color:#9a8f7e !important; font-size:.86rem !important; }

/* ═══ FIN SACLAY SENIOR ═══ */


/* ═══ SACLAY2 ═══ */

/* CTA avec total integre (Uber Eats premium) */
#dish-sheet .sheet-actions #dish-add-cart {
  display:flex !important; align-items:center !important; justify-content:flex-start !important; gap:10px !important;
  padding:0 22px !important; min-height:62px !important;
}
#dish-sheet .sheet-actions #dish-add-cart .add-label { font-weight:800 !important; }
#dish-sheet .sheet-actions #dish-add-cart .add-total {
  margin-left:auto !important; font-weight:900 !important; font-size:1.05rem !important; letter-spacing:-.02em !important;
  position:relative !important; padding-left:16px !important;
}
#dish-sheet .sheet-actions #dish-add-cart .add-total::before {
  content:"" !important; position:absolute !important; left:0 !important; top:50% !important; transform:translateY(-50%) !important;
  width:1px !important; height:20px !important; background:rgba(255,255,255,.32) !important;
}

/* SUPPLEMENTS : plus aeres, plus premium */
#dish-sheet .opt-group { padding:20px 22px 2px !important; }
#dish-sheet .opt-group-head h4 { font-size:1.12rem !important; font-weight:800 !important; letter-spacing:-.03em !important; }
#dish-sheet .opt-cards { gap:10px !important; }
#dish-sheet .supp-row.opt-card {
  padding:16px 18px !important; border-radius:16px !important;
  border:1px solid rgba(40,25,10,.08) !important; background:#fff !important;
  box-shadow:0 2px 8px rgba(45,32,20,.04) !important;
}
#dish-sheet .supp-row.opt-card.is-selected { border-color:#15803d !important; background:#f4faf5 !important; box-shadow:0 4px 14px rgba(21,128,61,.12) !important; }
#dish-sheet .opt-card-name { font-size:.98rem !important; font-weight:600 !important; }
#dish-sheet .opt-card-price { font-size:.84rem !important; }
#dish-sheet .opt-card-add { width:38px !important; height:38px !important; font-size:1.5rem !important; }
/* chips plus aerees */
#dish-sheet .opt-chips { gap:10px !important; }
#dish-sheet .supp-row.opt-chip { padding:12px 19px !important; font-size:.93rem !important; }

/* CROSS-SELL : attenuer le blanc des packshots (fond chaud + leger zoom) */
#dish-sheet .pairing-media { background:linear-gradient(135deg,#f3ece0,#e9dcc6) !important; }
#dish-sheet .pairing-media img { object-fit:cover !important; object-position:center !important; transform:scale(1.02) !important; transition:transform .6s cubic-bezier(.22,1,.36,1) !important; }
#dish-sheet .pairing-card:hover .pairing-media img { transform:scale(1.08) !important; }

/* ═══ FIN SACLAY2 ═══ */


/* ═══ PAIRING SMALLER ═══ */
/* Cartes plus compactes : les 2 rentrent entierement (carrousel garde) */
#dish-sheet .pairing-grid { padding-right:16px !important; }
#dish-sheet .pairing-card { flex:0 0 46% !important; max-width:none !important; }
#dish-sheet .pairing-media { aspect-ratio:1/1 !important; }
#dish-sheet .pairing-copy { padding:10px 12px 2px !important; }
#dish-sheet .pairing-copy strong { font-size:.9rem !important; }
#dish-sheet .pairing-copy small { font-size:.95rem !important; }
#dish-sheet .pairing-add { margin:8px 12px 12px !important; padding:10px 12px !important; font-size:.8rem !important; }
/* ═══ FIN PAIRING SMALLER ═══ */


/* ═══ DUAL MENU FIX ═══ */
/* Double tarif sur les cartes menu : 2 lignes propres, sans point flottant */
[data-category-section] .dish-card .dish-side.dual-pricing { align-items:center !important; gap:12px !important; }
[data-category-section] .dish-card .dish-side.dual-pricing .dual-price-card {
  display:flex !important; flex-direction:column !important; flex-wrap:nowrap !important;
  align-items:flex-start !important; gap:3px !important;
}
[data-category-section] .dish-card .dual-price-row {
  display:inline-flex !important; align-items:baseline !important; gap:6px !important; padding:0 !important; margin:0 !important; background:none !important;
}
/* retirer le point separateur (qui flottait quand ca passait a la ligne) */
[data-category-section] .dish-card .dual-price-row + .dual-price-row::before {
  content:none !important; display:none !important; margin:0 !important;
}
[data-category-section] .dish-card .dual-price-amount {
  order:1 !important; font-size:1.05rem !important; font-weight:800 !important; letter-spacing:-.04em !important; color:#1c1510 !important;
}
[data-category-section] .dish-card .dual-price-badge {
  order:2 !important; text-transform:lowercase !important; font-size:.66rem !important; font-weight:600 !important;
  color:#C8920A !important; background:none !important; padding:0 !important;
}
/* ═══ FIN DUAL MENU FIX ═══ */


/* ═══ REQUIRED HIGHLIGHT ═══ */
#dish-sheet .opt-group.opt-missing .opt-group-head h4 { color:#dc2626 !important; }
#dish-sheet .opt-group.opt-missing .req-badge {
  background:#fee2e2 !important; color:#dc2626 !important;
  animation:optShake .42s cubic-bezier(.36,.07,.19,.97) !important;
}
@keyframes optShake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-5px)} 40%,80%{transform:translateX(5px)} }
/* ═══ FIN REQUIRED HIGHLIGHT ═══ */


/* ═══ PRICING REQUIRED ═══ */
#dish-sheet .pricing-block.opt-missing .sheet-section-head h4 { color:#dc2626 !important; }
#dish-sheet .pricing-block.opt-missing .req-badge { background:#fee2e2 !important; color:#dc2626 !important; }
#dish-sheet .pricing-block.opt-missing { animation:optShake .42s cubic-bezier(.36,.07,.19,.97) !important; }
#dish-sheet .pricing-block.opt-missing .pricing-choice { border-color:#fca5a5 !important; }
/* ═══ FIN PRICING REQUIRED ═══ */


/* ═══ GUEST CART ═══ */

/* CROSS-SELL: image dominante + '+' flottant, texte minimal */
.dish-sheet .pairing-card { position:relative !important; flex:0 0 70% !important; max-width:300px !important; }
.dish-sheet .pairing-media { aspect-ratio:1/1 !important; position:relative !important; }
.dish-sheet .pairing-add {
  position:absolute !important; right:10px !important; bottom:10px !important;
  width:44px !important; height:44px !important; border-radius:50% !important;
  background:#fff !important; color:#15803d !important; display:inline-flex !important;
  align-items:center !important; justify-content:center !important; padding:0 !important;
  box-shadow:0 6px 18px rgba(0,0,0,.22) !important; z-index:3 !important;
  transition:transform .15s ease, background .15s ease, color .15s ease !important;
}
.dish-sheet .pairing-add:hover { transform:scale(1.1) !important; background:#15803d !important; color:#fff !important; }
.dish-sheet .pairing-add svg { width:17px !important; height:17px !important; }
.dish-sheet .pairing-copy { padding:11px 13px 13px !important; gap:2px !important; }
.dish-sheet .pairing-copy strong { font-size:.92rem !important; font-weight:700 !important; color:#1c1510 !important; line-height:1.2 !important; }
.dish-sheet .pairing-copy small { font-size:.95rem !important; font-weight:800 !important; color:#1c1510 !important; }

/* FICHE: bouton "Ajouter au panier" = CTA unique, on masque les anciens boutons */
.dish-sheet .sheet-actions #dish-order-click,
.dish-sheet .sheet-actions #dish-order-onsite,
.dish-sheet .sheet-actions #dish-ok { display:none !important; }
.dish-sheet .sheet-actions #dish-add-cart {
  flex:1 !important; background:linear-gradient(135deg,#1aa34a,#138a3e) !important; color:#fff !important; border:0 !important;
  border-radius:999px !important; font-weight:800 !important; font-size:1.1rem !important; min-height:60px !important;
  box-shadow:0 14px 36px rgba(20,120,58,.42) !important; transition:transform .16s ease, filter .2s ease !important; cursor:pointer !important;
}
.dish-sheet .sheet-actions #dish-add-cart:hover { transform:translateY(-2px) !important; filter:brightness(1.06) !important; }

/* BARRE FLOTTANTE panier */
.guest-cart-bar {
  position:fixed !important; left:50% !important; transform:translateX(-50%) translateY(120%) !important;
  bottom:calc(16px + env(safe-area-inset-bottom,0px)) !important; z-index:1200 !important;
  width:min(560px, calc(100% - 28px)) !important; display:flex !important; align-items:center !important; justify-content:space-between !important;
  gap:14px !important; padding:14px 20px !important; border-radius:18px !important; cursor:pointer !important;
  background:#1c1510 !important; color:#fff !important; box-shadow:0 16px 40px rgba(0,0,0,.3) !important;
  opacity:0 !important; transition:transform .3s cubic-bezier(.22,1,.36,1), opacity .3s ease !important;
}
.guest-cart-bar.show { transform:translateX(-50%) translateY(0) !important; opacity:1 !important; }
.guest-cart-bar.gc-pulse { animation:gcPulse .42s ease !important; }
@keyframes gcPulse { 0%{transform:translateX(-50%) scale(1);} 40%{transform:translateX(-50%) scale(1.04);} 100%{transform:translateX(-50%) scale(1);} }
.guest-cart-bar .gc-bar-left { display:flex !important; align-items:center !important; gap:10px !important; font-weight:700 !important; font-size:.95rem !important; }
.guest-cart-bar .gc-bar-right { display:flex !important; align-items:center !important; gap:10px !important; }
.guest-cart-bar #guest-cart-total { font-weight:800 !important; font-size:1.05rem !important; }
.guest-cart-bar .gc-bar-arrow { font-size:1.4rem !important; opacity:.7 !important; }

/* OVERLAY + TIROIR */
.guest-cart-overlay { position:fixed !important; inset:0 !important; background:rgba(20,14,8,.5) !important; backdrop-filter:blur(4px) !important; opacity:0 !important; pointer-events:none !important; transition:opacity .25s ease !important; z-index:1250 !important; }
.guest-cart-overlay.show { opacity:1 !important; pointer-events:auto !important; }
.guest-cart-drawer {
  position:fixed !important; left:50% !important; transform:translateX(-50%) translateY(110%) !important;
  bottom:0 !important; z-index:1300 !important; width:min(560px,100%) !important; max-height:80vh !important;
  background:#fffdf9 !important; border-radius:24px 24px 0 0 !important; display:flex !important; flex-direction:column !important;
  box-shadow:0 -10px 40px rgba(0,0,0,.25) !important; transition:transform .32s cubic-bezier(.22,1,.36,1) !important;
}
.guest-cart-drawer.show { transform:translateX(-50%) translateY(0) !important; }
.gc-drawer-head { display:flex !important; align-items:center !important; justify-content:space-between !important; padding:18px 20px 8px !important; }
.gc-drawer-head h3 { margin:0 !important; font-size:1.3rem !important; font-weight:800 !important; letter-spacing:-.03em !important; color:#1c1510 !important; }
.gc-close { width:36px !important; height:36px !important; border:0 !important; border-radius:50% !important; background:rgba(40,25,10,.06) !important; color:#1c1510 !important; font-size:1.5rem !important; line-height:1 !important; cursor:pointer !important; }
.gc-list { overflow-y:auto !important; padding:6px 20px !important; flex:1 !important; }
.gc-item { display:flex !important; align-items:center !important; gap:12px !important; padding:12px 0 !important; border-bottom:1px solid rgba(40,25,10,.07) !important; }
.gc-item-main { flex:1 !important; min-width:0 !important; display:flex !important; flex-direction:column !important; gap:2px !important; }
.gc-item-main strong { font-size:.95rem !important; font-weight:600 !important; color:#1c1510 !important; }
.gc-item-main small { font-size:.78rem !important; color:#9a8f7e !important; }
.gc-item-price { font-weight:800 !important; color:#1c1510 !important; font-variant-numeric:tabular-nums !important; }
.gc-del { width:28px !important; height:28px !important; border:0 !important; border-radius:50% !important; background:rgba(40,25,10,.06) !important; color:#9a8f7e !important; font-size:1.1rem !important; line-height:1 !important; cursor:pointer !important; flex:0 0 auto !important; }
.gc-drawer-foot { padding:14px 20px calc(18px + env(safe-area-inset-bottom,0px)) !important; border-top:1px solid rgba(40,25,10,.08) !important; }
.gc-total-row { display:flex !important; align-items:center !important; justify-content:space-between !important; margin-bottom:12px !important; }
.gc-total-row span { color:#6b5d49 !important; font-weight:600 !important; }
.gc-total-row strong { font-size:1.45rem !important; font-weight:800 !important; letter-spacing:-.03em !important; color:#1c1510 !important; }
.gc-checkout { width:100% !important; min-height:58px !important; border:0 !important; border-radius:999px !important; background:linear-gradient(135deg,#1aa34a,#138a3e) !important; color:#fff !important; font-weight:800 !important; font-size:1.1rem !important; box-shadow:0 14px 34px rgba(20,120,58,.4) !important; cursor:pointer !important; transition:transform .16s ease, filter .2s ease !important; }
.gc-checkout:hover { transform:translateY(-2px) !important; filter:brightness(1.06) !important; }

/* ═══ FIN GUEST CART ═══ */


/* ══ MEXPLORER PREMIUM — Maison Saclay ══ */

/* Hero Découvrez notre carte */
.mexplorer-hero{display:grid;grid-template-columns:1fr 1fr;min-height:260px;position:relative;border-radius:var(--radius-md) var(--radius-md) 0 0;overflow:hidden}
.mexplorer-copy{padding:36px 36px 32px;display:flex;flex-direction:column;justify-content:center;gap:10px;position:relative;z-index:2;background:var(--theme-inner-bg)}
.mexplorer-kicker{margin:0;font-size:.62rem;font-weight:900;letter-spacing:.22em;text-transform:uppercase;color:#c4900a;display:flex;align-items:center;gap:8px}
.mexplorer-kicker::before{content:"";display:inline-block;width:22px;height:2px;border-radius:2px;background:currentColor}
.mexplorer-title{margin:0;font-size:clamp(1.7rem,3.2vw,2.5rem);font-weight:900;letter-spacing:-.05em;line-height:1.04;color:var(--theme-text-on-inner,#07111f)}
.mexplorer-title em{font-style:italic;font-weight:400;color:#c4900a;font-family:Georgia,"Times New Roman",serif}
.mexplorer-desc{margin:0;font-size:.88rem;color:var(--theme-text-muted-on-inner,#64748b);line-height:1.65;max-width:38ch}
.mexplorer-rule{width:36px;height:2px;background:linear-gradient(90deg,#c4900a,rgba(196,144,10,0));border-radius:2px;margin-top:4px}
.mexplorer-visual{position:relative;overflow:hidden;min-height:200px}
.mexplorer-visual::before{content:"";position:absolute;left:0;top:0;bottom:0;width:52%;background:linear-gradient(90deg,var(--theme-inner-bg) 0%,transparent 100%);z-index:1;pointer-events:none}
.mexplorer-food-img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;min-height:200px}

/* Recherche + Populaires */
.mexplorer-tools{display:grid;grid-template-columns:1fr auto;gap:14px;padding:20px 24px;border-top:1px solid rgba(196,144,10,.1);background:var(--theme-inner-bg);align-items:center}
.mexplorer-search-wrap{position:relative;display:flex;align-items:center;border-radius:16px;background:color-mix(in srgb, var(--theme-inner-bg) 90%, var(--theme-text-on-inner) 10%);border:1.5px solid rgba(196,144,10,.2);box-shadow:0 4px 20px rgba(15,23,42,.08),0 1px 4px rgba(15,23,42,.04);transition:border-color .2s,box-shadow .25s;overflow:hidden}
.mexplorer-search-wrap:focus-within{border-color:rgba(196,144,10,.55);box-shadow:0 0 0 3px rgba(196,144,10,.1),0 6px 24px rgba(15,23,42,.1)}
.mexplorer-search-ico{display:flex;align-items:center;justify-content:center;width:46px;height:46px;margin:6px 2px 6px 6px;flex-shrink:0;background:#0f0f0f;border-radius:50%;color:#fff;box-shadow:0 4px 12px rgba(0,0,0,.2)}
.mexplorer-search-ico svg{width:18px;height:18px;stroke:currentColor;stroke-width:2.2;fill:none}
.mexplorer-search-input{flex:1;min-height:58px;padding:0 18px;border:none !important;background:transparent !important;font-size:.94rem;font-weight:500;color:var(--theme-text-on-inner,#07111f) !important;outline:none;font-family:inherit;letter-spacing:.01em}
.mexplorer-search-input::placeholder{color:var(--theme-text-muted-on-inner,#a8b0bc);font-weight:400;font-style:italic}
.mexplorer-search-clear{background:rgba(196,144,10,.12);border:none;border-radius:999px;width:28px;height:28px;display:flex;align-items:center;justify-content:center;margin-right:12px;color:#c4900a;cursor:pointer;font-size:1rem;line-height:1;flex-shrink:0}
/* Bouton Populaires */
.mexplorer-popular{display:flex;align-items:center;gap:12px;padding:0 22px 0 18px;border-radius:16px;background:linear-gradient(145deg,#1c1005 0%,#2e1c08 100%);color:#f5c842;border:1px solid rgba(212,160,45,.5);cursor:pointer;font-family:inherit;min-height:58px;box-shadow:0 8px 24px rgba(20,12,0,.35),inset 0 1px 0 rgba(255,255,255,.07),0 0 0 1px rgba(212,160,45,.12);transition:transform .2s cubic-bezier(.23,1,.32,1),box-shadow .2s,border-color .2s;white-space:nowrap;position:relative}
.mexplorer-popular:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(20,12,0,.4),inset 0 1px 0 rgba(255,255,255,.09);border-color:rgba(212,160,45,.7)}
.mexplorer-popular[aria-pressed="true"]{background:linear-gradient(145deg,#2a1a04,#3a2406);border-color:rgba(212,160,45,.75);box-shadow:0 0 0 2px rgba(212,160,45,.25),0 8px 24px rgba(20,12,0,.35)}
.mexplorer-popular-fire{font-size:1.15rem;line-height:1;flex-shrink:0}
.mexplorer-popular-body{display:flex;flex-direction:column;align-items:flex-start;gap:2px}
.mexplorer-popular-body strong{font-size:.86rem;font-weight:900;letter-spacing:.01em;line-height:1.2;color:#f5c842}
.mexplorer-popular-body span{font-size:.7rem;font-weight:600;white-space:nowrap;color:rgba(245,200,70,.7)}
.mexplorer-popular-arrow{opacity:.5;flex-shrink:0;color:#f5c842}

/* CARTES CATÉGORIES PREMIUM v2 */
.mexplorer-cats{display:grid;grid-template-columns:repeat(auto-fill,minmax(110px,1fr));gap:12px;padding:20px 24px 28px;background:var(--theme-inner-bg)}

/* Override chip — forcer style carte rectangulaire */
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  padding:24px 12px 20px !important;
  border-radius:18px !important;
  background:linear-gradient(150deg,#fffff9 0%,#fffdf2 100%) !important;
  border:1px solid rgba(196,144,10,.15) !important;
  box-shadow:0 1px 3px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.05),0 8px 24px rgba(196,144,10,.03) !important;
  color:#1a1408 !important;
  text-decoration:none !important;
  cursor:pointer !important;
  transition:transform .26s cubic-bezier(.22,.61,.36,1),box-shadow .26s ease,border-color .22s,background .22s !important;
  text-align:center !important;
  position:relative !important;
  white-space:normal !important;
  font-size:inherit !important;
  min-height:118px !important;
  overflow:hidden !important;
}
/* Reflet de lumière diagonal haut-gauche */
.menu-app .mexplorer-cat.chip::before,
.menu-app .mexplorer-cat::before {
  content:'' !important;
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(135deg,rgba(255,255,255,.55) 0%,rgba(255,255,255,0) 52%) !important;
  border-radius:inherit !important;
  pointer-events:none !important;
  z-index:0 !important;
}
.menu-app .mexplorer-cat.chip:hover,
.menu-app .mexplorer-cat:hover {
  transform:translateY(-6px) scale(1.01) !important;
  box-shadow:0 14px 38px rgba(196,144,10,.18),0 5px 16px rgba(0,0,0,.08),0 1px 3px rgba(0,0,0,.05) !important;
  border-color:rgba(196,144,10,.44) !important;
  background:linear-gradient(150deg,#fffef5 0%,#fff8e0 100%) !important;
}

/* État actif — noir restaurant haut de gamme + halo doré subtil */
.menu-app .mexplorer-cat.chip.active,
.menu-app .mexplorer-cat.active {
  background:linear-gradient(145deg,#111111 0%,#1c1a0e 100%) !important;
  border-color:rgba(212,160,45,.68) !important;
  box-shadow:0 0 0 1px rgba(212,160,45,.22),0 10px 36px rgba(0,0,0,.32),0 0 32px rgba(196,144,10,.1) !important;
  color:#fff !important;
  transform:translateY(-3px) !important;
}
.menu-app .mexplorer-cat.chip.active::before,
.menu-app .mexplorer-cat.active::before {
  background:linear-gradient(135deg,rgba(255,220,80,.06) 0%,rgba(255,255,255,0) 52%) !important;
}
/* Badge check — cercle doré élégant */
.menu-app .mexplorer-cat.chip.active::after,
.menu-app .mexplorer-cat.active::after {
  content:"✓" !important;
  position:absolute !important;
  top:9px !important;
  right:9px !important;
  width:17px !important;
  height:17px !important;
  font-size:.6rem !important;
  font-weight:900 !important;
  color:#0d0d0d !important;
  background:rgba(212,160,45,.88) !important;
  border-radius:50% !important;
  line-height:17px !important;
  text-align:center !important;
  z-index:1 !important;
}

/* Icône SVG — container avec dégradé chaud */
.menu-app .mexplorer-cat-icon {
  width:50px !important;
  height:50px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-shrink:0 !important;
  border-radius:14px !important;
  background:linear-gradient(135deg,rgba(212,160,45,.13) 0%,rgba(196,144,10,.07) 100%) !important;
  transition:background .22s,transform .22s !important;
  position:relative !important;
  z-index:1 !important;
}
.menu-app .mexplorer-cat:hover .mexplorer-cat-icon {
  background:linear-gradient(135deg,rgba(212,160,45,.2) 0%,rgba(196,144,10,.12) 100%) !important;
  transform:scale(1.07) !important;
}
.menu-app .mexplorer-cat-icon svg {
  width:30px !important;
  height:30px !important;
  stroke:#b07c08 !important;
  stroke-width:1.5 !important;
  fill:none !important;
  display:block !important;
  transition:stroke .2s !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-icon {
  background:linear-gradient(135deg,rgba(245,200,70,.18) 0%,rgba(212,160,45,.1) 100%) !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-icon svg {
  stroke:#f5c842 !important;
}

/* Texte et compteur */
.menu-app .mexplorer-cat-name {
  font-size:.75rem !important;
  font-weight:700 !important;
  letter-spacing:.01em !important;
  line-height:1.25 !important;
  color:#1a1408 !important;
  transition:color .18s !important;
  position:relative !important;
  z-index:1 !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-name { color:#fff !important; }
.menu-app .mexplorer-cat-count {
  font-size:.6rem !important;
  color:rgba(160,100,0,.68) !important;
  font-weight:600 !important;
  line-height:1 !important;
  letter-spacing:.02em !important;
  position:relative !important;
  z-index:1 !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-count { color:rgba(245,200,70,.6) !important; }

/* Responsive */
@media(max-width:640px){
  .mexplorer-hero{grid-template-columns:1fr;min-height:auto}
  .mexplorer-visual{display:none}
  .mexplorer-copy{padding:22px 18px 18px;border-radius:var(--radius-md) var(--radius-md) 0 0}
  .mexplorer-tools{grid-template-columns:1fr;gap:8px;padding:12px 14px}
  .mexplorer-popular{justify-content:center}
  .mexplorer-cats{grid-template-columns:repeat(auto-fill,minmax(84px,1fr));gap:9px;padding:12px 14px 18px}
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat{padding:18px 8px 15px !important;border-radius:14px !important;gap:8px !important;min-height:96px !important}
  .menu-app .mexplorer-cat-icon{width:38px !important;height:38px !important;border-radius:10px !important}
  .menu-app .mexplorer-cat-icon svg{width:23px !important;height:23px !important}
  .menu-app .mexplorer-cat-name{font-size:.68rem !important}
}
@media(min-width:721px){
  .mexplorer-cats{grid-template-columns:repeat(auto-fill,minmax(122px,1fr));padding:24px 32px 30px;gap:14px}
  .mexplorer-tools{padding:20px 32px}
  .mexplorer-copy{padding:38px 44px 34px}
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat{padding:28px 14px 24px !important;min-height:128px !important}
  .menu-app .mexplorer-cat-icon{width:54px !important;height:54px !important;border-radius:15px !important}
  .menu-app .mexplorer-cat-icon svg{width:33px !important;height:33px !important}
  .menu-app .mexplorer-cat-name{font-size:.79rem !important}
}

/* ══ PANEL PLUS SOMBRE ══ */
.rh-more-overlay{display:none;position:fixed;inset:0;z-index:1010;background:rgba(0,0,0,.55);backdrop-filter:blur(3px);opacity:0;transition:opacity .25s}
.rh-more-overlay.is-open{display:block;opacity:1}
.rh-more-panel{position:fixed;z-index:1011;background:rgba(14,18,34,.96);backdrop-filter:blur(24px);border:1px solid rgba(255,255,255,.08);visibility:hidden;pointer-events:none}
@media(max-width:720px){
  .rh-more-panel{bottom:0;left:0;right:0;border-radius:24px 24px 0 0;max-height:82vh;overflow-y:auto;transform:translateY(100%);transition:transform .3s cubic-bezier(.32,0,.15,1),visibility .3s;box-shadow:0 -12px 48px rgba(0,0,0,.4)}
  .rh-more-panel.is-open{transform:translateY(0);visibility:visible;pointer-events:auto}
}
@media(min-width:721px){
  .rh-more-panel{width:296px;border-radius:20px;max-height:78vh;overflow-y:auto;transform:translateY(-10px);opacity:0;transition:transform .22s cubic-bezier(.23,1,.32,1),opacity .2s,visibility .2s;box-shadow:0 20px 56px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.08)}
  .rh-more-panel.is-open{transform:translateY(0);opacity:1;visibility:visible;pointer-events:auto}
}
.rh-more-handle{width:36px;height:4px;background:rgba(255,255,255,.15);border-radius:99px;margin:12px auto 0}
@media(min-width:721px){.rh-more-handle{display:none}}
.rh-more-body{padding:16px 0 max(24px,env(safe-area-inset-bottom))}
.rh-more-section{padding-bottom:6px}
.rh-more-section+.rh-more-section{border-top:1px solid rgba(255,255,255,.07);padding-top:6px}
.rh-more-section-label{font-size:.62rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.3);padding:8px 20px 3px;margin:0}
.rh-more-item{display:flex;align-items:center;gap:12px;padding:10px 20px;text-decoration:none;color:rgba(255,255,255,.88);font-size:.88rem;font-weight:500;background:none;border:none;cursor:pointer;width:100%;text-align:left;font-family:inherit;transition:background .12s}
.rh-more-item:hover{background:rgba(255,255,255,.06)}
.rh-more-item:active{background:rgba(255,255,255,.1)}
.rh-more-item__icon{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.rh-more-item__icon svg{width:18px;height:18px;fill:currentColor}
.rh-more-item__icon--phone{background:rgba(37,99,235,.3);color:#93c5fd}
.rh-more-item__icon--wa{background:rgba(22,163,74,.3);color:#86efac}
.rh-more-item__icon--google{background:rgba(202,138,4,.25);color:#fde68a}
.rh-more-item__icon--ig{background:rgba(219,39,119,.28);color:#f9a8d4}
.rh-more-item__icon--tt{background:rgba(255,255,255,.1);color:rgba(255,255,255,.85)}
.rh-more-item__icon--map{background:rgba(220,38,38,.28);color:#fca5a5}
.rh-more-item__icon--info{background:rgba(2,132,199,.28);color:#7dd3fc}
.rh-more-item__icon--blog{background:rgba(147,51,234,.28);color:#d8b4fe}
.rh-more-item__icon--account{background:rgba(234,88,12,.28);color:#fdba74}
.rh-more-item__icon--login{background:rgba(255,255,255,.08);color:rgba(255,255,255,.65)}
.rh-more-item__icon--share{background:rgba(22,163,74,.25);color:#86efac}
.rh-more-item__label{flex:1;color:rgba(255,255,255,.88)}
.rh-more-item__arrow{font-size:.9rem;color:rgba(255,255,255,.2)}
body.rh-more-open{overflow:hidden}

/* Top bar — langue + Plus alignés */
.menu-app .restaurant-sheet-top-right {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.menu-app .rh-more-open-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  height: 36px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  background: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.88) !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background .15s !important;
}
.menu-app .rh-more-open-btn:hover {
  background: rgba(255,255,255,.18) !important;
}

/* ══ HEADER PREMIUM — logo grand + nom 1 ligne + badges riches ══ */
.menu-app .restaurant-sheet-logo,
.menu-app .hero-logo.restaurant-sheet-logo {
  width: 110px !important;
  height: 110px !important;
  border-radius: 16px !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 2px solid rgba(255,255,255,.22) !important;
  background: rgba(255,255,255,.12) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,.1), 0 20px 40px rgba(0,0,0,.35) !important;
  flex-shrink: 0 !important;
}
/* Badge connecté — full width, en bas à gauche */
.menu-app .restaurant-sheet-connected {
  grid-column: 1 / -1 !important;
  margin-top: 4px !important;
}
.menu-app .restaurant-sheet-connected .hero-badge {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.85) !important;
}
.menu-app .restaurant-sheet-name {
  margin: 0 0 6px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  color: var(--theme-text-on-secondary, #fff) !important;
  font-size: clamp(1.6rem, 4.5vw, 2.8rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -.04em !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.4) !important;
}
.menu-app .restaurant-sheet-address {
  display: flex !important;
  align-items: flex-start !important;
  gap: 4px !important;
  color: var(--hero-subtext, rgba(255,255,255,.72)) !important;
  font-size: .82rem !important;
  margin: 0 0 10px !important;
}
/* Badges header — valeurs exactes de référence */
.menu-app .restaurant-badge-status--open {
  background: #042f25 !important;
  border: 1px solid rgba(0,190,115,.65) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 0 0 1px rgba(0,190,115,.15), 0 0 18px rgba(0,160,90,.22) !important;
}
.menu-app .restaurant-badge-status--closed {
  background: rgba(80,0,0,.72) !important;
  border: 1px solid rgba(255,80,80,.55) !important;
  color: #fca5a5 !important;
}
.menu-app .restaurant-badge-dot {
  width: 7px !important; height: 7px !important;
  border-radius: 50% !important;
  background: #22c55e !important;
  box-shadow: 0 0 10px rgba(34,197,94,.7) !important;
  flex-shrink: 0 !important;
  animation: badgePulse 2s infinite !important;
}
.menu-app .restaurant-badge-status--closed .restaurant-badge-dot { background: #f87171 !important; box-shadow: none !important; animation: none !important; }
@keyframes badgePulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.menu-app .restaurant-badge-google {
  background: #1a0f02 !important;
  border: 1px solid rgba(212,160,45,.75) !important;
  color: #f6d77a !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 0 0 1px rgba(212,160,45,.18), 0 0 18px rgba(212,160,45,.22) !important;
}
.menu-app .restaurant-badge-google svg { color: #f6c74a !important; fill: #f6c74a !important; }
.menu-app .restaurant-badge-halal {
  background: #042f25 !important;
  border: 1px solid rgba(0,190,115,.65) !important;
  color: #74f0a5 !important;
  font-weight: 800 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 0 0 1px rgba(0,190,115,.15), 0 0 18px rgba(0,160,90,.22) !important;
}
@media(min-width:721px){
  .menu-app .restaurant-sheet-logo,
  .menu-app .hero-logo.restaurant-sheet-logo { width:132px !important; height:132px !important; border-radius:28px !important; }
  .menu-app .restaurant-sheet-name { font-size: clamp(2rem, 3.5vw, 3rem) !important; }
}

/* ══════════════════════════════════════════════════
   FIXES GLOBAUX MENU — v3
══════════════════════════════════════════════════ */

/* ── Troncature noms catégories trop longs ── */
.menu-app .mexplorer-cat-name {
  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
  white-space:normal !important;
  word-break:break-word !important;
  max-width:100% !important;
}
@media(max-width:400px){
  .menu-app .mexplorer-cat-name {
    -webkit-line-clamp:1 !important;
    text-overflow:ellipsis !important;
  }
}

/* ── Bouton Commander sticky bas — supprimé sur mobile ── */
@media(max-width:720px){
  .mobile-sticky-order {
    display:none !important;
  }
}

/* ── Nom du restaurant trop long — deborde de l'ecran sur mobile ──
   (max-width en "ch" + nowrap force le texte a sortir du viewport
   sur les noms longs ; on autorise le retour a la ligne a la place) */
@media(max-width:720px){
  .menu-app .restaurant-sheet-copy h1.restaurant-sheet-name,
  .menu-app .restaurant-sheet-name,
  .menu-app .restaurant-sheet-copy h1 {
    white-space:normal !important;
    text-wrap:balance !important;
    overflow:visible !important;
    text-overflow:clip !important;
    word-break:break-word !important;
    max-width:100% !important;
  }
}

/* ══════════════════════════════════════════════════
   BOUTON RETOUR — BLOG & INFOS
══════════════════════════════════════════════════ */
.blog-back-btn {
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--hero-text,#fff);
  text-decoration:none;
  font-size:.82rem;
  font-weight:700;
  opacity:.82;
  padding:4px 2px;
  transition:opacity .18s;
  white-space:nowrap;
}
.blog-back-btn:hover { opacity:1; }
.blog-back-btn svg { flex-shrink:0; }

/* ══════════════════════════════════════════════════
   PAGE BLOG — STYLES PREMIUM
══════════════════════════════════════════════════ */
.surface-blog {
  padding:0;
  background:var(--restaurant-bg,#f8f9fb);
}
.blog-section-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  padding:28px 20px 20px;
  border-bottom:1px solid rgba(15,23,42,.07);
}
@media(min-width:640px){ .blog-section-head { padding:36px 28px 24px; } }
.blog-section-title {
  font-size:1.45rem;
  font-weight:800;
  color:#0f172a;
  margin:5px 0 0;
  letter-spacing:-.02em;
}
.blog-section-nav {
  display:flex;
  gap:8px;
  flex-shrink:0;
}
.blog-nav-link {
  display:inline-flex;
  align-items:center;
  padding:6px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(15,23,42,.1);
  color:#374151;
  font-size:.76rem;
  font-weight:700;
  text-decoration:none;
  transition:background .18s,box-shadow .18s;
}
.blog-nav-link:hover { background:#f8fafc; box-shadow:0 2px 8px rgba(0,0,0,.06); }

/* Grille articles */
.blog-posts-grid {
  display:grid;
  gap:20px;
  padding:20px 16px 36px;
}
@media(min-width:600px){ .blog-posts-grid { grid-template-columns:1fr 1fr; padding:24px 20px 40px; gap:22px; } }
@media(min-width:960px){ .blog-posts-grid { grid-template-columns:repeat(3,1fr); padding:24px 28px 48px; } }

/* Carte article */
.blog-card {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.07);
  box-shadow:0 2px 8px rgba(0,0,0,.05),0 0 0 0 rgba(196,144,10,0);
  transition:transform .26s cubic-bezier(.22,.61,.36,1),box-shadow .26s;
  display:flex;
  flex-direction:column;
}
.blog-card:hover {
  transform:translateY(-5px);
  box-shadow:0 14px 36px rgba(0,0,0,.1),0 4px 12px rgba(0,0,0,.06);
}
.blog-card-media {
  aspect-ratio:16/9;
  overflow:hidden;
  background:#f1f5f9;
  flex-shrink:0;
}
.blog-card-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}
.blog-card:hover .blog-card-media img { transform:scale(1.05); }
.blog-card-body {
  padding:16px 18px 20px;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.blog-card--no-img .blog-card-body {
  padding-top:20px;
}
.blog-card-date {
  display:flex;
  align-items:center;
  gap:4px;
  font-size:.67rem;
  font-weight:700;
  color:rgba(176,116,0,.85);
  text-transform:uppercase;
  letter-spacing:.05em;
}
.blog-card-date svg { flex-shrink:0; opacity:.65; }
.blog-card-title {
  font-size:.98rem;
  font-weight:800;
  color:#0f172a;
  margin:0;
  line-height:1.35;
  letter-spacing:-.01em;
}
.blog-card-excerpt {
  font-size:.82rem;
  color:#64748b;
  line-height:1.6;
  margin:0;
  flex:1;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* État vide */
.blog-empty {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:64px 24px 72px;
  gap:10px;
}
.blog-empty-icon { opacity:.28; margin-bottom:8px; }
.blog-empty-title { font-size:1.15rem; font-weight:800; color:#374151; margin:0; }
.blog-empty-desc { font-size:.88rem; color:#6b7280; margin:0; }
.blog-empty-cta {
  display:inline-flex;
  align-items:center;
  margin-top:12px;
  padding:10px 22px;
  border-radius:999px;
  background:var(--secondary-color,#111827);
  color:#fff;
  font-weight:700;
  font-size:.88rem;
  text-decoration:none;
  transition:opacity .18s;
}
.blog-empty-cta:hover { opacity:.88; }

/* ══════════════════════════════════════════════════
   PAGE INFO — STYLES PREMIUM
══════════════════════════════════════════════════ */
.surface-info {
  padding:0;
  background:var(--restaurant-bg,#f8f9fb);
}

/* Section générique */
.info-section {
  padding:22px 20px 24px;
  border-bottom:1px solid rgba(15,23,42,.07);
  background:#fff;
  margin-bottom:10px;
}
.info-section:last-child { border-bottom:none; margin-bottom:0; }
@media(min-width:640px){ .info-section { padding:26px 28px 28px; } }

.info-section--back {
  background:transparent;
  padding:16px 20px 24px;
  display:flex;
  align-items:center;
}

/* Header de section */
.info-section-header {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.info-section-header h2 {
  font-size:1rem;
  font-weight:800;
  color:#0f172a;
  margin:0;
  letter-spacing:-.01em;
}

/* Icône de section */
.info-section-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:11px;
  background:linear-gradient(135deg,rgba(212,160,45,.14),rgba(196,144,10,.07));
  flex-shrink:0;
}
.info-section-icon svg { width:18px; height:18px; stroke:#b07c08; }
.info-section-icon--hours { background:linear-gradient(135deg,rgba(59,130,246,.12),rgba(37,99,235,.07)); }
.info-section-icon--hours svg { stroke:#2563eb; }
.info-section-icon--contact { background:linear-gradient(135deg,rgba(16,185,129,.12),rgba(5,150,105,.07)); }
.info-section-icon--contact svg { stroke:#059669; }
.info-section-icon--social { background:linear-gradient(135deg,rgba(147,51,234,.12),rgba(109,40,217,.07)); }
.info-section-icon--social svg { stroke:#7c3aed; }

/* Corps de section */
.info-section-body {
  font-size:.9rem;
  color:#374151;
  line-height:1.75;
}
.info-hours {
  font-size:.86rem;
  color:#374151;
  line-height:1.85;
  white-space:pre-wrap;
}

/* Cards contact */
.info-contact-cards {
  display:grid;
  gap:10px;
}
@media(min-width:480px){ .info-contact-cards { grid-template-columns:1fr 1fr; } }
@media(min-width:800px){ .info-contact-cards { grid-template-columns:repeat(3,1fr); } }

.info-contact-card {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.08);
  text-decoration:none;
  color:#0f172a;
  font-weight:600;
  font-size:.86rem;
  transition:background .2s,box-shadow .2s,transform .22s;
}
.info-contact-card:hover {
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.04);
  transform:translateY(-2px);
}
.info-contact-card__icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  flex-shrink:0;
}
.info-contact-card__icon--phone { background:linear-gradient(135deg,#ecfdf5,#d1fae5); color:#059669; }
.info-contact-card__icon--wa { background:linear-gradient(135deg,#f0fdf4,#dcfce7); color:#16a34a; }
.info-contact-card__icon--map { background:linear-gradient(135deg,#eff6ff,#dbeafe); color:#2563eb; }
.info-contact-card__icon svg { width:20px; height:20px; stroke-width:2; }
.info-contact-card__info { flex:1; min-width:0; }
.info-contact-card__title { font-weight:800; color:#0f172a; font-size:.86rem; }
.info-contact-card__sub { font-size:.72rem; color:#6b7280; font-weight:500; margin-top:2px; }
.info-contact-card__arrow { opacity:.3; flex-shrink:0; }
.info-contact-card:hover .info-contact-card__arrow { opacity:.6; }

/* Liens sociaux */
.info-social-links {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.info-social-link {
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 16px;
  border-radius:999px;
  background:#f1f5f9;
  border:1px solid rgba(15,23,42,.09);
  text-decoration:none;
  color:#374151;
  font-size:.79rem;
  font-weight:700;
  transition:background .18s,box-shadow .18s,transform .18s;
}
.info-social-link:hover {
  background:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  transform:translateY(-1px);
}

/* Bouton retour */
.info-back-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 22px;
  border-radius:999px;
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.1);
  color:#374151;
  font-size:.86rem;
  font-weight:700;
  text-decoration:none;
  transition:background .18s,box-shadow .18s;
}
.info-back-btn:hover { background:#fff; box-shadow:0 4px 14px rgba(0,0,0,.08); }
.info-back-btn svg { flex-shrink:0; opacity:.6; }

/* ════════════════════════════════════════════════════════
   LANGUAGE SWITCHER v2 — DARK PREMIUM PANEL
   Même DNA que le menu Plus — composant unique réutilisable
════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.lang-sw-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 80;
}

/* ── Bouton déclencheur ── */
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 4px 10px 4px 5px;
  border-radius: 999px;
  cursor: pointer;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  user-select: none;
  transition: background .18s, border-color .18s;
  -webkit-tap-highlight-color: transparent;
}
.lang-trigger:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.35);
}

/* ── Trigger sur fond clair (topbar réservation / blog / info) ── */
.rsv-topbar .lang-trigger,
.lang-trigger--dark {
  color: #333 !important;
  background: rgba(0,0,0,.06) !important;
  border-color: rgba(0,0,0,.14) !important;
}
.rsv-topbar .lang-trigger:hover,
.lang-trigger--dark:hover {
  background: rgba(0,0,0,.1) !important;
  border-color: rgba(0,0,0,.22) !important;
}

/* ── Flag dans le trigger ── */
.lang-trigger__flag {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-trigger__flag svg,
.lang-trigger__flag img {
  width: 26px !important; height: 26px !important;
  display: block; object-fit: cover;
}

/* ── Label ── */
.lang-trigger__label {
  font-size: .78rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 90px;
}

/* ── Chevron animé ── */
.lang-trigger__chevron {
  width: 11px; height: 11px;
  opacity: .65;
  transition: transform .22s ease;
  flex-shrink: 0;
}
.lang-trigger[aria-expanded="true"] .lang-trigger__chevron {
  transform: rotate(180deg);
}

/* ── Overlay ── */
.lang-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .25s;
}
.lang-overlay.is-open {
  display: block;
  opacity: 1;
}

/* ── Panel — même style que rh-more-panel ── */
.lang-panel {
  position: fixed;
  z-index: 1011;
  background: rgba(14,18,34,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08);
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

/* Mobile : remonte depuis le bas comme le menu Plus */
@media (max-width: 720px) {
  .lang-panel {
    bottom: 0; left: 0; right: 0;
    border-radius: 24px 24px 0 0;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.32,0,.15,1), visibility .3s;
    box-shadow: 0 -12px 48px rgba(0,0,0,.4);
  }
  .lang-panel.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
}

/* Desktop : dropdown élégant depuis le bouton */
@media (min-width: 721px) {
  .lang-panel {
    border-radius: 20px;
    max-height: 68vh;
    overflow-y: auto;
    width: min(320px, calc(100vw - 24px));
    transform: translateY(-8px) scale(.96);
    transition: transform .24s cubic-bezier(.22,.61,.36,1), opacity .24s, visibility .24s;
    opacity: 0;
    box-shadow: 0 24px 70px rgba(0,0,0,.44), 0 8px 24px rgba(0,0,0,.22);
  }
  .lang-panel.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* ── Handle (drag indicator mobile) ── */
.lang-panel__handle {
  width: 36px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  margin: 14px auto 4px;
}
@media (min-width: 721px) { .lang-panel__handle { display: none; } }

/* ── Body ── */
.lang-panel__body { padding: 12px 14px 18px; }

/* ── Label de section ── */
.lang-panel__label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.26);
  display: block;
  padding: 0 4px;
  margin: 0 0 10px;
}

/* ── Grille 2 colonnes ── */
.lang-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

/* ── Item langue ── */
.lang-panel__item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,.68);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: background .15s, color .15s;
  min-width: 0;
}
.lang-panel__item:hover {
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.96);
}
.lang-panel__item.is-active {
  background: rgba(255,255,255,.13);
  color: #fff;
}

/* ── Flag dans l'item ── */
.lang-panel__flag {
  display: inline-flex;
  width: 26px; height: 20px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.lang-panel__flag svg,
.lang-panel__flag img {
  width: 26px !important; height: 20px !important;
  display: block; object-fit: cover;
}

/* ── Nom de la langue ── */
.lang-panel__name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ── Check (langue active) ── */
.lang-panel__check {
  width: 14px; height: 14px;
  color: #4ade80;
  flex-shrink: 0;
  margin-left: auto;
  opacity: .9;
}

/* ── Scroll lock body ── */
body.lang-panel-open { overflow: hidden; }
@media (min-width: 721px) { body.lang-panel-open { overflow: auto; } }

/* ── Masquer les anciens éléments s'ils subsistent ── */
.menu-language-picker,
.menu-language-native,
.page-language-row {
  display: none !important;
}

/* ════ DISH SHEET FOOT — plus compact sur mobile ════ */
@media (max-width: 720px) {
  .dish-sheet-foot {
    padding: 8px 16px 10px !important;
  }
  .sheet-summary {
    font-size: .82rem !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
  }
  .sheet-actions {
    margin-top: 7px !important;
    gap: 7px !important;
  }
}

/* ════ FIX CATÉGORIES — texte qui dépasse ════ */
/* min-width:0 indispensable pour que les items de grille respectent leur colonne */
.menu-app .mexplorer-cats {
  min-width: 0;
}
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}
/* Texte — ellipsis sur 1 ligne, ultra fiable */
.menu-app .mexplorer-cat-name {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}
/* Compteur plats — idem */
.menu-app .mexplorer-cat-count {
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

/* ════════════════════════════════════════════════════
   DISH CARDS — PREMIUM INTERACTIVE v2
   Inspiration : Apple · Stripe · Linear · Awwwards
════════════════════════════════════════════════════ */

/* ── Base card — socle premium ── */
.dish-card {
  position: relative !important;
  will-change: transform !important;
  transform-style: preserve-3d !important;
  border: 1px solid rgba(15,23,42,.07) !important;
  box-shadow:
    0 1px 2px rgba(0,0,0,.04),
    0 2px 8px rgba(0,0,0,.05),
    0 4px 20px rgba(0,0,0,.05) !important;
  transition:
    border-color .32s ease,
    box-shadow .38s cubic-bezier(.22,.61,.36,1) !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}
@media (hover: hover) {
  .dish-card:hover {
    border-color: rgba(15,23,42,.16) !important;
    box-shadow:
      0 4px 10px rgba(0,0,0,.07),
      0 10px 32px rgba(0,0,0,.10),
      0 24px 56px rgba(0,0,0,.08),
      0 0 0 1px rgba(15,23,42,.05) !important;
  }
}

/* ── Shine overlay — suit la souris ── */
.dish-card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.12) 0%, transparent 62%);
  mix-blend-mode: normal;
}
@media (hover: hover) {
  .dish-card:hover .dish-card-shine { opacity: 1; }
}

/* ── Media — image vivante ── */
.dish-card .media {
  overflow: hidden !important;
  flex-shrink: 0;
  border-radius: 12px 0 0 12px !important;
}
.dish-card .media img {
  transition: transform .55s cubic-bezier(.22,.61,.36,1) !important;
  transform-origin: center center;
  display: block;
}
@media (hover: hover) {
  .dish-card:hover .media img { transform: scale(1.07) !important; }
}
.dish-card .media-empty {
  transition: transform .55s cubic-bezier(.22,.61,.36,1) !important;
}

/* ── Texte — hiérarchie améliorée ── */
.dish-card .dish-name {
  line-height: 1.3 !important;
  letter-spacing: -.02em !important;
  transition: color .2s ease !important;
}
@media (hover: hover) {
  .dish-card:hover .dish-name { color: var(--theme-text-on-inner, #0a0f1e) !important; }
}
.dish-card .dish-desc {
  opacity: .68 !important;
  line-height: 1.5 !important;
  font-size: .8rem !important;
}

/* ── Badge populaire — glow au hover ── */
.dish-card .pop-badge {
  transition: box-shadow .25s ease !important;
}
@media (hover: hover) {
  .dish-card:hover .pop-badge {
    box-shadow: 0 2px 10px rgba(14,165,233,.28) !important;
  }
}

/* ── Prix — premium ── */
.dish-card .price-pill {
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  font-size: .94rem !important;
  color: #0f172a !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* ── Bouton Ajouter — micro-interactions premium ── */
.dish-card .dish-add-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 7px 14px 7px 10px !important;
  border-radius: 999px !important;
  background: #0f172a !important;
  color: #fff !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
  cursor: pointer !important;
  border: none !important;
  margin-top: 8px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(15,23,42,.22), inset 0 1px 0 rgba(255,255,255,.08) !important;
  transition:
    background .2s ease,
    transform .18s cubic-bezier(.34,1.56,.64,1),
    box-shadow .2s ease !important;
  white-space: nowrap !important;
}
/* Reflet interne du bouton */
.dish-card .dish-add-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 50% !important;
  background: linear-gradient(180deg, rgba(255,255,255,.1) 0%, transparent 100%) !important;
  border-radius: 999px 999px 0 0 !important;
  pointer-events: none !important;
}
@media (hover: hover) {
  .dish-card:hover .dish-add-btn {
    background: #1e293b !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 18px rgba(15,23,42,.3), inset 0 1px 0 rgba(255,255,255,.1) !important;
  }
}
/* Click bounce */
.dish-card .dish-add-btn.is-pressed {
  transform: scale(.92) !important;
  transition: transform .08s ease !important;
}
.dish-card .dish-add-btn svg {
  flex-shrink: 0 !important;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1) !important;
}
@media (hover: hover) {
  .dish-card:hover .dish-add-btn svg {
    transform: rotate(-12deg) scale(1.15) !important;
  }
}

/* ── Side dish — meilleure structure ── */
.dish-card .dish-side {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  padding: 14px 14px 14px 0 !important;
  gap: 4px !important;
  flex-shrink: 0 !important;
}

/* ── État focus / ouvert ── */
.dish-card:focus-visible {
  outline: none !important;
  border-color: rgba(var(--primary-rgb, 14 165 233), .5) !important;
  box-shadow:
    0 0 0 3px rgba(var(--primary-rgb, 14 165 233), .15),
    0 8px 24px rgba(0,0,0,.1) !important;
}

/* ════════════════════════════════════════════════════
   PHASE 3 — DESIGN PREMIUM COMPLET
   Sticky Bar · Catégories Image · Stats · Search
   Inspiration : Uber Eats · Airbnb · Apple · Stripe
════════════════════════════════════════════════════ */

/* ══ STICKY BAR ══ */
.menu-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255,253,248,.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(196,144,10,.12);
  box-shadow: 0 2px 16px rgba(0,0,0,.07), 0 1px 0 rgba(196,144,10,.06);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .34s cubic-bezier(.22,.61,.36,1), opacity .28s ease;
  will-change: transform;
  padding-top: env(safe-area-inset-top, 0);
}
.menu-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.menu-sticky-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  max-width: 100%;
  overflow: hidden;
}
.menu-sticky-bar__search {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(15,23,42,.04);
  border: 1.5px solid rgba(196,144,10,.18);
  border-radius: 12px;
  padding: 0 12px;
  height: 38px;
  flex: 0 0 auto;
  width: 140px;
  transition: border-color .22s, box-shadow .22s, width .32s cubic-bezier(.22,.61,.36,1);
}
.menu-sticky-bar__search:focus-within {
  border-color: rgba(196,144,10,.5);
  box-shadow: 0 0 0 3px rgba(196,144,10,.1);
  width: 172px;
}
.menu-sticky-bar__search svg {
  flex-shrink: 0;
  color: #9ca3af;
  transition: color .2s;
}
.menu-sticky-bar__search:focus-within svg { color: #b07c08; }
.menu-sticky-bar__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: .79rem;
  font-weight: 500;
  color: #07111f;
  outline: none;
  font-family: inherit;
}
.menu-sticky-bar__input::placeholder { color: #9ca3af; }
.menu-sticky-bar__chips {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-width: 0;
  padding-bottom: 2px;
}
.menu-sticky-bar__chips::-webkit-scrollbar { display: none; }
.sticky-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(196,144,10,.2);
  background: rgba(255,253,248,.9);
  color: #5a4a1a;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  scroll-snap-align: start;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .15s cubic-bezier(.22,.61,.36,1);
  letter-spacing: .01em;
  flex-shrink: 0;
}
.sticky-chip:hover {
  background: rgba(196,144,10,.1);
  border-color: rgba(196,144,10,.38);
  transform: translateY(-1px);
}
.sticky-chip.active {
  background: #111;
  color: #f5c842;
  border-color: rgba(212,160,45,.5);
  box-shadow: 0 0 0 1px rgba(212,160,45,.18), 0 3px 10px rgba(0,0,0,.16);
}

/* ══ CATÉGORIES PREMIUM — CARTES IMAGE PLEIN FORMAT ══ */

/* Reset l'ancien ::before (reflet blanc qui lavait l'image) */
.menu-app .mexplorer-cat.chip::before,
.menu-app .mexplorer-cat::before {
  background: none !important;
  z-index: 0 !important;
}

/* Card — image plein format */
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  padding: 0 !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  min-height: 128px !important;
  background: #1a1208 !important;
  border: 1.5px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.16), 0 8px 24px rgba(0,0,0,.14) !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  gap: 0 !important;
  cursor: pointer !important;
}

/* Image de fond */
.mexplorer-cat-img {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-radius: inherit !important;
  transition: transform .6s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform !important;
  z-index: 0 !important;
}
@media (hover: hover) {
  .mexplorer-cat:hover .mexplorer-cat-img {
    transform: scale(1.06) !important;
  }
  .mexplorer-cat.active .mexplorer-cat-img {
    transform: scale(1.02) !important;
  }
}

/* Gradient overlay premium */
.mexplorer-cat-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.04) 0%,
    rgba(0,0,0,.3) 45%,
    rgba(0,0,0,.72) 100%
  ) !important;
  z-index: 1 !important;
  border-radius: inherit !important;
  transition: opacity .35s ease !important;
}
.mexplorer-cat.active .mexplorer-cat-overlay {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,.78) 100%
  ) !important;
}

/* Icône — glassmorphism coin haut-gauche */
.menu-app .mexplorer-cat-icon {
  position: absolute !important;
  top: 9px !important;
  left: 9px !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 9px !important;
  background: rgba(255,255,255,.14) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 3 !important;
  transition: background .25s, border-color .25s, transform .25s cubic-bezier(.22,.61,.36,1) !important;
  transform: none !important;
}
@media (hover: hover) {
  .mexplorer-cat:hover .mexplorer-cat-icon {
    background: rgba(255,255,255,.24) !important;
    border-color: rgba(255,255,255,.35) !important;
    transform: scale(1.06) translateY(-1px) !important;
  }
}
.menu-app .mexplorer-cat.active .mexplorer-cat-icon {
  background: rgba(212,160,45,.22) !important;
  border-color: rgba(212,160,45,.55) !important;
}
.menu-app .mexplorer-cat-icon svg {
  width: 16px !important;
  height: 16px !important;
  stroke: rgba(255,255,255,.9) !important;
  stroke-width: 1.6 !important;
  fill: none !important;
  display: block !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-icon svg {
  stroke: #f5c842 !important;
}

/* Corps texte — collé au bas de la carte */
.mexplorer-cat-body {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  padding: 0 10px 11px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}
.menu-app .mexplorer-cat-name {
  color: #fff !important;
  font-size: .73rem !important;
  font-weight: 800 !important;
  letter-spacing: .005em !important;
  line-height: 1.2 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,.55) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  display: block !important;
}
.menu-app .mexplorer-cat-count {
  color: rgba(255,255,255,.6) !important;
  font-size: .6rem !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.4) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  letter-spacing: .02em !important;
}

/* État actif — bordure + glow doré */
.menu-app .mexplorer-cat.chip.active,
.menu-app .mexplorer-cat.active {
  border: 2px solid rgba(212,160,45,.82) !important;
  box-shadow:
    0 0 0 1px rgba(212,160,45,.2),
    0 0 22px rgba(196,144,10,.22),
    0 10px 32px rgba(0,0,0,.28) !important;
  transform: translateY(-4px) scale(1.02) !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-name { color: #fff !important; }
.menu-app .mexplorer-cat.active .mexplorer-cat-count { color: rgba(245,200,70,.78) !important; }

/* Badge ✓ doré — adapté fond sombre */
.menu-app .mexplorer-cat.chip.active::after,
.menu-app .mexplorer-cat.active::after {
  top: 7px !important;
  right: 7px !important;
  background: rgba(212,160,45,.92) !important;
  color: #111 !important;
  z-index: 4 !important;
  font-size: .55rem !important;
  line-height: 17px !important;
}

/* Shine overlay — lumière dynamique (géré par JS mousemove) */
.mexplorer-cat-shine {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  border-radius: inherit !important;
  opacity: 0 !important;
  transition: opacity .38s ease !important;
  mix-blend-mode: soft-light !important;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.2) 0%, transparent 60%) !important;
}

/* Responsive catégories image */
@media (max-width: 640px) {
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat {
    min-height: 108px !important;
    border-radius: 13px !important;
  }
  .mexplorer-cat-body { padding: 0 8px 9px !important; }
  .menu-app .mexplorer-cat-name { font-size: .67rem !important; }
  .menu-app .mexplorer-cat-icon { width: 26px !important; height: 26px !important; top: 7px !important; left: 7px !important; border-radius: 7px !important; }
  .menu-app .mexplorer-cat-icon svg { width: 13px !important; height: 13px !important; }
}
@media (min-width: 721px) {
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat {
    min-height: 152px !important;
    border-radius: 18px !important;
  }
  .mexplorer-cat-body { padding: 0 12px 14px !important; }
  .menu-app .mexplorer-cat-name { font-size: .8rem !important; }
  .menu-app .mexplorer-cat-icon { width: 34px !important; height: 34px !important; top: 11px !important; left: 11px !important; border-radius: 10px !important; }
  .menu-app .mexplorer-cat-icon svg { width: 18px !important; height: 18px !important; }
}

/* ══ STATS HERO ══ */
.mexplorer-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 8px;
  margin-top: 2px;
}
.mexplorer-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 16px;
  position: relative;
}
.mexplorer-stat + .mexplorer-stat {
  padding-left: 16px;
}
.mexplorer-stat + .mexplorer-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(196,144,10,.18);
}
.mexplorer-stat:last-child { padding-right: 0; }
.mexplorer-stat-num {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--theme-text-on-inner, #07111f);
  letter-spacing: -.04em;
  line-height: 1.1;
}
.mexplorer-stat-lbl {
  font-size: .6rem;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ══ SEARCH FOCUS PREMIUM ══ */
@keyframes searchGlow {
  0%   { box-shadow: 0 4px 20px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04), inset 0 1px 0 rgba(255,255,255,.95); }
  100% { box-shadow: 0 0 0 3px rgba(196,144,10,.12), 0 8px 28px rgba(15,23,42,.12), inset 0 1px 0 rgba(255,255,255,.95); }
}
.mexplorer-search-wrap:focus-within {
  animation: searchGlow .22s ease forwards;
}
.mexplorer-search-input:focus::placeholder {
  opacity: .45;
  transition: opacity .22s ease;
}

/* ════════════════════════════════════════════════════
   FIX ROOT CAUSE — CATÉGORIES GRID → FLEX SCROLL
   Root cause : auto-fill minmax(84px) → cartes 90px
   Fix : flex row + scroll horizontal + width fixe
   Aucun orphelin, une seule ligne, largeur uniforme
════════════════════════════════════════════════════ */

/* Conteneur — flex horizontal scroll, plus de grid */
.menu-app .mexplorer-cats,
.mexplorer-cats {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 12px !important;
  padding: 20px 20px 28px !important;
  background: var(--theme-inner-bg) !important;
  /* Supprime le grid-template-columns */
  grid-template-columns: unset !important;
}
.menu-app .mexplorer-cats::-webkit-scrollbar,
.mexplorer-cats::-webkit-scrollbar { display: none !important; }

/* Carte — width fixe, jamais squishée */
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  flex: 0 0 148px !important;
  width: 148px !important;
  min-width: 148px !important;
  max-width: 148px !important;
  min-height: 138px !important;
  scroll-snap-align: start !important;
  /* Reset chip pill shape */
  border-radius: 16px !important;
  white-space: normal !important;
}

/* Icônes — 2× plus grandes */
.menu-app .mexplorer-cat-icon {
  width: 42px !important;
  height: 42px !important;
  top: 10px !important;
  left: 10px !important;
  border-radius: 12px !important;
}
.menu-app .mexplorer-cat-icon svg {
  width: 22px !important;
  height: 22px !important;
}

/* Texte — largeur calée sur la carte fixe */
.menu-app .mexplorer-cat-name {
  font-size: .76rem !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 126px !important;
}
.menu-app .mexplorer-cat-count {
  font-size: .62rem !important;
}

/* Desktop ≥ 721px — cartes plus larges */
@media (min-width: 721px) {
  .menu-app .mexplorer-cats,
  .mexplorer-cats {
    padding: 24px 32px 32px !important;
    gap: 14px !important;
  }
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat {
    flex: 0 0 170px !important;
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
    min-height: 168px !important;
    border-radius: 18px !important;
  }
  .menu-app .mexplorer-cat-icon {
    width: 48px !important;
    height: 48px !important;
    top: 12px !important;
    left: 12px !important;
    border-radius: 14px !important;
  }
  .menu-app .mexplorer-cat-icon svg {
    width: 26px !important;
    height: 26px !important;
  }
  .menu-app .mexplorer-cat-name { font-size: .82rem !important; max-width: 148px !important; }
  .menu-app .mexplorer-cat-count { font-size: .65rem !important; }
}

/* Mobile ≤ 640px — cartes légèrement plus petites */
@media (max-width: 640px) {
  .menu-app .mexplorer-cats,
  .mexplorer-cats {
    padding: 16px 16px 22px !important;
    gap: 10px !important;
  }
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    min-height: 120px !important;
    border-radius: 14px !important;
  }
  .menu-app .mexplorer-cat-icon {
    width: 36px !important;
    height: 36px !important;
    top: 8px !important;
    left: 8px !important;
    border-radius: 10px !important;
  }
  .menu-app .mexplorer-cat-icon svg {
    width: 19px !important;
    height: 19px !important;
  }
  .menu-app .mexplorer-cat-name { font-size: .72rem !important; max-width: 112px !important; }
}

/* ════════════════════════════════════════════════════
   CATÉGORIES — REFONTE PROPRE FINALE
   Design : icon-centered · scroll horizontal · no orphan
   Annule toutes les couches précédentes
════════════════════════════════════════════════════ */

/* ── Conteneur scroll ── */
.menu-app .mexplorer-cats,
.mexplorer-cats {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  gap: 10px !important;
  padding: 18px 20px 24px !important;
  background: var(--theme-inner-bg) !important;
  /* Annule tout grid précédent */
  grid-template-columns: unset !important;
}
.menu-app .mexplorer-cats::-webkit-scrollbar,
.mexplorer-cats::-webkit-scrollbar {
  display: none !important;
}

/* ── Carte — layout centré, taille fixe ── */
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  /* Taille fixe — jamais squishée */
  flex: 0 0 110px !important;
  width: 110px !important;
  min-width: 110px !important;
  max-width: 110px !important;
  min-height: 106px !important;
  /* Layout centré vertical */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 16px 10px 14px !important;
  /* Apparence inactive : blanc/crème + bordure beige */
  background: #ffffff !important;
  border: 1.5px solid rgba(196,144,10,.18) !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 14px rgba(0,0,0,.05) !important;
  color: #1a1408 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  /* Reset chip pill */
  white-space: normal !important;
  scroll-snap-align: start !important;
  transition:
    transform .28s cubic-bezier(.22,.61,.36,1),
    box-shadow .28s ease,
    border-color .22s,
    background .22s !important;
}

/* Reset ::before parasite de l'ancien design */
.menu-app .mexplorer-cat.chip::before,
.menu-app .mexplorer-cat::before {
  display: none !important;
  content: none !important;
}

/* Hover — légère élévation */
@media (hover: hover) {
  .menu-app .mexplorer-cat.chip:hover,
  .menu-app .mexplorer-cat:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 24px rgba(196,144,10,.16), 0 3px 8px rgba(0,0,0,.08) !important;
    border-color: rgba(196,144,10,.4) !important;
    background: color-mix(in srgb, var(--theme-inner-bg) 92%, var(--theme-text-on-inner) 8%) !important;
  }
}

/* ── État actif — noir + glow doré ── */
.menu-app .mexplorer-cat.chip.active,
.menu-app .mexplorer-cat.active {
  background: #111111 !important;
  border-color: rgba(212,160,45,.78) !important;
  box-shadow:
    0 0 0 1px rgba(212,160,45,.18),
    0 0 18px rgba(196,144,10,.2),
    0 8px 24px rgba(0,0,0,.3) !important;
  transform: translateY(-4px) !important;
  color: #fff !important;
}

/* Badge ✓ actif */
.menu-app .mexplorer-cat.chip.active::after,
.menu-app .mexplorer-cat.active::after {
  content: "✓" !important;
  position: absolute !important;
  top: 7px !important;
  right: 7px !important;
  width: 16px !important;
  height: 16px !important;
  font-size: .52rem !important;
  font-weight: 900 !important;
  color: #111 !important;
  background: rgba(212,160,45,.9) !important;
  border-radius: 50% !important;
  line-height: 16px !important;
  text-align: center !important;
  z-index: 4 !important;
}

/* ── Icône — centrée, grande ── */
.menu-app .mexplorer-cat-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(212,160,45,.13) 0%, rgba(196,144,10,.07) 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  position: static !important;    /* reset du absolute précédent */
  transition: transform .25s cubic-bezier(.22,.61,.36,1), background .22s !important;
  z-index: auto !important;
}
@media (hover: hover) {
  .menu-app .mexplorer-cat:hover .mexplorer-cat-icon {
    transform: scale(1.1) !important;
    background: linear-gradient(135deg, rgba(212,160,45,.22) 0%, rgba(196,144,10,.14) 100%) !important;
  }
}
.menu-app .mexplorer-cat-icon svg {
  width: 26px !important;
  height: 26px !important;
  stroke: #b07c08 !important;
  stroke-width: 1.6 !important;
  fill: none !important;
  display: block !important;
  transition: stroke .2s !important;
}

/* Icône active — dorée */
.menu-app .mexplorer-cat.active .mexplorer-cat-icon {
  background: rgba(245,200,70,.12) !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-icon svg {
  stroke: #f5c842 !important;
}

/* ── Corps texte — centré ── */
.mexplorer-cat-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 3px !important;
  padding: 0 !important;
  width: 100% !important;
  position: static !important;    /* reset absolu précédent */
  z-index: auto !important;
}
.menu-app .mexplorer-cat-name {
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .005em !important;
  line-height: 1.25 !important;
  color: #1a1408 !important;
  text-align: center !important;
  text-shadow: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 90px !important;
  display: block !important;
  width: 90px !important;
}
.menu-app .mexplorer-cat-count {
  font-size: .6rem !important;
  font-weight: 600 !important;
  color: rgba(160,100,0,.65) !important;
  text-align: center !important;
  text-shadow: none !important;
  letter-spacing: .01em !important;
  display: block !important;
  white-space: nowrap !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-name { color: #fff !important; }
.menu-app .mexplorer-cat.active .mexplorer-cat-count { color: rgba(245,200,70,.65) !important; }

/* ── Shine — light effect (JS) ── */
.mexplorer-cat-shine {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  border-radius: inherit !important;
  opacity: 0 !important;
  transition: opacity .35s ease !important;
  mix-blend-mode: overlay !important;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .menu-app .mexplorer-cats,
  .mexplorer-cats {
    gap: 8px !important;
    padding: 14px 16px 20px !important;
  }
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat {
    flex: 0 0 100px !important;
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    min-height: 98px !important;
    padding: 14px 8px 12px !important;
    gap: 7px !important;
    border-radius: 14px !important;
  }
  .menu-app .mexplorer-cat-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
  }
  .menu-app .mexplorer-cat-icon svg {
    width: 22px !important;
    height: 22px !important;
  }
  .menu-app .mexplorer-cat-name { font-size: .67rem !important; max-width: 80px !important; width: 80px !important; }
}

@media (min-width: 721px) {
  /* ── Peu de catégories (≤8) — 1 ligne, cartes qui remplissent l'espace ── */
  .menu-app .mexplorer-cats--few,
  .mexplorer-cats--few {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    gap: 10px !important;
    padding: 20px 28px 26px !important;
    grid-template-rows: unset !important;
    grid-auto-flow: unset !important;
    grid-auto-columns: unset !important;
  }
  .mexplorer-cats--few .menu-app .mexplorer-cat.chip,
  .mexplorer-cats--few .mexplorer-cat.chip,
  .menu-app .mexplorer-cats--few .mexplorer-cat.chip,
  .menu-app .mexplorer-cats--few .mexplorer-cat {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 90px !important;
    max-width: 180px !important;
    min-height: 118px !important;
    padding: 18px 10px 14px !important;
    gap: 9px !important;
    border-radius: 18px !important;
  }

  /* ── Beaucoup de catégories (>8) — 2 lignes, grid auto-flow column ── */
  .menu-app .mexplorer-cats--many,
  .mexplorer-cats--many {
    display: grid !important;
    grid-template-rows: repeat(2, auto) !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(108px, 1fr) !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    gap: 10px !important;
    padding: 20px 28px 26px !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  .menu-app .mexplorer-cats--many .mexplorer-cat.chip,
  .menu-app .mexplorer-cats--many .mexplorer-cat {
    flex: unset !important;
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
    min-height: 118px !important;
    padding: 18px 10px 14px !important;
    gap: 9px !important;
    border-radius: 18px !important;
  }

  /* Icônes desktop (commun aux deux) */
  .menu-app .mexplorer-cats--few .mexplorer-cat-icon,
  .menu-app .mexplorer-cats--many .mexplorer-cat-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 13px !important;
  }
  .menu-app .mexplorer-cats--few .mexplorer-cat-icon svg,
  .menu-app .mexplorer-cats--many .mexplorer-cat-icon svg {
    width: 28px !important;
    height: 28px !important;
  }
  .menu-app .mexplorer-cats--few .mexplorer-cat-name,
  .menu-app .mexplorer-cats--many .mexplorer-cat-name {
    font-size: .72rem !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
  }
  .menu-app .mexplorer-cats--few .mexplorer-cat-count,
  .menu-app .mexplorer-cats--many .mexplorer-cat-count {
    font-size: .61rem !important;
  }
}

/* ════════════════════════════════════════════════════
   CATÉGORIES PHOTO-CARD — REFONTE FINALE v4
   Structure : image-header + icon-badge + label-text
   Fallback no-img : icon centrée + label
════════════════════════════════════════════════════ */

/* 1. Reset carte */
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  padding: 0 !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: 16px !important;
  min-height: 156px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 14px rgba(0,0,0,.06) !important;
  overflow: hidden !important;
  white-space: normal !important;
  flex: 0 0 124px !important;
  width: 124px !important;
  min-width: 124px !important;
  max-width: 124px !important;
}
.menu-app .mexplorer-cat.chip::before,
.menu-app .mexplorer-cat::before { display: none !important; content: none !important; }

/* 2. Zone image */
.mexplorer-cat-img-wrap {
  width: 100% !important;
  height: 92px !important;
  position: relative !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, rgba(212,160,45,.11) 0%, rgba(196,144,10,.06) 100%) !important;
}

/* 3. Image plein format + zoom hover */
.mexplorer-cat-img {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  z-index: 0 !important;
  transition: transform .55s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform !important;
}
@media (hover: hover) {
  .menu-app .mexplorer-cat:hover .mexplorer-cat-img { transform: scale(1.07) !important; }
}
.has-img .mexplorer-cat-img-wrap::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 45% !important;
  background: linear-gradient(0deg, rgba(0,0,0,.24) 0%, transparent 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* 4. Icône — no-img : centrée + grande */
.menu-app .mexplorer-cat-icon {
  position: relative !important;
  top: auto !important; left: auto !important; right: auto !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 13px !important;
  background: linear-gradient(135deg, rgba(212,160,45,.14) 0%, rgba(196,144,10,.08) 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  z-index: 2 !important;
  transition: transform .25s cubic-bezier(.22,.61,.36,1), background .22s !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.menu-app .mexplorer-cat-icon svg {
  width: 26px !important;
  height: 26px !important;
  stroke: #b07c08 !important;
  stroke-width: 1.5 !important;
  fill: none !important;
  display: block !important;
}
@media (hover: hover) {
  .menu-app .no-img:hover .mexplorer-cat-icon {
    transform: scale(1.1) !important;
    background: linear-gradient(135deg, rgba(212,160,45,.22) 0%, rgba(196,144,10,.14) 100%) !important;
  }
}

/* Icône — has-img : badge glassmorphism coin haut-droit */
.menu-app .has-img .mexplorer-cat-icon {
  position: absolute !important;
  top: 8px !important; right: 8px !important; left: auto !important;
  width: 28px !important; height: 28px !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,.2) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  z-index: 3 !important;
}
.menu-app .has-img .mexplorer-cat-icon svg {
  width: 15px !important; height: 15px !important;
  stroke: rgba(255,255,255,.92) !important;
  stroke-width: 1.7 !important;
}
@media (hover: hover) {
  .menu-app .has-img:hover .mexplorer-cat-icon {
    background: rgba(255,255,255,.28) !important;
    border-color: rgba(255,255,255,.45) !important;
    transform: scale(1.06) !important;
  }
}

/* 5. Label texte */
.mexplorer-cat-label {
  padding: 9px 11px 11px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  flex: 1 1 auto !important;
  background: #fff !important;
  border-top: 1px solid rgba(0,0,0,.04) !important;
}
.menu-app .mexplorer-cat-name {
  font-size: .72rem !important;
  font-weight: 700 !important;
  color: #1a1408 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: left !important;
  text-shadow: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}
.menu-app .mexplorer-cat-count {
  font-size: .59rem !important;
  font-weight: 600 !important;
  color: rgba(140,90,0,.58) !important;
  text-align: left !important;
  text-shadow: none !important;
  display: block !important;
  letter-spacing: .01em !important;
  white-space: nowrap !important;
}

/* 6. Hover global */
@media (hover: hover) {
  .menu-app .mexplorer-cat.chip:hover,
  .menu-app .mexplorer-cat:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.07) !important;
    border-color: rgba(196,144,10,.28) !important;
  }
}

/* 7. Actif — contour doré + glow */
.menu-app .mexplorer-cat.chip.active,
.menu-app .mexplorer-cat.active {
  border: 2px solid rgba(212,160,45,.82) !important;
  box-shadow: 0 0 0 1px rgba(212,160,45,.15), 0 0 20px rgba(196,144,10,.18), 0 8px 24px rgba(0,0,0,.14) !important;
  transform: translateY(-4px) !important;
}
.has-img.active .mexplorer-cat-label { background: #fffdf5 !important; }
.no-img.active { background: var(--theme-inner-bg) !important; }
.no-img.active .mexplorer-cat-img-wrap { background: color-mix(in srgb, var(--theme-inner-bg) 90%, var(--theme-text-on-inner) 10%) !important; }
.no-img.active .mexplorer-cat-icon { background: rgba(245,200,70,.12) !important; }
.no-img.active .mexplorer-cat-icon svg { stroke: #f5c842 !important; }
.no-img.active .mexplorer-cat-label { background: #111 !important; border-top-color: rgba(255,255,255,.06) !important; }
.no-img.active .mexplorer-cat-name { color: #fff !important; }
.no-img.active .mexplorer-cat-count { color: rgba(245,200,70,.65) !important; }
.menu-app .mexplorer-cat.chip.active::after,
.menu-app .mexplorer-cat.active::after {
  content: "" !important;
  position: absolute !important;
  top: 7px !important; left: 7px !important; right: auto !important;
  width: 16px !important; height: 16px !important;
  font-size: .52rem !important; font-weight: 900 !important;
  color: #111 !important;
  background: rgba(212,160,45,.9) !important;
  border-radius: 50% !important;
  line-height: 16px !important; text-align: center !important;
  z-index: 5 !important;
}

/* 8. Shine */
.mexplorer-cat-shine {
  position: absolute !important; inset: 0 !important; z-index: 4 !important;
  pointer-events: none !important; border-radius: inherit !important;
  opacity: 0 !important; transition: opacity .35s ease !important;
  mix-blend-mode: overlay !important;
}

/* 9. Mobile */
@media (max-width: 640px) {
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat {
    flex: 0 0 112px !important;
    width: 112px !important; min-width: 112px !important; max-width: 112px !important;
    min-height: 140px !important; border-radius: 13px !important;
  }
  .mexplorer-cat-img-wrap { height: 80px !important; }
  .mexplorer-cat-label { padding: 7px 9px 9px !important; }
  .menu-app .mexplorer-cat-name { font-size: .67rem !important; }
  .menu-app .mexplorer-cat-icon { width: 40px !important; height: 40px !important; border-radius: 11px !important; }
  .menu-app .mexplorer-cat-icon svg { width: 22px !important; height: 22px !important; }
  .menu-app .has-img .mexplorer-cat-icon { width: 24px !important; height: 24px !important; top: 6px !important; right: 6px !important; border-radius: 6px !important; }
  .menu-app .has-img .mexplorer-cat-icon svg { width: 13px !important; height: 13px !important; }
}

/* 10. Desktop — few : 1 ligne flex auto | many : 2 lignes grid */
@media (min-width: 721px) {
  .menu-app .mexplorer-cats--few .mexplorer-cat.chip,
  .menu-app .mexplorer-cats--few .mexplorer-cat {
    flex: 1 1 0 !important;
    width: auto !important; min-width: 110px !important; max-width: 190px !important;
    min-height: 174px !important; border-radius: 18px !important;
  }
  .menu-app .mexplorer-cats--many .mexplorer-cat.chip,
  .menu-app .mexplorer-cats--many .mexplorer-cat {
    flex: unset !important;
    width: auto !important; min-width: unset !important; max-width: unset !important;
    min-height: 174px !important; border-radius: 18px !important;
  }
  .mexplorer-cat-img-wrap { height: 112px !important; }
  .mexplorer-cat-label { padding: 10px 13px 12px !important; }
  .menu-app .mexplorer-cat-name { font-size: .76rem !important; }
  .menu-app .mexplorer-cat-icon { width: 50px !important; height: 50px !important; border-radius: 14px !important; }
  .menu-app .mexplorer-cat-icon svg { width: 28px !important; height: 28px !important; }
  .menu-app .has-img .mexplorer-cat-icon { width: 32px !important; height: 32px !important; top: 10px !important; right: 10px !important; border-radius: 9px !important; }
  .menu-app .has-img .mexplorer-cat-icon svg { width: 17px !important; height: 17px !important; }
}

/* ════════════════════════════════════════════════════
   CATÉGORIES — VERSION FINALE SANS ICÔNES
   Image plat ordre=1 · Gris si pas de photo · Pop-in immédiat
════════════════════════════════════════════════════ */

/* Masquer l'icône partout dans les catégories */
.mexplorer-cats .mexplorer-cat-icon { display: none !important; }

/* Placeholder cartes sans photo — suit le thème (fond intérieur dérivé) */
.no-img .mexplorer-cat-img-wrap {
  background: color-mix(in srgb, var(--theme-inner-bg) 90%, var(--theme-text-on-inner) 10%) !important;
}
/* Petite icône de plat centrée pour les no-img — tonalité thème */
.no-img .mexplorer-cat-img-wrap::before {
  content: '' !important;
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  background: color-mix(in srgb, var(--theme-inner-bg) 78%, var(--theme-text-on-inner) 22%) !important;
  border-radius: 12px !important;
}

/* Image : pop-in instantané (pas d'opacity transition) */
.mexplorer-cat-img {
  opacity: 1 !important;
  transition: transform .55s cubic-bezier(.22,.61,.36,1) !important;
}

/* Actif — contour doré pour TOUS les types de cartes */
.menu-app .mexplorer-cat.chip.active,
.menu-app .mexplorer-cat.active {
  border: 2.5px solid rgba(212,160,45,.9) !important;
  box-shadow:
    0 0 0 1px rgba(212,160,45,.2),
    0 0 24px rgba(196,144,10,.2),
    0 10px 28px rgba(0,0,0,.14) !important;
  transform: translateY(-4px) scale(1.02) !important;
  background: #fff !important;
}
/* Label actif has-img : légèrement doré */
.has-img.active .mexplorer-cat-label {
  background: linear-gradient(135deg, #fffdf5 0%, #fff 100%) !important;
}
.has-img.active .mexplorer-cat-name { color: #1a1408 !important; }
.has-img.active .mexplorer-cat-count { color: rgba(180,120,0,.7) !important; }
/* Label actif no-img : fond doré très léger */
.no-img.active .mexplorer-cat-label {
  background: var(--theme-inner-bg) !important;
}
.no-img.active .mexplorer-cat-img-wrap {
  background: color-mix(in srgb, var(--theme-inner-bg) 90%, var(--theme-text-on-inner) 10%) !important;
}
.no-img.active .mexplorer-cat-name { color: var(--theme-text-on-inner, #1a1408) !important; }
.no-img.active .mexplorer-cat-count { color: rgba(180,120,0,.72) !important; }

/* Badge ✓ actif */
.menu-app .mexplorer-cat.chip.active::after,
.menu-app .mexplorer-cat.active::after {
  content: "" !important;
  position: absolute !important;
  top: 8px !important; left: 8px !important; right: auto !important;
  width: 20px !important; height: 20px !important;
  font-size: .58rem !important; font-weight: 900 !important;
  color: #111 !important;
  background: rgba(212,160,45,.95) !important;
  border-radius: 50% !important;
  line-height: 20px !important; text-align: center !important;
  z-index: 6 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.2) !important;
}

/* ════════════════════════════════════════════════════════════
   CATÉGORIES PREMIUM FINAL — Apple · Uber Eats · Deliveroo
   Photo 75% · Coins 24px · Zéro truncation · Hover wow
════════════════════════════════════════════════════════════ */

/* ── Conteneur ── */
.menu-app .mexplorer-cats,
.mexplorer-cats {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 14px !important;
  padding: 20px 24px 32px !important;
  background: var(--theme-inner-bg) !important;
  grid-template-columns: unset !important;
  grid-template-rows: unset !important;
  grid-auto-flow: unset !important;
  grid-auto-columns: unset !important;
}
.menu-app .mexplorer-cats::-webkit-scrollbar,
.mexplorer-cats::-webkit-scrollbar { display: none !important; }
/* Spacer fin — évite que la dernière carte soit coupée dans Chrome */
.menu-app .mexplorer-cats::after,
.mexplorer-cats::after {
  content: '' !important;
  display: block !important;
  flex: 0 0 24px !important;
  min-width: 24px !important;
  height: 1px !important;
  align-self: stretch !important;
}

/* ── Carte — taille fixe large ── */
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  /* Dimensions */
  flex: 0 0 160px !important;
  width: 160px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  min-height: 0 !important;
  /* Style Apple */
  padding: 0 !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: 24px !important;
  box-shadow:
    0 2px 6px rgba(0,0,0,.05),
    0 8px 20px rgba(0,0,0,.07) !important;
  overflow: visible !important; /* visible pour que le texte wrap librement */
  white-space: normal !important;
  scroll-snap-align: start !important;
  transition:
    transform .3s cubic-bezier(.22,.61,.36,1),
    box-shadow .3s ease,
    border-color .25s ease !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
/* Reset pseudo-elements parasites */
.menu-app .mexplorer-cat.chip::before,
.menu-app .mexplorer-cat::before,
.menu-app .mexplorer-cat.chip.active::before,
.menu-app .mexplorer-cat.active::before {
  display: none !important; content: none !important;
}

/* ── Zone image — 75% de la hauteur ── */
.mexplorer-cat-img-wrap {
  width: 100% !important;
  height: 120px !important;
  position: relative !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  background: color-mix(in srgb, var(--theme-inner-bg) 90%, var(--theme-text-on-inner) 10%) !important;
  border-radius: 24px 24px 0 0 !important;
}
/* Placeholder warmth pour no-img */
.no-img .mexplorer-cat-img-wrap::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 50% 60%, rgba(212,160,45,.06) 0%, transparent 65%) !important;
}

/* ── Image réelle ── */
.mexplorer-cat-img {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  transition: transform .4s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform !important;
  z-index: 0 !important;
}
/* Ombre de profondeur bas de l'image */
.has-img .mexplorer-cat-img-wrap::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 30% !important;
  background: linear-gradient(0deg, rgba(0,0,0,.12) 0%, transparent 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* ── Zone texte — 25% ── */
.mexplorer-cat-label {
  padding: 12px 14px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  background: #fff !important;
  flex: 1 1 auto !important;
  border-top: 1px solid rgba(0,0,0,.04) !important;
  /* Coins bas arrondis — compense l'absence d'overflow:hidden sur la carte */
  border-radius: 0 0 24px 24px !important;
}

/* Nom — wrap aux espaces uniquement, jamais mid-word */
.menu-app .mexplorer-cat-name {
  font-size: .78rem !important;
  font-weight: 700 !important;
  color: #111 !important;
  letter-spacing: -.01em !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  word-break: normal !important;        /* jamais couper au milieu d'un mot */
  overflow-wrap: break-word !important; /* casse seulement si vraiment nécessaire */
  text-align: left !important;
  text-shadow: none !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Nombre de plats */
.menu-app .mexplorer-cat-count {
  font-size: .67rem !important;
  font-weight: 500 !important;
  color: rgba(0,0,0,.38) !important;
  text-align: left !important;
  text-shadow: none !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  display: block !important;
}

/* Masquer icône */
.mexplorer-cats .mexplorer-cat-icon { display: none !important; }

/* Shine overlay (JS) */
.mexplorer-cat-shine {
  position: absolute !important; inset: 0 !important;
  z-index: 4 !important; pointer-events: none !important;
  border-radius: inherit !important; opacity: 0 !important;
  transition: opacity .3s ease !important;
  mix-blend-mode: overlay !important;
}

/* ── Hover premium ── */
@media (hover: hover) {
  .menu-app .mexplorer-cat.chip:hover,
  .menu-app .mexplorer-cat:hover {
    transform: translateY(-10px) !important;
    box-shadow:
      0 20px 44px rgba(0,0,0,.13),
      0 8px 16px rgba(0,0,0,.07),
      0 0 0 1px rgba(196,144,10,.14) !important;
    border-color: rgba(196,144,10,.32) !important;
  }
  .menu-app .mexplorer-cat:hover .mexplorer-cat-img {
    transform: scale(1.08) !important;
  }
  .menu-app .mexplorer-cat:hover .mexplorer-cat-name {
    color: #000 !important;
  }
}

/* ── État actif — contour doré, glow élégant ── */
.menu-app .mexplorer-cat.chip.active,
.menu-app .mexplorer-cat.active {
  border: 2px solid rgba(212,160,45,.88) !important;
  box-shadow:
    0 0 0 3px rgba(212,160,45,.1),
    0 0 28px rgba(196,144,10,.18),
    0 12px 32px rgba(0,0,0,.1) !important;
  transform: translateY(-6px) !important;
  background: #fff !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-label {
  background: #fffdf8 !important;
  border-top-color: rgba(212,160,45,.1) !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-name { color: #000 !important; }
.menu-app .mexplorer-cat.active .mexplorer-cat-count { color: rgba(160,110,0,.65) !important; }

/* Badge ✓ actif */
.menu-app .mexplorer-cat.chip.active::after,
.menu-app .mexplorer-cat.active::after {
  content: "" !important;
  position: absolute !important;
  top: 10px !important; left: 10px !important; right: auto !important;
  width: 22px !important; height: 22px !important;
  font-size: .58rem !important; font-weight: 900 !important;
  color: #111 !important;
  background: rgba(212,160,45,.95) !important;
  border-radius: 50% !important;
  line-height: 22px !important; text-align: center !important;
  z-index: 6 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
}

/* ── Mobile ≤ 640px ── */
@media (max-width: 640px) {
  .menu-app .mexplorer-cats,
  .mexplorer-cats {
    gap: 12px !important;
    padding: 16px 18px 26px !important;
  }
  .menu-app .mexplorer-cat.chip,
  .menu-app .mexplorer-cat {
    flex: 0 0 144px !important;
    width: 144px !important;
    min-width: 144px !important;
    max-width: 144px !important;
    border-radius: 20px !important;
  }
  .mexplorer-cat-img-wrap { height: 108px !important; border-radius: 20px 20px 0 0 !important; }
  .mexplorer-cat-label { padding: 10px 12px 12px !important; }
  .menu-app .mexplorer-cat-name { font-size: .75rem !important; }
  .menu-app .mexplorer-cat-count { font-size: .62rem !important; }
}

/* ── Desktop ≥ 721px ── */
@media (min-width: 721px) {
  .menu-app .mexplorer-cats,
  .mexplorer-cats {
    gap: 16px !important;
    padding: 24px 32px 36px !important;
  }

  /* Peu de cats (≤8) : 1 ligne, cartes auto-sizing */
  .menu-app .mexplorer-cats--few,
  .mexplorer-cats--few {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }
  .menu-app .mexplorer-cats--few .mexplorer-cat.chip,
  .menu-app .mexplorer-cats--few .mexplorer-cat {
    flex: 1 1 160px !important;
    width: auto !important;
    min-width: 150px !important;
    max-width: 220px !important;
  }

  /* Beaucoup de cats (>8) : 2 lignes grid */
  .menu-app .mexplorer-cats--many,
  .mexplorer-cats--many {
    display: grid !important;
    grid-template-rows: repeat(2, auto) !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 172px !important; /* fixe — pas de 1fr qui déborde */
    flex-direction: unset !important;
    flex-wrap: unset !important;
    overflow-x: auto !important;
  }
  .menu-app .mexplorer-cats--many .mexplorer-cat.chip,
  .menu-app .mexplorer-cats--many .mexplorer-cat {
    flex: unset !important;
    width: 172px !important;
    min-width: 172px !important;
    max-width: 172px !important;
  }

  /* Tailles desktop communes */
  .mexplorer-cat-img-wrap { height: 136px !important; border-radius: 24px 24px 0 0 !important; }
  .mexplorer-cat-label { padding: 13px 16px 16px !important; }
  .menu-app .mexplorer-cat-name { font-size: .85rem !important; }
  .menu-app .mexplorer-cat-count { font-size: .7rem !important; }
  .menu-app .mexplorer-cat.chip.active::after,
  .menu-app .mexplorer-cat.active::after {
    width: 24px !important; height: 24px !important;
    line-height: 24px !important; font-size: .6rem !important;
  }
}

/* ══════════════════════════════════════════════════════════
   CATÉGORIES — GRID ROBUSTE v2
   auto-fill + minmax → s'adapte à tout nombre de catégories
   overflow:hidden sur le conteneur · visible sur les cartes
══════════════════════════════════════════════════════════ */

/* 1. Conteneur — grid auto-fill, overflow:hidden, pas de scroll */
.menu-app .mexplorer-cats,
.mexplorer-cats,
.menu-app .mexplorer-cats--few,
.mexplorer-cats--few,
.menu-app .mexplorer-cats--many,
.mexplorer-cats--many {
  display: grid !important;
  /* auto-fill : s'adapte à n'importe quel nombre de catégories */
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
  grid-template-rows: unset !important;
  grid-auto-flow: unset !important;
  grid-auto-columns: unset !important;
  gap: 12px !important;
  padding: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  /* overflow:hidden → rien ne déborde du conteneur */
  overflow: hidden !important;
  overflow-x: unset !important;
  overflow-y: unset !important;
  scroll-snap-type: none !important;
  flex-direction: unset !important;
  flex-wrap: unset !important;
  background: var(--theme-inner-bg) !important;
}
/* Tuer les pseudo-éléments spacers flex */
.menu-app .mexplorer-cats::after, .mexplorer-cats::after,
.menu-app .mexplorer-cats--few::after, .mexplorer-cats--few::after,
.menu-app .mexplorer-cats--many::after, .mexplorer-cats--many::after,
.menu-app .mexplorer-cats::before, .mexplorer-cats::before {
  display: none !important;
  content: none !important;
}

/* 2. Responsive — plafond de colonnes par breakpoint */
@media (min-width: 480px) {
  .menu-app .mexplorer-cats, .mexplorer-cats,
  .menu-app .mexplorer-cats--few, .mexplorer-cats--few,
  .menu-app .mexplorer-cats--many, .mexplorer-cats--many {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 13px !important;
    padding: 16px 20px !important;
  }
}
@media (min-width: 768px) {
  .menu-app .mexplorer-cats, .mexplorer-cats,
  .menu-app .mexplorer-cats--few, .mexplorer-cats--few,
  .menu-app .mexplorer-cats--many, .mexplorer-cats--many {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 14px !important;
    padding: 20px 24px !important;
  }
}
/* Desktop : 5 colonnes fixes */
@media (min-width: 1024px) {
  .menu-app .mexplorer-cats, .mexplorer-cats,
  .menu-app .mexplorer-cats--few, .mexplorer-cats--few,
  .menu-app .mexplorer-cats--many, .mexplorer-cats--many {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 22px 28px 28px !important;
  }
}

/* 3. Carte — reset complet */
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  /* Taille : occupe toute la colonne */
  flex: unset !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 0 !important;
  /* Layout interne */
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  padding: 0 !important;
  /* Visuel */
  background: var(--theme-inner-bg) !important;
  border: 1px solid var(--theme-border-on-inner, rgba(0,0,0,.07)) !important;
  border-radius: 20px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.06) !important;
  overflow: visible !important;
  white-space: normal !important;
  scroll-snap-align: unset !important;
  cursor: pointer !important;
  transition:
    transform .3s cubic-bezier(.22,.61,.36,1),
    box-shadow .3s ease,
    border-color .25s ease !important;
  text-decoration: none !important;
}
/* Reset pseudo-elements parasites */
.menu-app .mexplorer-cat.chip::before,
.menu-app .mexplorer-cat::before {
  display: none !important;
  content: none !important;
}

/* 4. Zone image — aspect-ratio 4:3 */
.mexplorer-cat-img-wrap {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  height: auto !important;        /* aspect-ratio gère la hauteur */
  position: relative !important;
  overflow: hidden !important;    /* contient le zoom image */
  flex-shrink: 0 !important;
  display: block !important;
  background: linear-gradient(140deg, #f0ebe3 0%, #e5dfd5 100%) !important;
  border-radius: 20px 20px 0 0 !important;
}
/* Placeholder no-img — fond chaud, cercle doré centré */
.no-img .mexplorer-cat-img-wrap {
  background: color-mix(in srgb, var(--theme-inner-bg) 90%, var(--theme-text-on-inner) 10%) !important;
}
.no-img .mexplorer-cat-img-wrap::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important; left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 52px !important; height: 52px !important;
  border-radius: 50% !important;
  background: rgba(196,144,10,.1) !important;
  box-shadow: 0 0 0 14px rgba(196,144,10,.05) !important;
}

/* 5. Image réelle */
.mexplorer-cat-img {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  transition: transform .45s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform !important;
  z-index: 0 !important;
}
@media (hover: hover) {
  .menu-app .mexplorer-cat:hover .mexplorer-cat-img {
    transform: scale(1.07) !important;
  }
}

/* 6. Zone texte */
.mexplorer-cat-label {
  padding: 11px 13px 13px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  background: var(--theme-inner-bg) !important;
  flex: 1 1 auto !important;
  border-top: 1px solid var(--theme-border-on-inner, rgba(0,0,0,.04)) !important;
  border-radius: 0 0 20px 20px !important;
}

/* 7. Nom — wrap naturel, jamais tronqué */
.menu-app .mexplorer-cat-name {
  font-size: .8rem !important;
  font-weight: 700 !important;
  color: var(--theme-text-on-inner, #111) !important;
  letter-spacing: -.01em !important;
  line-height: 1.35 !important;
  /* Wrap aux espaces, jamais mid-word */
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  overflow: visible !important;
  text-overflow: unset !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  text-align: left !important;
  text-shadow: none !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* 8. Nombre de plats */
.menu-app .mexplorer-cat-count {
  font-size: .65rem !important;
  font-weight: 500 !important;
  color: var(--theme-text-muted-on-inner, rgba(0,0,0,.38)) !important;
  text-align: left !important;
  text-shadow: none !important;
  white-space: nowrap !important;
  display: block !important;
  letter-spacing: 0 !important;
}

/* 9. Icône — masquée */
.mexplorer-cats .mexplorer-cat-icon,
.mexplorer-cats--few .mexplorer-cat-icon,
.mexplorer-cats--many .mexplorer-cat-icon {
  display: none !important;
}

/* 10. Shine (JS) */
.mexplorer-cat-shine {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  border-radius: 20px !important;
  opacity: 0 !important;
  transition: opacity .3s ease !important;
  mix-blend-mode: overlay !important;
}

/* 11. Hover */
@media (hover: hover) {
  .menu-app .mexplorer-cat.chip:hover,
  .menu-app .mexplorer-cat:hover {
    transform: translateY(-8px) !important;
    box-shadow:
      0 16px 36px rgba(0,0,0,.12),
      0 6px 12px rgba(0,0,0,.07),
      0 0 0 1px rgba(196,144,10,.1) !important;
    border-color: rgba(196,144,10,.28) !important;
  }
}

/* 12. Actif — contour doré */
.menu-app .mexplorer-cat.chip.active,
.menu-app .mexplorer-cat.active {
  border: 2px solid rgba(212,160,45,.88) !important;
  box-shadow:
    0 0 0 3px rgba(212,160,45,.1),
    0 0 24px rgba(196,144,10,.16),
    0 10px 28px rgba(0,0,0,.1) !important;
  transform: translateY(-5px) !important;
  background: var(--theme-inner-bg) !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-label {
  background: var(--theme-inner-bg) !important;
}
.menu-app .mexplorer-cat.active .mexplorer-cat-name { color: var(--theme-text-on-inner, #000) !important; }
.menu-app .mexplorer-cat.active .mexplorer-cat-count { color: var(--theme-text-muted-on-inner, rgba(160,110,0,.65)) !important; }

/* Badge ✓ actif */
.menu-app .mexplorer-cat.chip.active::after,
.menu-app .mexplorer-cat.active::after {
  content: "" !important;
  position: absolute !important;
  top: 9px !important; left: 9px !important; right: auto !important;
  width: 20px !important; height: 20px !important;
  font-size: .55rem !important; font-weight: 900 !important;
  color: #111 !important;
  background: rgba(212,160,45,.92) !important;
  border-radius: 50% !important;
  line-height: 20px !important; text-align: center !important;
  z-index: 5 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.18) !important;
}

/* ═══════════════════════════════════════════════════
   EMOJI BADGES PREMIUM — Luxe / Apple / Parfum style
   Glassmorphism · Gradient border · Depth · Reflet
   ═══════════════════════════════════════════════════ */
.dish-emoji-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  /* Base glassmorphism */
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(1.8);
  -webkit-backdrop-filter: blur(14px) saturate(1.8);
  /* Contour nacré subtil */
  border: 1px solid rgba(255,255,255,.75);
  /* Ombre douce + relief interne */
  box-shadow:
    0 2px 12px rgba(0,0,0,.12),
    0 1px 4px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.90),
    inset 0 -1px 0 rgba(0,0,0,.04);
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease;
}
/* Rayon de lumière interne — reflet premium */
.dish-emoji-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.52) 0%, rgba(255,255,255,.12) 40%, transparent 100%);
  pointer-events: none;
}
.dish-emoji-badge__icon {
  font-size: .85rem;
  line-height: 1;
  display: block;
  position: relative;
}
.dish-emoji-badge__text {
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}

/* 🥇 Gold — fond doré premium, contour ambre */
.dish-emoji-badge--gold {
  background: linear-gradient(145deg, rgba(255,238,158,.97) 0%, rgba(246,192,65,.90) 100%);
  border-color: rgba(222,165,30,.65);
  color: #7c4a00;
  box-shadow:
    0 3px 14px rgba(200,140,10,.32),
    0 1px 4px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,250,200,.85),
    inset 0 -1px 0 rgba(160,100,0,.12);
  text-shadow: 0 1px 0 rgba(255,220,80,.50);
}
.dish-emoji-badge--gold::before {
  background: linear-gradient(145deg, rgba(255,252,220,.60) 0%, rgba(255,220,80,.15) 40%, transparent 100%);
}

/* 🥈 Silver — fond argent / acier doux */
.dish-emoji-badge--silver {
  background: linear-gradient(145deg, rgba(242,247,254,.97) 0%, rgba(208,222,238,.92) 100%);
  border-color: rgba(175,200,228,.68);
  color: #2a4a70;
  box-shadow:
    0 3px 12px rgba(120,155,200,.26),
    0 1px 4px rgba(0,0,0,.07),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(120,155,200,.14);
}

/* 🥉 Bronze — fond pêche / terre cuite chaleureuse */
.dish-emoji-badge--bronze {
  background: linear-gradient(145deg, rgba(255,228,196,.97) 0%, rgba(232,160,98,.90) 100%);
  border-color: rgba(195,125,62,.62);
  color: #782e0c;
  box-shadow:
    0 3px 12px rgba(185,95,35,.28),
    0 1px 4px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,244,220,.85),
    inset 0 -1px 0 rgba(155,75,15,.12);
}
.dish-emoji-badge--bronze::before {
  background: linear-gradient(145deg, rgba(255,248,225,.55) 0%, rgba(255,190,100,.12) 45%, transparent 100%);
}

/* 🔥 Fire — orange ardent, chaleureux */
.dish-emoji-badge--fire {
  background: linear-gradient(145deg, rgba(255,238,212,.97) 0%, rgba(255,182,96,.90) 100%);
  border-color: rgba(228,128,45,.55);
  color: #8a3900;
  box-shadow:
    0 3px 12px rgba(220,100,25,.24),
    0 1px 4px rgba(0,0,0,.07),
    inset 0 1px 0 rgba(255,246,230,.85),
    inset 0 -1px 0 rgba(175,75,5,.10);
}

/* ⭐ Star — crème dorée, élégante */
.dish-emoji-badge--star {
  background: linear-gradient(145deg, rgba(255,250,225,.97) 0%, rgba(246,210,105,.90) 100%);
  border-color: rgba(210,162,52,.62);
  color: #664200;
  box-shadow:
    0 3px 12px rgba(185,138,15,.26),
    0 1px 4px rgba(0,0,0,.07),
    inset 0 1px 0 rgba(255,253,235,.90),
    inset 0 -1px 0 rgba(155,105,0,.10);
}

/* fallback */
/* 🏷️ Amber — badge manuel, ambre neutre premium */
.dish-emoji-badge--amber {
  background: linear-gradient(145deg, rgba(255,244,210,.97) 0%,rgba(251,188,5,.22) 100%);
  border-color: rgba(215,158,0,.40);
  color: #7c4a00;
  box-shadow: 0 2px 8px rgba(180,120,0,.15),0 1px 3px rgba(0,0,0,.06);
  font-weight:700;
}

.dish-emoji-badge--default {
  background: rgba(255,255,255,.88);
  color: #1e293b;
}

/* Hover lift (desktop) — lévitation fine */
@media (hover: hover) {
  .dish-card:hover .dish-emoji-badge {
    transform: translateY(-3px);
    box-shadow:
      0 7px 22px rgba(0,0,0,.14),
      0 2px 6px rgba(0,0,0,.07),
      inset 0 1px 0 rgba(255,255,255,.92),
      inset 0 -1px 0 rgba(0,0,0,.04);
  }
}

/* Mobile — icône seule, taille adaptée */
@media (max-width: 479px) {
  .dish-emoji-badge {
    top: 7px;
    left: 7px;
    padding: 4px 9px;
    gap: 0;
  }
  .dish-emoji-badge__text { display: block; font-size: .6rem; letter-spacing: .06em; }
  .dish-emoji-badge__icon { display: none; }
}
/* ════════════════════════════════════════════════════
   DISH CARDS — PREMIUM 3D OVERRIDE FIXES
   Empêche les règles CSS !important de bloquer le JS
   ════════════════════════════════════════════════════ */

/* Badge — transition douce pour micro-lévitation */
.dish-emoji-badge {
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease;
}

/* Shine overlay — normal blend pour être visible sur fond blanc */
.dish-card-shine {
  mix-blend-mode: normal !important;
}

/* Image : transition de base (JS override au hover) */
[data-dish-image] {
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

/* Annuler le transform: none CSS par défaut (évite conflit avec JS) */
[data-dish-card] {
  will-change: transform !important;
}

/* ══════════════════════════════════════════════════════
   MOBILE CARDS — Relief premium sur téléphone uniquement
   Cartes posées sur la page — séparation nette du fond
   Desktop : non affecté (media query strict max-width)
   ══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Fond carte = fond intérieur du thème (suit les couleurs admin) */
  [data-category-section] .dish-card {
    background: var(--theme-inner-bg) !important;

    /* Multi-layer shadow warm — profondeur élégante, pas lourde */
    box-shadow:
      0 1px 2px rgba(0,0,0,.04),
      0 3px 10px rgba(110,65,10,.09),
      0 9px 26px rgba(0,0,0,.08),
      0 0 0 1px rgba(185,140,50,.10) !important;

    /* Contour = bordure thème lisible sur fond intérieur */
    border: 1px solid var(--theme-border-on-inner, rgba(180,140,70,.15)) !important;

    /* Border-radius cohérent */
    border-radius: 20px !important;

    /* Espace généreux entre cartes */
    margin-bottom: 14px !important;

    /* Transition maintenue pour l'effet touch 3D */
    transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .32s ease !important;
  }

  /* Séparation image / contenu — léger voile doré en bas de photo */
  [data-category-section] .dish-card .media {
    position: relative !important;
    overflow: hidden !important;
  }
  [data-category-section] .dish-card .media::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 38% !important;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(255,246,224,.28) 100%
    ) !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }

  /* Nom du plat : suit le contraste du fond intérieur */
  [data-category-section] .dish-card .dish-name {
    color: var(--theme-text-on-inner, #1a1208) !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   DUAL PRICE FIX GLOBAL — priorité absolue (fin de fichier)
   Supprime les "box" blanches sur les cartes menu.
   Résultat :
     17,90 € midi
     24,90 € soir
   ═══════════════════════════════════════════════════════════════ */

/* Conteneur des deux lignes : colonne propre */
.dual-price-card,
[data-category-section] .dish-card .dual-price-card,
[data-category-section] .dish-card .dish-side.dual-pricing .dual-price-card {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 2px !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  width: auto !important;
  min-width: 0 !important;
}

/* Chaque ligne prix : inline, sans fond ni boite */
.dual-price-row,
[data-category-section] .dish-card .dual-price-row {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  flex: 0 0 auto !important;
  gap: 5px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  grid-template-areas: unset !important;
  grid-template-columns: unset !important;
  grid-template-rows: unset !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: auto !important;
  white-space: nowrap !important;
}

/* Séparateur entre lignes : aucun */
.dual-price-row + .dual-price-row::before,
[data-category-section] .dish-card .dual-price-row + .dual-price-row::before {
  content: none !important;
  display: none !important;
}

/* Montant : en premier, gros et contrasté */
.dual-price-amount,
[data-category-section] .dish-card .dual-price-amount {
  order: 1 !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  color: var(--theme-primary, #1c1510) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  grid-area: unset !important;
  justify-self: unset !important;
  align-self: unset !important;
}

/* Label midi/soir : discret, après le prix */
.dual-price-badge,
[data-category-section] .dish-card .dual-price-badge {
  order: 2 !important;
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: lowercase !important;
  color: #C8920A !important;
  grid-area: unset !important;
  line-height: 1.1 !important;
}

/* Description verbose : masquée sur les cartes */
.dual-price-copy,
[data-category-section] .dish-card .dual-price-copy {
  display: none !important;
}

/* Media mobile : conserver le fix */
@media (max-width: 720px) {
  .dual-price-card,
  [data-category-section] .dish-card .dual-price-card {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    gap: 2px !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .dual-price-row,
  [data-category-section] .dish-card .dual-price-row {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
  }
}

/* ═══ FIN DUAL PRICE FIX GLOBAL ═══ */

/* ═══ FIX VOILE BLANC — DÉFINITIF ═══ */
/* Supprime absolument tout ::before sur les cartes plats, quelle que soit la règle précédente */
.dish-card::before,
[data-category-section] .dish-card::before {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}
/* Supprime tout overlay sur l'image (gradient sombre/crème = ligne de séparation visible) */
[data-category-section] .dish-card .media::after {
  content: none !important;
  display: none !important;
}
/* Supprime l'ombre et la bordure sur .media */
[data-category-section] .dish-card .media {
  box-shadow: none !important;
  border: 0 !important;
}
/* ═══ FIN FIX VOILE BLANC ═══ */

/* ══════════════════════════════════════════════════════════════
   ANTI-IA PASS — Dish cards : Uber Eats · Deliveroo · Linear
   Réduit radius · supprime glow · hover discret · plus pro
   ══════════════════════════════════════════════════════════════ */

/* ── Carte : radius réduit, pas de float, hover de fond ── */
.dish-card,
[data-category-section] .dish-card {
  border-radius: 14px !important;
  box-shadow: 0 1px 0 rgba(15,23,42,.06), 0 0 0 1px rgba(15,23,42,.07) !important;
  transition: background .15s ease, border-color .15s ease !important;
}

@media (hover: hover) {
  .dish-card:hover,
  [data-category-section] .dish-card:hover {
    transform: none !important;
    box-shadow: 0 1px 0 rgba(15,23,42,.06), 0 0 0 1px rgba(15,23,42,.11) !important;
    background: color-mix(in srgb, var(--theme-inner-bg) 92%, var(--theme-text-on-inner) 8%) !important;
    border-color: var(--theme-border-on-inner, rgba(15,23,42,.13)) !important;
  }
}

.dish-card:active,
[data-category-section] .dish-card:active {
  transform: none !important;
  background: color-mix(in srgb, var(--theme-inner-bg) 88%, var(--theme-text-on-inner) 12%) !important;
}

/* ── Image : radius réduit, sans shadow ni border ── */
.media,
[data-category-section] .dish-card .media {
  border-radius: 10px !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Zoom image plus subtil au hover */
@media (hover: hover) {
  .dish-card:hover .media img,
  [data-category-section] .dish-card:hover .media img {
    transform: scale(1.03) !important;
  }
}

/* ── Prix : texte brut, gros et lisible ── */
.price-pill,
[data-category-section] .dish-card .price-pill {
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: var(--theme-primary, #111) !important;
  padding: 0 !important;
  min-height: 0 !important;
  min-width: auto !important;
  font-weight: 900 !important;
  font-size: 1.18rem !important;
  letter-spacing: -0.02em !important;
}

/* ── Badges : étiquettes sobres, pas de chip rond ── */
.pop-badge,
[data-category-section] .dish-card .pop-badge {
  border-radius: 5px !important;
}
.home-badge,
[data-category-section] .dish-card .home-badge {
  border-radius: 5px !important;
}
.dish-rating-pill,
[data-category-section] .dish-card .dish-rating-pill {
  border-radius: 5px !important;
}

/* ── Bouton Ajouter : radius réduit, pas de float ── */
.dish-card .dish-add-btn,
[data-category-section] .dish-card .dish-side .dish-add-btn {
  border-radius: 8px !important;
  box-shadow: 0 1px 3px rgba(15,23,42,.16) !important;
}
.dish-card .dish-add-btn::before,
[data-category-section] .dish-card .dish-add-btn::before {
  border-radius: 8px 8px 0 0 !important;
}
@media (hover: hover) {
  .dish-card:hover .dish-add-btn,
  [data-category-section] .dish-card:hover .dish-side .dish-add-btn {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(15,23,42,.22) !important;
    filter: none !important;
  }
  .dish-card:hover .dish-add-btn svg,
  [data-category-section] .dish-card:hover .dish-side .dish-add-btn svg {
    transform: none !important;
  }
}

/* ── Mobile ≤ 520px ── */
@media (max-width: 520px) {
  .dish-card,
  [data-category-section] .dish-card {
    border-radius: 12px !important;
  }
  .media,
  [data-category-section] .dish-card .media {
    border-radius: 8px !important;
  }
  .price-pill,
  [data-category-section] .dish-card .price-pill {
    border-radius: 7px !important;
  }
}

/* ── Tablet 700–900px ── */
@media (min-width: 700px) and (max-width: 900px) {
  .media,
  [data-category-section] .dish-card .media {
    border-radius: 9px !important;
  }
}

/* ══ FIN ANTI-IA PASS ══ */

/* ═══════════════════════════════════════════════════════════════
   PREMIUM REFINEMENT PASS
   • Catégories : hover doux, actif = contour brand
   • Photos catégories légèrement plus grandes
   • Description : 2 lignes max
   ═══════════════════════════════════════════════════════════════ */

/* ─ 4. Catégories inactive : fond plus sobre ─ */
.menu-app .mexplorer-cat.chip,
.menu-app .mexplorer-cat {
  border-color: var(--theme-border-on-inner, rgba(0,0,0,.07)) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.04) !important;
}

/* Hover doux — pas de gros rebond ─ */
@media (hover: hover) {
  .menu-app .mexplorer-cat.chip:hover,
  .menu-app .mexplorer-cat:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.09), 0 2px 5px rgba(0,0,0,.05) !important;
    border-color: rgba(0,0,0,.10) !important;
  }
  .menu-app .mexplorer-cat:hover .mexplorer-cat-img {
    transform: scale(1.04) !important;
  }
}

/* Catégorie active → contour couleur brand du restaurant ─ */
.menu-app .mexplorer-cat.chip.active,
.menu-app .mexplorer-cat.active {
  border: 2px solid var(--primary-color) !important;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--primary-color) 14%, transparent 86%),
    0 6px 18px rgba(0,0,0,.11) !important;
  transform: translateY(-2px) !important;
}

/* Badge indicateur actif → adapté à la couleur brand ─ */
.menu-app .mexplorer-cat.chip.active::after,
.menu-app .mexplorer-cat.active::after {
  background: var(--primary-color) !important;
  color: var(--hero-text) !important;
}

/* ─ 5. Photos catégories légèrement plus grandes ─ */
.mexplorer-cat-img-wrap {
  height: 104px !important;
}
@media (max-width: 640px) {
  .mexplorer-cat-img-wrap {
    height: 88px !important;
  }
}
@media (min-width: 721px) {
  .mexplorer-cat-img-wrap {
    height: 116px !important;
  }
}

/* ─ 6. Description : 2 lignes maximum ─ */
.dish-desc,
[data-category-section] .dish-card .dish-desc {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}

/* ══ FIN PREMIUM REFINEMENT PASS ══ */

/* ══════════════════════════════════════════════════════════════
   DISH SHEET REFINEMENT PASS
   Cible : titre/prix trop gros · chips pill → carrés · sélection
   brand color · CTA moins énorme · image moins haute
   Source : Uber Eats · Deliveroo · Maison Saclay
   ══════════════════════════════════════════════════════════════ */

/* ─ Image : moins haute, respire mieux ─ */
.dish-sheet .sheet-image {
  min-height: 0 !important;
  max-height: 42vh !important;
  aspect-ratio: 16/10 !important;
}
@media (min-width: 760px) {
  .dish-sheet .sheet-image { max-height: 38vh !important; }
}

/* ─ Titre du plat : proportionné, pas XLARGE ─ */
.dish-sheet .sheet-main-card h3 {
  font-size: clamp(1.28rem, 5.5vw, 1.58rem) !important;
  letter-spacing: -.04em !important;
  line-height: 1.15 !important;
  margin: 0 0 10px !important;
}

/* ─ Prix : badge sobre, pas un display géant ─ */
.dish-sheet .sheet-price {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  padding: 0 12px !important;
  border-radius: 7px !important;
  background: #1c1510 !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  line-height: 1 !important;
}

/* ─ Chips options gratuites (Crudités, Sauces) : carrés ─ */
.dish-sheet .supp-row.opt-chip {
  border-radius: 8px !important;
  padding: 8px 14px !important;
  min-height: 36px !important;
  border-width: 1px !important;
  border-color: rgba(40,25,10,.14) !important;
}
.dish-sheet .opt-chip-label {
  font-size: .86rem !important;
}

/* Sélection chip → couleur brand ─ */
.dish-sheet .supp-row.opt-chip.is-selected {
  background: color-mix(in srgb, var(--primary-color) 10%, #fff 90%) !important;
  border-color: var(--primary-color) !important;
  border-width: 1.5px !important;
}
.dish-sheet .supp-row.opt-chip.is-selected .opt-chip-label {
  color: color-mix(in srgb, var(--primary-color) 85%, #111 15%) !important;
  font-weight: 700 !important;
}

/* ─ Opt-cards (suppléments payants) : moins arrondis ─ */
.dish-sheet .supp-row.opt-card {
  border-radius: 10px !important;
  padding: 11px 14px !important;
  min-height: 48px !important;
  border-width: 1px !important;
  border-color: rgba(40,25,10,.10) !important;
}

/* Bouton + : carré, brand color ─ */
.dish-sheet .opt-card-add {
  border-radius: 8px !important;
  width: 30px !important;
  height: 30px !important;
  background: #ede8e0 !important;
  color: #444 !important;
}

/* Sélection card → couleur brand ─ */
.dish-sheet .supp-row.opt-card.is-selected {
  border-color: var(--primary-color) !important;
  background: color-mix(in srgb, var(--primary-color) 6%, #fff 94%) !important;
  box-shadow: 0 3px 12px color-mix(in srgb, var(--primary-color) 14%, transparent 86%) !important;
}
.dish-sheet .supp-row.opt-card.is-selected .opt-card-add {
  background: var(--primary-color) !important;
  border-radius: 8px !important;
  color: transparent !important;
  font-size: 0 !important;
}
.dish-sheet .supp-row.opt-card.is-selected .opt-card-add::after {
  color: var(--hero-text) !important;
}
.dish-sheet .supp-row.opt-card.is-selected .opt-card-price {
  color: color-mix(in srgb, var(--primary-color) 75%, #000 25%) !important;
}

/* ─ Badge "Obligatoire" : rectangle, pas pill ─ */
.dish-sheet .req-badge {
  border-radius: 5px !important;
  font-size: .62rem !important;
  padding: 2px 8px !important;
  letter-spacing: .02em !important;
  border: 1px solid rgba(180,100,0,.18) !important;
}

/* ─ Pricing midi/soir : sélection brand ─ */
.dish-sheet .pricing-choice.is-selected {
  border-color: var(--primary-color) !important;
  background: color-mix(in srgb, var(--primary-color) 6%, #fff 94%) !important;
  box-shadow: 0 3px 12px color-mix(in srgb, var(--primary-color) 12%, transparent 88%) !important;
}
.dish-sheet .pricing-choice {
  border-radius: 10px !important;
}

/* ─ CTA "Ajouter au panier" : proportionné ─ */
.dish-sheet .sheet-actions .btn-primary {
  min-height: 50px !important;
  border-radius: 12px !important;
  font-size: .96rem !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
  box-shadow: 0 10px 26px rgba(21,128,61,.32) !important;
}
.dish-sheet .sheet-actions .btn-primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 34px rgba(21,128,61,.40) !important;
}

/* Bouton fermer + outline : même radius ─ */
.dish-sheet .sheet-actions .btn-outline,
.dish-sheet .sheet-actions .btn-ghost {
  min-height: 50px !important;
  border-radius: 12px !important;
}

/* ─ Footer : plus compact ─ */
.dish-sheet .dish-sheet-foot {
  padding: 11px 18px calc(13px + env(safe-area-inset-bottom, 0px)) !important;
  gap: 8px !important;
}
.dish-sheet .sheet-total {
  font-size: 1.25rem !important;
}

/* ══ FIN DISH SHEET REFINEMENT PASS ══ */

/* ══════════════════════════════════════════════════════════════════════
   DISH SHEET — CALQUE DE THÈME (fiche détail suit les couleurs admin)
   Couche unique et autoritaire : scope #dish-sheet (spécificité ID) → gagne
   sur toutes les règles crème/blanches empilées plus haut. Ne touche QUE
   couleurs/fonds, jamais la mise en page ni la logique.
   CONSERVÉS : kicker doré (.sheet-main-kicker), badge "Obligatoire" (.req-badge),
   CTA vert "Ajouter" (.btn-primary), états sélectionnés (couleur brand).
   ══════════════════════════════════════════════════════════════════════ */

/* Conteneur + corps + zones visuelles → fond intérieur (supprime les dégradés blancs) */
#dish-sheet.dish-sheet,
#dish-sheet .dish-sheet-body,
#dish-sheet .sheet-top,
#dish-sheet .sheet-top-premium,
#dish-sheet .sheet-visual-col,
#dish-sheet .sheet-image-frame { background: var(--theme-inner-bg) !important; }

/* Pied de page sticky */
#dish-sheet .dish-sheet-foot {
  background: var(--theme-inner-bg) !important;
  border-top: 1px solid var(--theme-border-on-inner, rgba(40,25,10,.08)) !important;
}

/* Placeholders image (plat sans photo + suggestions) → tonalité du thème */
#dish-sheet .sheet-image.empty,
#dish-sheet .pairing-media {
  background: color-mix(in srgb, var(--theme-inner-bg) 88%, var(--theme-text-on-inner) 12%) !important;
}

/* Titres / noms → texte lisible sur fond intérieur */
#dish-sheet .sheet-main-card h3,
#dish-sheet .sheet-section-head h4,
#dish-sheet .opt-group-head h4,
#dish-sheet .opt-chip-label,
#dish-sheet .opt-card-name,
#dish-sheet .pricing-choice-copy strong,
#dish-sheet .pairing-head h4,
#dish-sheet .pairing-copy strong { color: var(--theme-text-on-inner) !important; }

/* PRIX → couleur accent (couleur "secondaire" admin = prix en avant) */
#dish-sheet .sheet-price,
#dish-sheet .sheet-total,
#dish-sheet .pricing-choice-price,
#dish-sheet .pairing-copy small,
#dish-sheet .pairing-foot small,
#dish-sheet .dual-price-amount { color: var(--theme-primary) !important; }

/* Textes secondaires → muet lisible */
#dish-sheet .sheet-desc,
#dish-sheet .sheet-summary,
#dish-sheet .opt-card-price,
#dish-sheet .pricing-choice-copy small,
#dish-sheet .allergen-pill,
#dish-sheet .pairing-head p,
#dish-sheet .sheet-actions .btn-ghost { color: var(--theme-text-muted-on-inner) !important; }

/* Cartes/blocs internes NON sélectionnés → fond intérieur dérivé + bordure thème */
#dish-sheet .supp-row.opt-chip:not(.is-selected),
#dish-sheet .supp-row.opt-card:not(.is-selected),
#dish-sheet .pricing-choice:not(.is-selected),
#dish-sheet .pairing-card,
#dish-sheet .sheet-actions .btn-outline {
  background: color-mix(in srgb, var(--theme-inner-bg) 92%, var(--theme-text-on-inner) 8%) !important;
  border-color: var(--theme-border-on-inner, rgba(40,25,10,.12)) !important;
  color: var(--theme-text-on-inner) !important;
}

/* Bouton "+" des suppléments NON sélectionnés */
#dish-sheet .supp-row.opt-card:not(.is-selected) .opt-card-add {
  background: color-mix(in srgb, var(--theme-inner-bg) 82%, var(--theme-text-on-inner) 18%) !important;
  color: var(--theme-text-on-inner) !important;
}

/* États SÉLECTIONNÉS → fond accent sombre + texte clair (sinon fond clair + texte blanc = invisible) */
#dish-sheet .supp-row.opt-card.is-selected,
#dish-sheet .supp-row.opt-chip.is-selected,
#dish-sheet .pricing-choice.is-selected {
  background: color-mix(in srgb, var(--theme-primary) 22%, var(--theme-inner-bg)) !important;
  border-color: var(--theme-primary) !important;
}
#dish-sheet .supp-row.opt-card.is-selected .opt-card-name,
#dish-sheet .supp-row.opt-card.is-selected .opt-card-price,
#dish-sheet .supp-row.opt-chip.is-selected .opt-chip-label,
#dish-sheet .pricing-choice.is-selected .pricing-choice-price,
#dish-sheet .pricing-choice.is-selected .pricing-choice-copy strong,
#dish-sheet .pricing-choice.is-selected .pricing-choice-copy small {
  color: var(--theme-text-on-inner) !important;
}

