/* ============================================================
   LILA GUSTO — Dark Copper Edition
   Rich dark theme with warm copper accents
   ============================================================ */

:root {
  /* Dark base */
  --bg: #0a0c0b;
  --bg-elevated: #101312;
  --bg-card: #141816;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);

  /* Text */
  --text-primary: #eaf0ed;
  --text-secondary: rgba(234, 240, 237, 0.78);
  --text-muted: rgba(234, 240, 237, 0.64);
  --text-faint: rgba(234, 240, 237, 0.56);

  /* Warm copper accent */
  --accent: #d24b91;
  --accent-light: #e9a5c9;
  --accent-dim: rgba(210, 75, 145, 0.45);
  --accent-glow: rgba(210, 75, 145, 0.15);
  --accent-border: rgba(210, 75, 145, 0.3);
  --accent-deep: #781044;
  --ember: #d24b91;
  --ember-hot: #e9a5c9;
  --ember-deep: #781044;
  --ember-glow: rgba(210, 75, 145, 0.28);
  --lila: #b78cff;
  --lila-dim: rgba(183, 140, 255, 0.22);

  /* Borders */
  --border: rgba(255, 255, 255, 0.065);
  --border-mid: rgba(255, 255, 255, 0.095);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(210, 75, 145, 0.06);

  /* Layout */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --topbar-logo-size: 86px;
  --topbar-logo-plate: #f5efe8;
  --topbar-h: calc(var(--topbar-logo-size) + 30px);
  --mobile-sticky-top: 0px;
  --max-w: 1100px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 320ms;
  --dur-slow: 550ms;

  color-scheme: dark;
}


/* ---- Reset ---- */

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Karla", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.sheet-open {
  overflow: hidden;
  touch-action: none;
}

button, input { font: inherit; letter-spacing: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
img { max-width: 100%; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-width: 1.6;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: rgba(210, 75, 145, 0.24);
  color: var(--text-primary);
}


/* ---- Skip Link ---- */

.skip-link {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top));
  left: calc(12px + env(safe-area-inset-left));
  z-index: 200;
  padding: 10px 16px;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform var(--dur) var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }


/* ---- Ambient ---- */

.ambient {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(210, 75, 145, 0.045), transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 100%, rgba(120, 16, 68, 0.035), transparent 70%);
}

.ambient::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  mix-blend-mode: overlay;
}


/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  position: relative;
  z-index: 25;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: var(--topbar-h);
  padding:
    calc(16px + env(safe-area-inset-top))
    calc(var(--gutter) + env(safe-area-inset-right))
    8px
    calc(var(--gutter) + env(safe-area-inset-left));
  background: var(--bg-elevated);
}

.brand {
  display: inline-grid;
  place-items: center;
  min-width: 0;
  color: inherit;
}

.topbar-logo {
  grid-column: 2;
  justify-self: center;
  width: var(--topbar-logo-size);
  height: var(--topbar-logo-size);
  border-radius: 50%;
  transition:
    transform var(--dur) var(--ease),
    filter var(--dur) var(--ease);
}

.topbar-logo:hover {
  transform: translateY(-1px) scale(1.025);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24));
}

.topbar-logo .brand-emblem {
  display: grid; place-items: center;
  flex: 0 0 auto;
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--topbar-logo-plate);
  border: 1px solid rgba(177, 57, 53, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -8px 18px rgba(78, 43, 30, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.24);
}

.topbar-logo .brand-emblem img {
  width: calc(var(--topbar-logo-size) - 8px);
  height: calc(var(--topbar-logo-size) - 8px);
  object-fit: contain;
}

.topbar-tools {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--bg-glass);
  border: 1px solid var(--border-mid);
  border-radius: 999px;
}

.language-toggle {
  display: none;
}

.language-options {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.language-button {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  height: 44px;
  padding: 0 10px;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--text-secondary);
  background: var(--bg-glass-hover);
}

.language-button.is-active {
  color: var(--accent-light);
  background: var(--accent-glow);
  box-shadow: inset 0 0 0 1px var(--accent-border);
}

.language-toggle-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

html[dir="rtl"] .topbar-tools {
  grid-column: 1;
  justify-self: start;
}

html[dir="rtl"] .section-heading,
html[dir="rtl"] .signature-copy,
html[dir="rtl"] .product-info,
html[dir="rtl"] .featured-body,
html[dir="rtl"] .sheet-summary,
html[dir="rtl"] .visit-band {
  text-align: right;
}

html[dir="rtl"] .sheet-price-tag {
  justify-items: start;
}

.price-update {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 0;
  max-width: calc(100vw - 32px);
  padding: 0;
  color: var(--text-faint);
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  white-space: normal;
}

.price-update time {
  color: var(--accent-light);
  font-weight: 700;
}

/* ============================================================
   SIGNATURE / FEATURED
   ============================================================ */

.signature-stage {
  position: relative;
  padding:
    clamp(64px, 12vw, 120px)
    calc(var(--gutter) + env(safe-area-inset-right))
    clamp(64px, 12vw, 120px)
    calc(var(--gutter) + env(safe-area-inset-left));
  background: var(--bg);
  overflow: hidden;
}

.menu-favorites {
  max-width: var(--max-w);
  margin: 0 auto 28px;
  padding: 10px 0 30px;
  background: transparent;
}

.signature-stage::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  width: 200px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}

.signature-layout {
  display: grid;
  gap: clamp(36px, 6vw, 56px);
  width: min(var(--max-w), 100%);
  margin: 0 auto;
}

.signature-copy {
  display: grid; gap: 14px; align-content: center;
}

.signature-copy p,
.section-heading p,
.featured-category {
  margin: 0;
  color: var(--accent);
  font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.signature-copy h2,
.section-heading h2,
.visit-band h2,
.category-title h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.signature-copy h2 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 600; line-height: 0.9;
  letter-spacing: 0;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 45%, var(--text-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.section-heading h2 {
  background: linear-gradient(135deg, var(--text-primary) 10%, var(--accent-light) 50%, var(--text-primary) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.signature-copy > span {
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 0.9rem; font-weight: 400;
  line-height: 1.7;
}

.featured-grid {
  display: grid; gap: 14px;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px; width: 100%;
  padding: 14px; color: inherit; text-align: left;
  background: var(--bg-glass);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.featured-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(210,75,145,0.055), transparent 40%);
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}

.featured-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.featured-card:hover::after { opacity: 1; }

.featured-photo {
  width: 120px; height: 140px;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: 10px;
}

.featured-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: var(--image-position, center center);
  transition: transform var(--dur-slow) var(--ease);
}

.featured-card:hover .featured-photo img {
  transform: scale(1.06);
}

.featured-body {
  display: grid; align-content: center;
  gap: 6px; min-width: 0; padding: 4px 0;
}

.featured-body strong {
  color: var(--text-primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 600; line-height: 1;
}

.featured-body em {
  color: var(--accent);
  font-style: normal;
  font-size: 0.875rem; font-weight: 600;
}

.featured-body span:last-child {
  display: -webkit-box; overflow: hidden;
  color: var(--text-muted);
  font-size: 0.875rem; line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/* ============================================================
   MENU
   ============================================================ */

.menu-shell {
  position: relative; z-index: 4;
  padding:
    clamp(16px, 4vw, 36px)
    calc(var(--gutter) + env(safe-area-inset-right))
    clamp(72px, 12vw, 140px)
    calc(var(--gutter) + env(safe-area-inset-left));
  background: var(--bg-elevated);
}

.section-heading {
  display: grid; gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto 22px;
}

.section-heading p { color: var(--accent); }

.menu-title-group {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.section-heading h2 {
  color: var(--text-primary);
  font-size: clamp(2.15rem, 7vw, 4.2rem);
  font-weight: 600; line-height: 0.88;
  letter-spacing: 0;
}

.section-heading span {
  color: var(--text-muted);
  font-size: 0.875rem; font-weight: 400;
}

.section-heading .price-update {
  color: var(--text-faint);
  font-size: 0.875rem;
  font-weight: 600;
}

.section-heading .price-update span {
  color: inherit;
  font: inherit;
}

.section-heading .price-update time {
  color: var(--accent-light);
  font-weight: 700;
}

/* ---- Search & Categories ---- */

.menu-controls {
  position: sticky; top: 0; z-index: 20;
  display: grid; gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto 28px;
  padding: 16px 0;
  background: var(--bg-elevated);
  box-shadow: 0 12px 22px rgba(10, 12, 11, 0.92);
}

.search-control {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px; align-items: center;
  height: 50px; padding: 0 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.search-control:focus-within {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-control svg {
  width: 18px; height: 18px;
  color: var(--text-muted);
}

.search-control input {
  width: 100%; min-width: 0; height: 100%;
  padding: 0; color: var(--text-primary);
  background: transparent; border: 0; outline: 0;
  font-size: 0.9rem; font-weight: 400;
}

.search-control input::placeholder {
  color: var(--text-muted);
}

.category-rail {
  display: flex; gap: 6px;
  overflow-x: auto; padding-bottom: 2px;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar { display: none; }

.category-pill {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px;
  min-height: 44px;
  height: 44px; padding: 0 18px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.875rem; font-weight: 600;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}

.category-pill:hover {
  color: var(--text-secondary);
  background: var(--bg-glass);
}

.category-pill.is-active {
  color: var(--accent);
  background: var(--accent-glow);
  border-color: var(--accent-border);
}

/* ---- Status Note ---- */

.status-note {
  max-width: var(--max-w);
  margin: 0 auto 28px;
  padding: 12px 0;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  font-size: 0.875rem; line-height: 1.6;
}

.compliance-note {
  margin-bottom: 14px;
  padding: 0;
  color: var(--text-secondary);
  border-top: 0;
  border-bottom: 1px solid rgba(210, 75, 145, 0.12);
}

.trust-badges {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.trust-badge {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-divider {
  color: rgba(240, 182, 106, 0.66);
  font-weight: 700;
}

.trust-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-details {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.trust-details summary {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  color: var(--text-secondary);
  cursor: pointer;
  list-style: none;
}

.trust-details summary:focus-visible {
  outline: 0;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(240, 182, 106, 0.48);
}

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

.trust-details summary::after {
  width: 7px;
  height: 7px;
  margin-inline-end: 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--dur) var(--ease);
}

.trust-details[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.trust-details p {
  max-width: 58rem;
  margin: 0;
  padding: 0 28px 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}


/* ---- Products ---- */

.menu-list {
  max-width: var(--max-w);
  margin: 0 auto;
}

.category-section {
  padding: 40px 0 20px;
  scroll-margin-top: 160px;
}

.category-title {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-mid);
}

.category-title h3 {
  color: var(--text-primary);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 600; line-height: 1;
  letter-spacing: 0;
}

.category-title span {
  color: var(--text-faint);
  font-size: 0.875rem; font-weight: 500;
}

.category-note {
  margin: 14px 0 4px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-list {
  display: grid; gap: 0;
}

.product-row {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px; width: 100%;
  padding: 20px 8px;
  color: inherit; text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  transition: all var(--dur) var(--ease);
}

.product-row:hover {
  background: var(--bg-glass);
  border-radius: var(--radius);
  margin-inline: -8px;
  padding-inline: 16px;
  border-color: transparent;
}

.product-row:hover + .product-row {
  border-top-color: transparent;
}

.product-thumb {
  display: grid; place-items: center;
  width: 104px; height: 104px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.product-thumb img, .sheet-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: var(--image-position, center center);
  transition: transform var(--dur-slow) var(--ease);
}

.product-row:hover .product-thumb img {
  transform: scale(1.05);
}

.photo-fallback {
  color: var(--text-faint);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem; font-weight: 600;
}

.product-info {
  display: grid; align-content: center;
  gap: 6px; min-width: 0;
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px; align-items: baseline;
}

.product-heading strong {
  min-width: 0; color: var(--text-primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  font-weight: 600; line-height: 1.05;
}

.product-heading em {
  color: var(--accent);
  font-style: normal;
  font-size: 0.875rem; font-weight: 600;
  white-space: nowrap;
}

.product-description {
  display: -webkit-box; overflow: hidden;
  color: var(--text-muted);
  font-size: 0.875rem; font-weight: 400;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-badges {
  display: flex; flex-wrap: wrap;
  gap: 6px; min-height: 24px; margin-top: 2px;
}

.product-badges span, .allergen-chip {
  display: inline-flex; align-items: center;
  min-height: 28px; padding: 4px 10px;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0;
}


/* ---- Empty State ---- */

.empty-state {
  max-width: 460px; margin: 48px auto 0;
  padding: 40px 28px; text-align: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
}

.empty-state h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--text-primary);
}

.empty-state p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.empty-state-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--text-primary);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.empty-state-action:hover,
.empty-state-action:focus-visible {
  color: #0a0c0b;
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
}

.empty-state-action.is-secondary {
  color: var(--text-secondary);
  background: var(--bg-glass);
  border-color: var(--border-strong);
}

.empty-suggestions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-mid);
  text-align: left;
}

.empty-suggestions[hidden] { display: none; }

.empty-suggestions-title {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 700;
}

.empty-suggestion-list {
  display: grid;
  gap: 8px;
}

.empty-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--text-primary);
  text-align: left;
  background: var(--bg-glass);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.empty-suggestion:hover,
.empty-suggestion:focus-visible {
  background: var(--bg-glass-hover);
  border-color: var(--accent-border);
}

.empty-suggestion strong { font-size: 0.9rem; }
.empty-suggestion span { color: var(--accent-light); font-size: 0.875rem; font-weight: 700; }


/* ============================================================
   VISIT BAND
   ============================================================ */

.visit-band {
  position: relative;
  display: grid; gap: 32px;
  padding:
    clamp(64px, 12vw, 120px)
    calc(var(--gutter) + env(safe-area-inset-right))
    clamp(64px, 12vw, 120px)
    calc(var(--gutter) + env(safe-area-inset-left));
  background: var(--bg);
}

.visit-band::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  width: 160px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}

.visit-band p {
  margin: 0; color: var(--accent);
  font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.visit-band h2 {
  max-width: 640px;
  color: var(--text-primary);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 600; line-height: 1;
  letter-spacing: 0;
}

.visit-band address {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.88rem; line-height: 1.8;
}

.visit-band a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--dur) var(--ease);
}

.visit-band a:hover {
  color: var(--accent-light);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.visit-band .visit-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  padding: 10px 16px;
  color: var(--text-primary);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  line-height: 1.2;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.visit-band .visit-action:hover,
.visit-band .visit-action:focus-visible {
  color: #0a0c0b;
  background: var(--accent-light);
  border-color: var(--accent-light);
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 28px;
  padding:
    18px
    calc(var(--gutter) + env(safe-area-inset-right))
    calc(22px + env(safe-area-inset-bottom))
    calc(var(--gutter) + env(safe-area-inset-left));
  color: var(--text-faint);
  background: var(--bg);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

/* ============================================================
   PRODUCT SHEET — Premium redesign
   ============================================================ */

.sheet-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 300ms var(--ease);
}

.sheet-backdrop.is-visible { opacity: 1; }

.product-sheet {
  --sheet-title-size: clamp(1.55rem, 6vw, 2.2rem);
  --sheet-body-size: 0.9375rem;
  --sheet-meta-size: 0.875rem;
  --sheet-price-size: 1rem;
  --sheet-section-title-size: 0.875rem;
  --sheet-section-note-size: 0.875rem;
  --sheet-row-min: 42px;
  --sheet-variation-name-size: 0.875rem;
  --sheet-variation-price-size: 0.9375rem;
  --sheet-nutrition-min: 44px;
  --sheet-nutrition-label-size: 0.875rem;
  --sheet-nutrition-icon-size: 0.875rem;
  --sheet-nutrition-value-size: 0.875rem;
  --sheet-ingredient-size: 0.9375rem;
  --sheet-allergen-title-size: 0.875rem;
  --sheet-allergen-meta-size: 0.875rem;
  --sheet-allergen-list-size: 0.9375rem;
  --sheet-allergen-may-size: 0.875rem;
  --sheet-nav-size: 0.875rem;
  --sheet-nav-label-size: 0.875rem;
  --sheet-nav-min: 44px;
  position: fixed; inset: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: clamp(10px, 2vw, 16px);
  width: 100%;
  height: 100svh;
  max-height: none;
  overflow: hidden;
  padding:
    calc(clamp(18px, 4vw, 36px) + env(safe-area-inset-top))
    calc(clamp(16px, 4vw, 44px) + env(safe-area-inset-right))
    calc(clamp(14px, 3vw, 24px) + env(safe-area-inset-bottom))
    calc(clamp(16px, 4vw, 44px) + env(safe-area-inset-left));
  color: var(--text-primary);
  background: var(--bg-card);
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  transform: translateY(106%);
  transition: transform 360ms var(--ease-out);
}

.product-sheet.is-open { transform: translateY(0); }

.product-sheet.is-open .sheet-photo img {
  animation: sheetPhotoZoom 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sheetPhotoZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.sheet-price-tag {
  animation: priceEntry 600ms var(--ease-out) both;
  animation-delay: 120ms;
}

@keyframes priceEntry {
  0% { transform: scale(0.85); opacity: 0; }
  60% { transform: scale(1.04); }
  100% { transform: scale(1); opacity: 1; }
}

.product-sheet #sheet-content {
  position: relative;
  width: min(100%, 980px);
  height: 100%;
  min-height: 0;
  max-height: none;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.product-sheet #sheet-nav-slot {
  display: contents;
}

.sheet-close {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top));
  right: calc(12px + env(safe-area-inset-right));
  z-index: 6;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin: 0;
  color: var(--text-muted);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--dur) var(--ease);
}

.sheet-close:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.5);
  border-color: var(--border-strong);
}

.sheet-handle {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top)); left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 4px;
  margin: 0;
  background: var(--border-strong);
  border-radius: 999px;
}

/* ---- Sheet Main (square photo + summary) ---- */

.sheet-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  width: 100%;
  min-width: 0;
  padding: 0;
}

.sheet-hero {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 0;
  height: min(34svh, 320px);
  aspect-ratio: auto;
  align-self: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #080a09;
}

.sheet-hero .sheet-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-elevated);
}

.sheet-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,11,0.16) 0%, transparent 46%, rgba(10,12,11,0.22) 100%);
  pointer-events: none;
}

.sheet-hero-badge {
  position: absolute;
  top: 8px; left: 8px;
  max-width: calc(100% - 16px);
  padding: 4px 8px;
  color: var(--accent-light);
  background: rgba(10,12,11,0.55);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sheet-photo {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  width: 100%; height: 100%; overflow: hidden;
}

.sheet-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: 100%; max-height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center center);
  transition: transform var(--dur-slow) var(--ease);
}

/* ---- Sheet Summary / Body ---- */

.sheet-summary {
  display: grid;
  align-content: center;
  min-width: 0;
}

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

.sheet-visual {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.sheet-allergen-section {
  min-width: 0;
}

.sheet-nutrition-strip {
  min-width: 0;
}

.sheet-nav {
  position: static;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: min(100%, 980px);
  margin: 0 auto;
  transform: none;
}

.sheet-nav strong {
  color: var(--text-muted);
  font-size: var(--sheet-nav-label-size);
  font-weight: 700;
  white-space: nowrap;
}

.sheet-nav-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: var(--sheet-nav-min);
  padding: 0 13px;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  font-size: var(--sheet-nav-size);
  font-weight: 700;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.sheet-nav-button:last-child {
  justify-self: end;
}

.sheet-nav-button span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--accent-light);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

.sheet-nav-button em {
  min-width: 0;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-nav-button:hover:not(:disabled),
.sheet-nav-button:focus-visible:not(:disabled) {
  color: var(--text-primary);
  background: var(--bg-glass-hover);
  border-color: var(--accent-border);
}

.sheet-nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

.product-sheet.is-switching-next .sheet-main,
.product-sheet.is-switching-next .sheet-body {
  animation: sheetContentNext 280ms var(--ease-out) both;
  will-change: opacity, transform;
}

.product-sheet.is-switching-previous .sheet-main,
.product-sheet.is-switching-previous .sheet-body {
  animation: sheetContentPrevious 280ms var(--ease-out) both;
  will-change: opacity, transform;
}

@keyframes sheetContentNext {
  from {
    opacity: 0.32;
    transform: translate3d(18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes sheetContentPrevious {
  from {
    opacity: 0.32;
    transform: translate3d(-18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ---- Sheet Header (title + price tag) ---- */

.sheet-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.sheet-header h2 {
  min-width: 0;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--sheet-title-size);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.sheet-price-tag {
  flex-shrink: 0;
  display: grid;
  justify-items: end;
  gap: 2px;
  min-width: 64px;
  padding: 8px 10px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
}

.sheet-price-label {
  font-size: var(--sheet-meta-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--accent);
}

.sheet-price-value {
  font-size: var(--sheet-price-size);
  font-weight: 700;
  color: var(--accent-light);
  white-space: nowrap;
}

/* ---- Sheet Description ---- */

.sheet-description {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: var(--sheet-body-size);
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

/* ---- Sheet Sections (with dot indicator) ---- */

.sheet-section {
  margin-top: 10px;
}

.sheet-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.sheet-section-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.sheet-section-header h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--sheet-section-title-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sheet-section-header small {
  margin-inline-start: auto;
  max-width: 58%;
  color: var(--text-faint);
  font-size: var(--sheet-section-note-size);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: right;
}

.nutrition-section-header h3 {
  column-gap: 6px;
  row-gap: 2px;
}

.nutrition-section-header small {
  max-width: none;
  white-space: nowrap;
}

/* ---- Variations ---- */

.variation-list {
  display: grid; gap: 6px;
}

.variation-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  min-height: var(--sheet-row-min); padding: 0 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease);
}

.variation-row:hover {
  border-color: var(--border-strong);
}

.variation-primary {
  border-color: var(--accent-border);
  background: var(--accent-glow);
}

.variation-row span {
  min-width: 0;
  color: var(--text-secondary);
  font-size: var(--sheet-variation-name-size); font-weight: 500;
  overflow-wrap: anywhere;
}

.variation-row strong {
  color: var(--text-primary);
  font-size: var(--sheet-variation-price-size);
  font-weight: 700; text-align: right;
}

.variation-primary strong {
  color: var(--accent-light);
}

/* ---- Nutrition Grid ---- */

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

.nutrition-cell {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  min-height: var(--sheet-nutrition-min); padding: 4px 5px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.nutrition-cell:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: stretch;
  gap: 12px;
  min-height: 54px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(210, 75, 145, 0.17), rgba(210, 75, 145, 0.07));
  border-color: var(--accent-border);
  text-align: left;
}

.nutrition-label {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: var(--sheet-nutrition-label-size);
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

.nutrition-icon {
  font-size: var(--sheet-nutrition-icon-size);
  line-height: 1;
}

.nutrition-cell strong {
  color: var(--text-primary);
  font-size: var(--sheet-nutrition-value-size);
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
}

.nutrition-cell:first-child .nutrition-label {
  justify-self: start;
  color: var(--text-secondary);
  font-weight: 700;
  text-align: left;
}

.nutrition-cell:first-child strong {
  justify-self: end;
  color: var(--accent-light);
  font-size: 1rem;
}

/* ---- Ingredients ---- */

.ingredient-card {
  padding: 3px 0 3px 12px;
  color: var(--text-secondary);
  background: transparent;
  border: 0;
  border-left: 2px solid var(--accent-border);
  border-radius: 0;
}

.ingredient-card p {
  margin: 0;
  font-size: var(--sheet-ingredient-size);
  line-height: 1.58;
}

/* ---- Allergens ---- */

.allergen-band {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(210, 75, 145, 0.13), rgba(210, 75, 145, 0.055));
  border: 1px solid rgba(210, 75, 145, 0.26);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.allergen-band-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.allergen-band-top strong {
  min-width: 0;
  color: var(--accent-light);
  font-size: var(--sheet-allergen-title-size);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.allergen-band-top span {
  flex-shrink: 0;
  color: var(--text-faint);
  font-size: var(--sheet-allergen-meta-size);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.allergen-inline-list {
  color: var(--text-primary);
  font-size: var(--sheet-allergen-list-size);
  font-weight: 800;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.allergen-may {
  color: var(--text-muted);
  font-size: var(--sheet-allergen-may-size);
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.allergen-band-empty {
  background: var(--bg-glass);
  border-color: var(--border);
}

.allergen-band-empty .allergen-band-top strong {
  color: var(--text-muted);
  font-weight: 700;
}

/* ---- Always-visible product details ---- */

.sheet-info-section + .sheet-info-section {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.sheet-detail-status {
  margin: 0;
  padding: 12px;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible:nth-child(1) { transition-delay: 0ms; }
.reveal.is-visible:nth-child(2) { transition-delay: 50ms; }
.reveal.is-visible:nth-child(3) { transition-delay: 100ms; }
.reveal.is-visible:nth-child(4) { transition-delay: 150ms; }
.reveal.is-visible:nth-child(5) { transition-delay: 200ms; }
.reveal.is-visible:nth-child(6) { transition-delay: 250ms; }
.reveal.is-visible:nth-child(7) { transition-delay: 300ms; }
.reveal.is-visible:nth-child(8) { transition-delay: 350ms; }

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


/* ---- Scroll Progress ---- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--ember-hot));
  box-shadow: 0 0 8px var(--accent-dim);
  transition: transform 80ms linear;
}


/* ---- Back to Top ---- */

.back-to-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: calc(20px + env(safe-area-inset-right));
  z-index: 40;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--accent-light);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(210, 75, 145, 0.08);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 300ms var(--ease-out);
}

.back-to-top[hidden] { display: none; }

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top.is-visible[hidden] { display: grid; }

.back-to-top:hover {
  background: var(--accent);
  color: #0a0c0b;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(210, 75, 145, 0.18);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

body.sheet-open .back-to-top {
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ---- Skeleton Loading ---- */

.skeleton-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--border);
}

.skeleton-line {
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    var(--bg-glass) 25%,
    rgba(255, 255, 255, 0.06) 50%,
    var(--bg-glass) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-thumb {
  width: 104px;
  height: 104px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    var(--bg-glass) 25%,
    rgba(255, 255, 255, 0.06) 50%,
    var(--bg-glass) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-info {
  display: grid;
  align-content: center;
  gap: 10px;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 760px) {
  .signature-layout {
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    align-items: center;
  }

  .menu-controls {
    grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
    align-items: center;
  }

  .visit-band {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.3fr);
    align-items: end;
  }

  .product-sheet {
    transform: translateY(106%);
  }

  .product-sheet.is-open { transform: translateY(0); }

  .sheet-main {
    grid-template-columns: minmax(280px, 460px) minmax(320px, 1fr);
    gap: clamp(20px, 4vw, 44px);
    align-items: center;
  }

  .sheet-visual {
    width: min(44vw, 460px);
  }

  .sheet-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

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

  .nutrition-cell:first-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1px;
    min-height: var(--sheet-nutrition-min);
    padding: 4px 5px;
    text-align: center;
  }

  .nutrition-cell:first-child .nutrition-label,
  .nutrition-cell:first-child strong {
    justify-self: center;
    text-align: center;
  }

  .nutrition-cell:first-child .nutrition-label {
    color: var(--text-muted);
    font-weight: 500;
  }

  .nutrition-cell:first-child strong {
    font-size: var(--sheet-nutrition-value-size);
  }
}

@media (min-width: 1060px) {
  .featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .featured-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .featured-photo {
    width: 100%; height: 200px; min-height: 200px;
    border-radius: 10px;
  }

  .featured-body {
    padding: 12px 6px 8px;
  }

  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

}

@media (max-width: 759px) {
  .topbar-tools {
    position: relative;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 72px;
    min-height: 44px;
    padding: 0 12px;
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--border-mid);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1;
  }

  .language-toggle::after {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--dur) var(--ease);
  }

  .topbar-tools.is-open .language-toggle::after {
    transform: translateY(2px) rotate(225deg);
  }

  .language-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(54px, 1fr));
    gap: 8px;
    min-width: 132px;
    padding: 8px;
    background: rgba(16, 19, 18, 0.96);
    border: 1px solid var(--border-mid);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-4px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity var(--dur) var(--ease),
      visibility var(--dur) var(--ease),
      transform var(--dur) var(--ease);
  }

  .topbar-tools.is-open .language-options {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .language-button {
    min-width: 54px;
    min-height: 44px;
    height: 44px;
    padding-inline: 10px;
    background: var(--bg-glass);
    font-size: 0.875rem;
  }

  html[dir="rtl"] .language-options {
    right: auto;
    left: 0;
    transform-origin: top left;
  }

  .product-sheet {
    align-content: start;
    padding:
      calc(54px + env(safe-area-inset-top))
      calc(16px + env(safe-area-inset-right))
      calc(12px + env(safe-area-inset-bottom))
      calc(16px + env(safe-area-inset-left));
  }

  .product-sheet #sheet-content {
    width: 100%;
  }

  .sheet-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .sheet-visual {
    width: 100%;
  }

  .sheet-hero {
    width: 100%;
    height: min(34svh, 320px);
    aspect-ratio: auto;
  }

  .sheet-summary {
    display: grid;
  }

  .sheet-header {
    align-items: center;
    gap: 8px;
  }

  .sheet-price-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .sheet-price-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .sheet-price-value {
    line-height: 1;
  }

  .sheet-description {
    display: block;
    margin: 10px 0 0;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .sheet-body {
    padding-top: 6px;
  }

  .sheet-allergen-section .sheet-section-header {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .sheet-allergen-section .allergen-band {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: center;
    gap: 6px 10px;
    min-height: 28px;
    padding: 4px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
  }

  .sheet-allergen-section .allergen-band-top {
    display: contents;
  }

  .sheet-allergen-section .allergen-band-top strong,
  .sheet-allergen-section .allergen-inline-list {
    font-size: var(--sheet-allergen-title-size);
    line-height: 1.2;
  }

  .sheet-allergen-section .allergen-band-top strong {
    color: var(--accent-light);
    white-space: nowrap;
  }

  .sheet-allergen-section .allergen-band:not(.allergen-band-empty) .allergen-band-top strong::after {
    content: ":";
  }

  .sheet-allergen-section .allergen-band-top span {
    display: none;
  }

  .sheet-allergen-section .allergen-inline-list {
    min-width: 0;
    justify-self: end;
    color: var(--text-primary);
    overflow-wrap: anywhere;
    text-align: right;
  }

  .sheet-allergen-section .allergen-may {
    grid-column: 1 / -1;
  }

  .sheet-allergen-section .allergen-band-empty {
    grid-template-columns: minmax(0, 1fr);
  }

  .sheet-nutrition-strip {
    display: grid;
    gap: 3px;
  }

  .sheet-nutrition-strip .sheet-section-header {
    gap: 0;
    margin: 0 0 2px;
  }

  .sheet-nutrition-strip .sheet-section-dot {
    display: none;
  }

  .sheet-nutrition-strip .nutrition-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    min-width: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .sheet-nutrition-strip .nutrition-cell,
  .sheet-nutrition-strip .nutrition-cell:first-child {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    justify-items: center;
    gap: 1px;
    min-width: 0;
    min-height: 44px;
    padding: 4px 1px;
    background: transparent;
    border: 0;
    border-radius: 0;
    text-align: center;
  }

  .sheet-nutrition-strip .nutrition-cell + .nutrition-cell {
    border-inline-start: 0;
  }

  .sheet-nutrition-strip .nutrition-cell:first-child {
    background: transparent;
  }

  .sheet-nutrition-strip .nutrition-cell:first-child .nutrition-label,
  .sheet-nutrition-strip .nutrition-cell:first-child strong {
    justify-self: center;
    text-align: center;
  }

  .sheet-nutrition-strip .nutrition-label {
    min-width: 0;
    gap: 2px;
    overflow-wrap: anywhere;
  }

  .sheet-nutrition-strip .nutrition-icon {
    display: none;
  }

  .sheet-nutrition-strip .nutrition-cell strong {
    max-width: 100%;
    font-size: var(--sheet-nutrition-value-size);
  }

  .sheet-nutrition-strip .sheet-detail-status {
    display: grid;
    align-items: center;
    min-height: 44px;
  }

  .sheet-body .sheet-section-header {
    gap: 0;
  }

  .sheet-body .sheet-section-dot {
    display: none;
  }

  .variation-list {
    grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .variation-row {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 48px;
    padding: 3px 2px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .variation-row + .variation-row {
    border-inline-start: 1px solid var(--border);
  }

  .variation-row span,
  .variation-row strong {
    line-height: 1.1;
    text-align: center;
  }

  .variation-primary {
    background: transparent;
  }

  .menu-controls {
    gap: 5px;
    margin-bottom: 10px;
    padding: 5px 0 6px;
  }

  .search-control {
    height: 44px;
  }

  .category-rail {
    gap: 8px;
  }

  .menu-favorites {
    margin-top: 2px;
    margin-bottom: 10px;
    padding: 2px 0 8px;
  }

  .menu-favorites .signature-layout {
    gap: 16px;
  }

  .menu-favorites .signature-copy {
    gap: 6px;
  }
}

@media (max-width: 560px) {
  :root {
    --topbar-logo-size: 58px;
    --topbar-h: calc(var(--topbar-logo-size) + 10px);
  }

  .topbar {
    padding:
      calc(6px + env(safe-area-inset-top))
      calc(16px + env(safe-area-inset-right))
      2px
      calc(16px + env(safe-area-inset-left));
  }

  .topbar-tools {
    position: relative;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 72px;
    min-height: 44px;
    padding: 0 12px;
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--border-mid);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1;
  }

  .language-toggle::after {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--dur) var(--ease);
  }

  .topbar-tools.is-open .language-toggle::after {
    transform: translateY(2px) rotate(225deg);
  }

  .language-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(54px, 1fr));
    gap: 8px;
    min-width: 132px;
    padding: 8px;
    background: rgba(16, 19, 18, 0.96);
    border: 1px solid var(--border-mid);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-4px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity var(--dur) var(--ease),
      visibility var(--dur) var(--ease),
      transform var(--dur) var(--ease);
  }

  .topbar-tools.is-open .language-options {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .language-button {
    min-width: 54px;
    min-height: 44px;
    height: 44px;
    padding-inline: 10px;
    background: var(--bg-glass);
    font-size: 0.875rem;
  }

  html[dir="rtl"] .language-options {
    right: auto;
    left: 0;
    transform-origin: top left;
  }

  .price-update {
    gap: 5px;
    font-size: 0.875rem;
  }

  .product-sheet {
    align-content: start;
    padding:
      calc(54px + env(safe-area-inset-top))
      calc(16px + env(safe-area-inset-right))
      calc(12px + env(safe-area-inset-bottom))
      calc(16px + env(safe-area-inset-left));
  }

  .product-sheet #sheet-content {
    width: 100%;
  }

  .sheet-main {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 8px;
  }

  .sheet-hero {
    width: 100%;
    height: min(34svh, 260px);
    aspect-ratio: auto;
  }

  .sheet-description {
    -webkit-line-clamp: 3;
  }

  .sheet-nav {
    gap: 8px;
    width: min(100%, 980px);
  }

  .sheet-nav-button {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.875rem;
  }

  .sheet-nav-button span {
    width: 20px;
    height: 20px;
  }

  .signature-stage,
  .menu-shell {
    padding-right: calc(16px + env(safe-area-inset-right));
    padding-left: calc(16px + env(safe-area-inset-left));
  }

  .menu-shell {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
    padding-bottom: 88px;
  }

  .section-heading {
    order: 1;
    gap: 4px;
    margin-bottom: 8px;
  }

  .menu-title-group {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
  }

  .section-heading h2 {
    font-size: clamp(1.72rem, 8.6vw, 2.35rem);
    line-height: 0.92;
  }

  .section-heading .price-update {
    justify-self: end;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    padding-bottom: 2px;
    text-align: right;
  }

  .menu-controls {
    order: 2;
    top: var(--mobile-sticky-top);
    gap: 5px;
    margin-bottom: 8px;
    padding: 5px 0 6px;
    background:
      linear-gradient(180deg, rgba(14, 17, 16, 0.99) 0%, rgba(14, 17, 16, 0.94) 72%, rgba(14, 17, 16, 0.82) 100%);
    border-bottom: 1px solid var(--border-mid);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 20px rgba(10, 12, 11, 0.76);
  }

  .search-control {
    height: 44px;
    padding-inline: 15px;
    border-radius: 13px;
  }

  .search-control input {
    height: 44px;
  }

  .category-rail {
    gap: 8px;
    margin-right: calc(-16px - env(safe-area-inset-right));
    margin-left: calc(-16px - env(safe-area-inset-left));
    padding: 0 calc(16px + env(safe-area-inset-right)) 2px calc(16px + env(safe-area-inset-left));
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 34px), transparent 100%);
    scrollbar-width: none;
  }

  .category-rail::-webkit-scrollbar { display: none; }

  .category-pill {
    min-width: 44px;
    min-height: 44px;
    height: 44px;
    padding-inline: 14px;
    scroll-snap-align: start;
  }

  .menu-favorites {
    order: 4;
    margin-top: 2px;
    margin-bottom: 6px;
    padding: 2px 0 4px;
  }

  .compliance-note { order: 7; }

  #status-note { order: 5; }

  #menu-list { order: 6; }

  .empty-state { order: 8; }

  body.is-searching-menu .menu-favorites,
  body.is-searching-menu .status-note,
  body.is-searching-menu .compliance-note {
    display: none;
  }

  body.is-searching-menu .category-section {
    padding-top: 12px;
  }

  body.is-searching-menu .reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }

  .status-note {
    margin-bottom: 8px;
    padding: 6px 0;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .category-section {
    padding: 24px 0 16px;
    scroll-margin-top: 132px;
  }

  .category-title {
    padding-bottom: 12px;
  }

  .signature-layout {
    gap: 10px;
  }

  .signature-copy {
    gap: 0;
  }

  .signature-copy p,
  .signature-copy > span {
    display: none;
  }

  .signature-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
    line-height: 1;
  }

  .featured-grid {
    display: flex;
    gap: 10px;
    margin-right: calc(-16px - env(safe-area-inset-right));
    margin-left: calc(-16px - env(safe-area-inset-left));
    padding: 0 calc(16px + env(safe-area-inset-right)) 4px calc(16px + env(safe-area-inset-left));
    overflow-x: auto;
    scrollbar-width: none;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
  }

  .featured-grid::-webkit-scrollbar { display: none; }

  .featured-card {
    flex: 0 0 min(248px, 74vw);
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    min-height: 96px;
    padding: 8px;
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .featured-photo { width: 72px; height: 80px; }

  .featured-body {
    gap: 3px;
    padding: 0;
  }

  .featured-body strong { font-size: 1.05rem; }

  .featured-body span:last-child { display: none; }

  .product-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    min-height: 108px;
    padding: 14px 0;
  }

  .product-row:hover {
    margin-inline: 0;
    padding-inline: 0;
    background: transparent;
  }

  .product-thumb { width: 88px; height: 88px; }

  .skeleton-card {
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .skeleton-thumb {
    width: 88px;
    height: 88px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .product-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
  }

  .product-heading strong {
    font-size: clamp(1.22rem, 5.2vw, 1.45rem);
    line-height: 1;
  }

  .product-heading em {
    min-width: 72px;
    padding: 4px 7px;
    color: #e9a5c9;
    background: rgba(210, 75, 145, 0.13);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px var(--accent-border);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .product-description {
    font-size: 0.875rem;
    line-height: 1.42;
  }

  .sheet-price-tag { align-self: center; }

  .sheet-section-header small {
    flex-basis: auto;
    max-width: none;
    margin-inline-start: auto;
    text-align: right;
    white-space: nowrap;
  }

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

  .sheet-nutrition-strip .nutrition-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-title h3 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
}

@media (max-width: 560px) and (max-height: 680px) {
  .product-sheet {
    --sheet-title-size: clamp(1.18rem, 6.2vw, 1.45rem);
    padding:
      calc(44px + env(safe-area-inset-top))
      calc(12px + env(safe-area-inset-right))
      calc(10px + env(safe-area-inset-bottom))
      calc(12px + env(safe-area-inset-left));
  }

  .sheet-main {
    gap: 6px;
  }

  .sheet-hero {
    width: 100%;
    height: clamp(150px, 28svh, 190px);
    border-radius: 14px;
  }

  .sheet-body {
    padding-top: 8px;
  }

  .sheet-header {
    gap: 8px;
  }

  .sheet-header h2 {
    line-height: 0.95;
  }

  .sheet-price-tag {
    padding: 0;
  }

  .sheet-description {
    margin-top: 6px;
    line-height: 1.35;
  }

  .sheet-nav-button {
    min-height: 44px;
  }

  .sheet-nav-button em {
    display: none;
  }

  .sheet-section {
    margin-top: 6px;
  }

  .sheet-section-header {
    gap: 7px;
    margin-bottom: 3px;
  }

  .variation-list {
    gap: 0;
  }

  .variation-row {
    padding: 3px 2px;
  }

  .nutrition-grid {
    gap: 2px;
  }

  .nutrition-cell {
    padding: 3px 3px;
    border-radius: 10px;
  }

  .nutrition-label {
    gap: 2px;
  }

  .allergen-band {
    gap: 3px;
    padding: 3px 0;
    border-radius: 0;
  }

  .allergen-inline-list { line-height: 1.22; }
}

@media (max-width: 560px) and (max-height: 600px) {
  .product-sheet {
    --sheet-title-size: clamp(1.08rem, 5.8vw, 1.32rem);
    gap: 6px;
    padding:
      calc(44px + env(safe-area-inset-top))
      calc(10px + env(safe-area-inset-right))
      calc(8px + env(safe-area-inset-bottom))
      calc(10px + env(safe-area-inset-left));
  }

  .sheet-main {
    gap: 5px;
  }

  .sheet-hero {
    width: 100%;
    height: clamp(150px, 30svh, 180px);
  }

  .sheet-body { padding-top: 5px; }

  .sheet-description {
    margin-top: 5px;
    line-height: 1.3;
  }

  .sheet-section { margin-top: 4px; }

  .sheet-section-header {
    gap: 6px;
    margin-bottom: 2px;
  }

  .sheet-nav {
    gap: 6px;
    width: min(100%, 980px);
  }

  .sheet-nav-button { padding: 0 10px; }

  .variation-list { gap: 0; }

  .variation-row {
    gap: 2px;
    padding: 3px 2px;
  }

  .nutrition-cell { padding: 2px; }

  .ingredient-card { padding: 2px 0 2px 10px; }

  .allergen-band { padding: 3px 0; }
}

@media (max-width: 370px) {
  .brand small { display: none; }

  .featured-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .product-row {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .featured-photo {
    width: 72px;
    height: 80px;
    min-height: 80px;
  }

  .product-thumb {
    width: 78px; height: 88px; min-height: 88px;
  }
}

@media (max-width: 339px) {
  .sheet-nutrition-strip .nutrition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sheet-nutrition-strip .nutrition-cell {
    grid-column: auto;
    border-top: 1px solid var(--border);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .product-sheet.is-switching-next .sheet-main,
  .product-sheet.is-switching-next .sheet-body,
  .product-sheet.is-switching-previous .sheet-main,
  .product-sheet.is-switching-previous .sheet-body {
    animation: none !important;
  }

  .product-sheet.is-open .sheet-photo img {
    animation: none !important;
  }

  .sheet-price-tag {
    animation: none !important;
  }

  .skeleton-line,
  .skeleton-thumb {
    animation: none !important;
  }

}

/* Lila Coffee & Bistro — logo merkezli koyu pembe renk sistemi. */
:root {
  --bg: #09080b;
  --bg-elevated: #100c12;
  --bg-card: #171019;
  --bg-glass: rgba(255, 255, 255, 0.035);
  --bg-glass-hover: rgba(255, 255, 255, 0.065);

  --text-primary: #f8f2f6;
  --text-secondary: rgba(248, 242, 246, 0.82);
  --text-muted: rgba(248, 242, 246, 0.68);
  --text-faint: rgba(248, 242, 246, 0.56);

  --accent: #d24b91;
  --accent-light: #e9a5c9;
  --accent-dim: rgba(210, 75, 145, 0.38);
  --accent-glow: rgba(210, 75, 145, 0.075);
  --accent-border: rgba(210, 75, 145, 0.22);
  --accent-deep: #781044;
  --ember: #d24b91;
  --ember-hot: #e9a5c9;
  --ember-deep: #7e104f;
  --ember-glow: rgba(224, 35, 158, 0.26);
  --lila: #e0239e;
  --lila-dim: rgba(224, 35, 158, 0.2);

  --border: rgba(255, 232, 247, 0.075);
  --border-mid: rgba(255, 232, 247, 0.115);
  --border-strong: rgba(255, 232, 247, 0.17);
  --shadow-glow: 0 0 34px rgba(210, 75, 145, 0.045);
}

::selection {
  background: rgba(210, 75, 145, 0.24);
  color: var(--text-primary);
}

.ambient {
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(210, 75, 145, 0.025), transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 100%, rgba(120, 16, 68, 0.025), transparent 70%);
}

.featured-card::after {
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(210, 75, 145, 0.035), transparent 40%);
}

.signature-copy h2,
.section-heading h2 {
  color: var(--text-primary);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  background-clip: initial;
}

.product-badges span,
.allergen-chip {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--border-mid);
}

.back-to-top {
  box-shadow: var(--shadow-md), 0 0 18px rgba(210, 75, 145, 0.06);
}

.back-to-top:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(210, 75, 145, 0.14);
}

/* Lila Coffee & Bistro logosu: işletmenin yatay pembe logosuna uygun gösterim. */
.topbar-logo {
  width: 144px;
  height: 72px;
  border-radius: 8px;
}

.topbar-logo .brand-emblem {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.topbar-logo .brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 720px) {
  .topbar-logo {
    width: 112px;
    height: 56px;
    border-radius: 6px;
  }

  .topbar-logo .brand-emblem {
    padding: 0;
    border-radius: 6px;
  }

  /* 90 ürünlü Lila Coffee & Bistro menüsünde mobil kaydırma maliyetini düşürür. */
  .menu-controls {
    background: rgba(14, 11, 15, 0.985);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.42);
  }

  .category-section {
    content-visibility: auto;
    contain-intrinsic-inline-size: auto 100%;
    contain-intrinsic-block-size: auto 720px;
  }

  .menu-list.is-category-navigating .category-section {
    content-visibility: visible;
  }

  .reveal {
    transition-duration: 160ms;
    transition-delay: 0ms !important;
  }

  .category-batch-sentinel {
    min-height: 72px;
    display: grid;
    place-items: center;
  }

  .category-batch-sentinel button {
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(219, 50, 133, 0.35);
    border-radius: 999px;
    color: #f3dbe8;
    background: rgba(219, 50, 133, 0.08);
    font: 700 0.78rem/1.2 var(--font-sans);
  }
}
