/* PhoHut - Vietnamese Cuisine — Static Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --background: hsl(220 30% 8%);
  --foreground: hsl(210 20% 95%);
  --card: hsl(220 25% 12%);
  --primary: hsl(4 78% 62%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(225 50% 18%);
  --muted-foreground: hsl(220 12% 55%);
  --accent: hsl(225 60% 42%);
  --border: hsl(225 25% 20%);
  --radius: 0.5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }
.italic { font-style: italic; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(15, 20, 30, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 14, 24, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.navbar .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem; max-width: 1280px; margin: 0 auto;
  transition: padding 0.3s;
}
.navbar.scrolled .inner { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.navbar img { height: 48px; transition: height 0.3s; }
.navbar.scrolled img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(245, 247, 250, 0.7);
  text-transform: uppercase; letter-spacing: 0.15em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.btn-primary {
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.625rem 1.25rem; border-radius: 2px;
  font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-block; transition: all 0.2s;
  border: 1px solid var(--primary);
}
.btn-primary:hover { background: transparent; color: var(--primary); }
.btn-outline {
  border: 1px solid var(--primary); color: var(--primary);
  padding: 0.875rem 2rem; border-radius: 2px;
  font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-block; transition: all 0.2s;
  background: transparent; cursor: pointer; font-family: inherit;
}
.btn-outline:hover { background: var(--primary); color: var(--primary-foreground); }
.btn-large { padding: 0.875rem 2rem; }

/* ── Hero text animation ────────────────────────────────── */
.hero-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards;
}
.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.35s; }
.hero-anim-3 { animation-delay: 0.6s; }
.hero-anim-4 { animation-delay: 0.85s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}

@keyframes kenBurns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.08) translateX(-1%); }
}

/* Respect users who disable motion */
@media (prefers-reduced-motion: reduce) {
  .hero img.bg { animation: none; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.3em; font-weight: 500;
  transition: color 0.2s, opacity 0.4s;
  animation: scrollFade 1.2s ease 1.4s both;
}
.scroll-indicator:hover { color: #fff; }
.mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 3px; height: 6px; border-radius: 2px;
  background: rgba(255,255,255,0.85);
  animation: wheelMove 1.8s ease-in-out infinite;
}
@keyframes wheelMove {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes scrollFade {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to   { opacity: 1; transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .scroll-indicator { display: none; }
}

/* Hero */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,20,30,0.8), rgba(15,20,30,0.5), hsl(220 30% 8%));
  z-index: 1;
}
.hero .content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 1.5rem; max-width: 720px;
}
.eyebrow {
  color: var(--primary); font-weight: 500; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem;
}
.hero p.lead {
  color: var(--muted-foreground); font-size: 1.125rem; font-weight: 300;
  max-width: 540px; margin: 0 auto 2.5rem;
}

/* Section Dividers */
.divider {
  line-height: 0; overflow: hidden;
  margin-bottom: -2px;
}
.divider.divider-flip { transform: scaleY(-1); margin-bottom: 0; margin-top: -2px; }
.divider svg { display: block; width: 100%; height: 60px; }

/* Sections */
section { padding: 6rem 0; }
.section-eyebrow { text-align: center; }
.section-title {
  text-align: center; font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0 4rem; line-height: 1.2;
}

/* Menu */
.menu { background: rgba(30, 40, 70, 0.2); }
.menu-grid {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
}
.menu-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 220px;
}
.menu-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.menu-card:hover { border-color: rgba(232, 90, 75, 0.3); }
.menu-card .img-wrap {
  aspect-ratio: 1/1; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}
.menu-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .img-wrap img { transform: scale(1.08); }

/* Card overlay hidden */
.card-overlay { display: none; }

.menu-card .body { padding: 1rem 1.25rem 1.25rem; }
.menu-card .head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.5rem; margin-bottom: 0.5rem;
}
.menu-card h3 { font-size: 1.05rem; line-height: 1.3; }
.menu-card .price { color: var(--primary); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.menu-card .snippet {
  color: var(--muted-foreground); font-size: 0.8rem; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-card .read-more {
  display: inline-block; margin-top: 0.4rem;
  font-size: 0.75rem; color: var(--primary);
  font-weight: 500; letter-spacing: 0.03em;
}
.menu .cta { text-align: center; margin-top: 3.5rem; }

/* About */
.about .container { max-width: 880px; }
.about p {
  color: var(--muted-foreground); font-size: 1.125rem;
  font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem;
}
.stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2rem; margin-top: 4rem;
}
.stat { text-align: center; }
.stat .num { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--primary); display: block; }
.stat .label {
  color: var(--muted-foreground); font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.2em; margin-top: 0.25rem;
}

/* Location */
.location-grid {
  display: grid; gap: 3rem; max-width: 1100px; margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}
.location-info > div { margin-bottom: 2rem; }
.location-info h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.location-info p, .location-info div.hours p {
  color: var(--muted-foreground); line-height: 1.6;
}
.location-info a { color: var(--primary); }
.location-info a:hover { text-decoration: underline; }
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: hsl(220 28% 7%);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .name { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--primary); display: block; margin-bottom: 0.4rem; }
.footer-brand > p { color: var(--muted-foreground); font-size: 0.85rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); background: rgba(232,90,75,0.08); }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--foreground); font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block; color: var(--muted-foreground);
  font-size: 0.875rem; line-height: 1.6; margin-bottom: 0.4rem;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; gap: 1rem;
}
.copy { color: rgba(150, 160, 175, 0.5); font-size: 0.75rem; }
.back-top {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--muted-foreground);
  transition: color 0.2s;
}
.back-top:hover { color: var(--primary); }
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Mobile nav */
.menu-toggle { display: none; background: none; border: 0; color: var(--foreground); cursor: pointer; padding: 0.25rem; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15, 20, 30, 0.97); padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
  }
  .nav-links.open a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open .btn-primary { margin-top: 0.5rem; text-align: center; }
  .menu-toggle { display: block; }
}

/* Full Menu Modal */
.menu-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.menu-modal-overlay.open { display: flex; }
.menu-modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  width: 100%; max-width: 760px;
  max-height: 90vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.menu-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-tag {
  display: block; font-size: 0.7rem; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.25em;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  margin-bottom: 0.25rem;
}
.modal-title { font-size: 1.5rem; line-height: 1.2; }
.menu-modal-close {
  background: none; border: 0; color: var(--muted-foreground); cursor: pointer;
  padding: 0.35rem; border-radius: 4px; transition: color 0.2s;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.menu-modal-close:hover { color: var(--foreground); }
.menu-modal-body {
  flex: 1; overflow-y: auto; padding: 1.5rem 1.75rem;
}
.menu-modal-body::-webkit-scrollbar { width: 6px; }
.menu-modal-body::-webkit-scrollbar-track { background: transparent; }
.menu-modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.menu-section { margin-bottom: 2rem; }
.menu-cat {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--primary); font-family: 'DM Sans', sans-serif; font-weight: 600;
  margin-bottom: 0.875rem;
}
.cat-line { flex: 1; height: 1px; background: var(--border); }
.menu-items { display: flex; flex-direction: column; gap: 0; }
.mi {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mi:last-child { border-bottom: 0; }
.mi-name { font-size: 0.9rem; color: var(--foreground); }
.mi-price { font-size: 0.875rem; color: var(--primary); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
/* Menu modal image cards */
.mcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.mcard {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mcard-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.mcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.mcard:hover .mcard-img img { transform: scale(1.05); }
.mcard-body {
  padding: 0.625rem 0.75rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  flex: 1;
}
.mcard-name {
  font-size: 0.82rem; font-weight: 600; color: var(--foreground); line-height: 1.3;
}
.mcard-sub {
  font-size: 0.72rem; color: var(--muted-foreground); line-height: 1.3;
}
.mcard-price {
  font-size: 0.85rem; font-weight: 700; color: var(--primary);
  margin-top: auto; padding-top: 0.3rem;
}
/* Text-only cards (no image) — compact row style */
.mcard.mcard-text {
  flex-direction: row; align-items: center;
  border-style: dashed; border-color: var(--border);
}
.mcard.mcard-text .mcard-body {
  flex-direction: row; justify-content: space-between;
  align-items: center; padding: 0.75rem;
}
.mcard.mcard-text .mcard-name { font-weight: 500; font-size: 0.82rem; }
.mcard.mcard-text .mcard-price { margin-top: 0; padding-top: 0; white-space: nowrap; }

.menu-note {
  font-size: 0.75rem; color: var(--muted-foreground);
  margin-top: 1.5rem; text-align: center; font-style: italic;
}
.menu-modal-footer {
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: center; align-items: center;
  flex-shrink: 0; gap: 1rem;
}

/* PDF viewer */
.pdf-viewer-body {
  background: hsl(220 25% 7%);
  display: flex; flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: 1.5rem 1rem;
  min-height: 300px;
}
.pdf-loading {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem;
  color: var(--muted-foreground); font-size: 0.875rem;
  padding: 3rem 0; width: 100%;
}
.pdf-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pdf-error {
  color: var(--muted-foreground); font-size: 0.875rem;
  text-align: center; padding: 2rem;
}
.pdf-error a { color: var(--primary); }
.pdf-pages {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem; width: 100%;
}
.pdf-pages canvas {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* PDF nav bar */
.pdf-nav { gap: 1.5rem; }
.pdf-nav-btn {
  background: none; border: 1px solid var(--border);
  color: var(--foreground); cursor: pointer;
  padding: 0.4rem 0.875rem; border-radius: 4px;
  font-size: 0.8rem; font-family: inherit;
  display: flex; align-items: center; gap: 0.3rem;
  transition: border-color 0.2s, color 0.2s;
}
.pdf-nav-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.pdf-nav-btn:disabled { opacity: 0.35; cursor: default; }
.pdf-page-info {
  font-size: 0.8rem; color: var(--muted-foreground);
  min-width: 60px; text-align: center;
}


/* Responsive improvements */
@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .section-title { margin-bottom: 2.5rem; }

  .hero { min-height: 100svh; }
  .hero .content { padding: 0 1.25rem; }
  .hero p.lead { font-size: 1rem; }

  .menu-grid { gap: 1.25rem; }
  .menu-card { flex: 0 0 100%; min-width: unset; }
  .menu-card .img-wrap { aspect-ratio: 16/9; }

  .about p { font-size: 1rem; }
  .stats { gap: 1.5rem; }
  .stat .num { font-size: 2rem; }

  .location-grid { gap: 2rem; }
  .map-wrap { min-height: 260px; }
  .map-wrap iframe { min-height: 260px; }

  footer .inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  footer .links { flex-wrap: wrap; gap: 1rem; }

  .pdf-modal { max-height: 95vh; border-radius: 0.5rem; }
  .pdf-modal-header { padding: 0.875rem 1rem; }
  .pdf-modal-header h3 { font-size: 0.95rem; }
  .pdf-modal-footer { padding: 0.75rem 1rem; }
  .menu-modal { max-height: 95vh; border-radius: 0.5rem; }
  .menu-modal-header { padding: 1rem; }
  .menu-modal-body { padding: 1rem; }
  .menu-modal-footer { padding: 0.875rem 1rem; }
  .mcard-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .menu-card { flex: 0 0 calc(50% - 0.75rem); }
}

/* ── Dish Detail Modal ─────────────────────────────────── */
.dish-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.dish-overlay.open { display: flex; }
.dish-modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  width: 100%; max-width: 520px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  position: relative;
  animation: dishIn 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes dishIn {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.dish-close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 10;
  background: rgba(10,14,24,0.7); border: 0; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: background 0.2s;
}
.dish-close:hover { background: rgba(10,14,24,0.95); }
.dish-img-wrap {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
}
.dish-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-modal:hover .dish-img-wrap img { transform: scale(1.03); }
.dish-content {
  padding: 1.5rem;
}
.dish-meta {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 0.875rem;
}
.dish-meta h2 {
  font-size: 1.35rem; line-height: 1.25;
}
.dish-price {
  font-size: 1.25rem; font-weight: 700;
  color: var(--primary); white-space: nowrap; flex-shrink: 0;
}
#dishDesc {
  color: var(--muted-foreground);
  font-size: 0.9rem; line-height: 1.7;
  margin: 0;
}
.menu-card { cursor: pointer; }
@media (max-width: 640px) {
  .dish-modal { border-radius: 0.75rem; max-height: 92vh; overflow-y: auto; }
  .dish-content { padding: 1.25rem; }
  .dish-meta h2 { font-size: 1.15rem; }
}

/* ── Sticky Order Button (mobile only) ─────────────────── */
.sticky-order {
  display: none; /* hidden by default, shown via JS on mobile */
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 100;
  background: var(--primary); color: #fff;
  align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s, opacity 0.3s, box-shadow 0.2s;
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
}
.sticky-order.show {
  opacity: 1; transform: none;
  pointer-events: auto;
}
.sticky-order:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
@media (max-width: 768px) {
  .sticky-order { display: flex; }
}

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Badge ─────────────────────────────────────────────── */
.img-wrap { position: relative; }
.badge {
  position: absolute; top: 0.625rem; left: 0.625rem;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.25rem 0.625rem; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; line-height: 1;
  pointer-events: none;
}
.badge-popular {
  background: var(--primary); color: #fff;
}
.badge-chef {
  background: hsl(225 60% 42%); color: #fff;
}

