/* =========================================================
   Sweety's Food Hub — Design Tokens
   ========================================================= */
:root {
  --ink: #1B120C;
  --ink-soft: #2B1D14;
  --cream: #FFF6E9;
  --cream-2: #FBEDD9;
  --jollof: #D3401A;
  --jollof-dark: #A82F12;
  --gold: #F2A93B;
  --gold-soft: #FBD999;
  --palm: #2F6B4F;
  --text: #3A2A1E;
  --text-light: #7A6A5C;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 30px -12px rgba(27, 18, 12, 0.25);
  --shadow-pop: 0 20px 45px -18px rgba(27, 18, 12, 0.45);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(78px + var(--safe-bottom));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; color: var(--ink); }
p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

.btn-primary {
  background: var(--jollof);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(211, 64, 26, 0.55);
}
.btn-primary:hover { background: var(--jollof-dark); }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.18); }

.btn-ghost {
  background: transparent;
  border-color: rgba(58, 42, 30, 0.18);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(58, 42, 30, 0.06); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.wa-icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding-top: var(--safe-top);
  background: rgba(255, 246, 233, 0.94);
  backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid rgba(27, 18, 12, 0.08);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--jollof);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.nav-links {
  display: none;
  gap: 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { padding: 0.4rem 0; border-bottom: 2px solid transparent; transition: border-color 0.2s ease, color 0.2s ease; }
.nav-links a:hover { color: var(--jollof); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

.nav-links.open {
  display: flex;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  padding: 0.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(27,18,12,0.08);
}
.nav-links.open a { padding: 0.75rem 0; border-bottom: 1px solid rgba(27,18,12,0.06); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: calc(6.5rem + var(--safe-top)) 1.25rem 3.5rem;
  background: radial-gradient(120% 100% at 15% 0%, #4a2013 0%, var(--ink) 45%, var(--ink) 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.35; }
.steam {
  position: absolute;
  width: 40px; height: 220px;
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
  opacity: 0;
  animation: rise 7s ease-in-out infinite;
}
.steam path { stroke-linecap: round; }
.s1 { left: 8%; top: 10%; animation-delay: 0s; }
.s2 { left: 85%; top: 40%; animation-delay: 2.3s; }
.s3 { left: 45%; top: 65%; animation-delay: 4.6s; }
@keyframes rise {
  0% { opacity: 0; transform: translateY(20px) scale(0.9); }
  30% { opacity: 0.5; }
  70% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-40px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.hero-title {
  font-size: clamp(2.6rem, 9vw, 4rem);
  line-height: 0.98;
  color: var(--cream);
  font-weight: 600;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-soft);
  margin-top: 0.75rem;
}
.hero-desc {
  color: rgba(255,246,233,0.75);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 46ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

.hero-portrait { position: relative; display: flex; justify-content: center; }
.portrait-frame {
  width: min(320px, 78vw);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--gold);
  box-shadow: var(--shadow-pop);
  position: relative;
  background: linear-gradient(160deg, var(--jollof), var(--jollof-dark));
}
.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.portrait-frame.is-placeholder img { display: none; }
.portrait-frame.is-placeholder::before {
  content: "📸";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.portrait-frame.is-placeholder::after {
  content: "Add your sister's photo — save as images/hero-sister.jpg";
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.9rem 1rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  text-align: center;
}

.welcome-ribbon {
  position: absolute;
  bottom: -1.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--cream);
  color: var(--ink);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  text-align: center;
  width: max(260px, 80%);
}
.welcome-ribbon p { font-weight: 800; font-size: 0.95rem; }
.welcome-ribbon strong { color: var(--jollof); }
.welcome-ribbon .ribbon-sub {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.floating-badge {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--white);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  display: none;
}
.badge-1 { top: -0.75rem; left: -0.5rem; transform: rotate(-6deg); }
.badge-2 { top: 1.5rem; right: -0.75rem; transform: rotate(6deg); }

@media (min-width: 700px) {
  .floating-badge { display: block; }
}

@media (min-width: 960px) {
  .hero { padding: calc(8rem + var(--safe-top)) 2rem 6rem; }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .hero-cta { margin-top: 2.25rem; }
}

/* =========================================================
   Sections (shared)
   ========================================================= */
.section { padding: 4.5rem 1.25rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-header { max-width: 640px; margin-bottom: 2.75rem; }
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jollof);
  background: rgba(211, 64, 26, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-header h2 { font-size: clamp(1.8rem, 4.5vw, 2.5rem); font-weight: 600; }
.section-header p { color: var(--text-light); margin-top: 0.75rem; font-size: 1.02rem; }

/* =========================================================
   Menu
   ========================================================= */
.menu-section { background: var(--cream); }
.menu-group { margin-bottom: 3rem; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px dashed rgba(58, 42, 30, 0.18);
}
.menu-group-title span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--jollof);
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 620px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card:hover { transform: translateY(-3px); }
.menu-card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  position: relative;
  overflow: hidden;
}
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-media.is-placeholder img { display: none; }
.menu-card-media.is-placeholder::before {
  content: attr(data-emoji);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.75rem;
}
.menu-card-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.menu-card-body h4 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.menu-card-body p { font-size: 0.86rem; color: var(--text-light); line-height: 1.5; flex: 1; }

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.menu-price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--jollof-dark);
  font-size: 1rem;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream-2);
  border-radius: 100px;
  padding: 0.25rem;
}
.stepper button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--jollof);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.stepper button:active { transform: scale(0.9); }
.stepper button.increment { background: var(--jollof); color: var(--white); }
.stepper .qty { min-width: 18px; text-align: center; font-weight: 700; font-family: var(--font-mono); }

/* =========================================================
   Why Us
   ========================================================= */
.why-section { background: var(--cream-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 620px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.why-icon { font-size: 1.9rem; margin-bottom: 0.9rem; }
.why-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.55; }

/* =========================================================
   Location
   ========================================================= */
.location-section { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 860px) { .location-grid { grid-template-columns: 1.15fr 0.85fr; } }

.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.location-card h3 {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 1.1rem; font-weight: 600; margin-bottom: 0.85rem;
}
.location-address { color: var(--text-light); line-height: 1.6; margin-bottom: 1.1rem; }
.map-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid rgba(27,18,12,0.08);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--jollof);
}

.hours-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.hours-list li {
  display: flex; justify-content: space-between;
  font-size: 0.92rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(58,42,30,0.16);
}
.hours-list li span:first-child { color: var(--text-light); }
.hours-list li span:last-child { font-family: var(--font-mono); font-weight: 700; }
.hours-sub { margin-top: 0.25rem; }
.delivery-copy { color: var(--text-light); font-size: 0.9rem; line-height: 1.55; margin: 0.6rem 0 1rem; }
.deliver-badge {
  display: inline-block;
  background: rgba(47, 107, 79, 0.12);
  color: var(--palm);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
}

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,246,233,0.7); padding: 3.5rem 1.25rem 2.5rem; text-align: center; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.footer-tagline { font-style: italic; color: var(--gold-soft); margin-top: 0.4rem; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
  margin: 1.75rem 0; font-weight: 600; font-size: 0.9rem;
}
.footer-thanks { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.78rem; opacity: 0.6; }

/* =========================================================
   Sticky Order Bar
   ========================================================= */
.order-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 600;
  background: var(--ink);
  padding: 0.85rem 1.1rem calc(0.85rem + var(--safe-bottom));
  box-shadow: 0 -12px 30px -14px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.order-bar.visible { transform: translateY(0); }
.order-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.order-summary { display: flex; flex-direction: column; color: var(--cream); }
.order-count { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,246,233,0.6); font-family: var(--font-mono); }
.order-total { font-family: var(--font-mono); font-weight: 700; font-size: 1.15rem; }
.order-actions { display: flex; align-items: center; gap: 0.6rem; }
.order-bar .btn-ghost { color: var(--cream); border-color: rgba(255,246,233,0.3); }
.order-bar .btn-ghost:hover { background: rgba(255,246,233,0.08); }

@media (max-width: 420px) {
  .order-bar .btn-whatsapp span.label { display: none; }
}

/* =========================================================
   PWA Install Banner
   ========================================================= */
.pwa-banner {
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: calc(90px + var(--safe-bottom));
  z-index: 590;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
  padding: 1rem 1.1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: 460px;
  margin: 0 auto;
}
.pwa-banner.show { display: flex; transform: translateY(0); opacity: 1; }
.pwa-banner-text { display: flex; flex-direction: column; font-size: 0.85rem; }
.pwa-banner-text strong { font-size: 0.92rem; }
.pwa-banner-text span { color: var(--text-light); }
.pwa-banner-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.ios-hint {
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: calc(90px + var(--safe-bottom));
  z-index: 590;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 1rem 2.5rem 1rem 1.1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  display: none;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: var(--shadow-pop);
}
.ios-hint.show { display: block; }
.ios-share { color: var(--gold); font-weight: 700; }
.ios-hint-close {
  position: absolute; top: 0.5rem; right: 0.6rem;
  background: none; border: none; color: var(--cream);
  font-size: 1.3rem; cursor: pointer; opacity: 0.7;
}

/* =========================================================
   Toast
   ========================================================= */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(96px + var(--safe-bottom));
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-pop);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 700;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* =========================================================
   Welcome Modal
   ========================================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 18, 12, 0.72);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  margin: auto;
  flex-shrink: 0;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal-header {
  background: linear-gradient(145deg, var(--ink) 0%, #3A2418 100%);
  color: var(--cream);
  padding: 1.6rem 1.6rem 1.3rem;
  text-align: center;
  border-radius: 24px 24px 0 0;
  position: relative;
}
.modal-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.35rem;
}
.modal-header h2 {
  font-size: 1.65rem;
  color: var(--cream);
  font-weight: 600;
}
.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--cream);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.22); }
.modal-body {
  padding: 1.4rem 1.5rem 1.8rem;
  text-align: center;
}
.modal-flyer {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  margin: 0 auto 1.15rem;
  max-height: 280px;
  object-fit: contain;
}
.modal-msg {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.modal-actions .btn { width: 100%; }

/* =========================================================
   Flyer section
   ========================================================= */
.flyer-section {
  background: var(--ink);
  color: var(--cream);
  padding-bottom: 4rem;
}
.flyer-section .section-header h2 { color: var(--cream); }
.flyer-section .tag { background: rgba(255,255,255,0.1); color: var(--gold); }
.flyer-full {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.12);
}

/* Order bar — no price total */
.order-hint {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,246,233,0.65);
  font-weight: 500;
}
.order-total { display: none !important; }

/* Menu card footer when no price */
.menu-card-footer {
  justify-content: flex-end;
}

.footer-engineered {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: rgba(255,246,233,0.75);
  letter-spacing: 0.02em;
}
.footer-engineered a { color: var(--gold); }

/* Map reliability */
.map-embed {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-2);
  margin: 1rem 0 0.75rem;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(145deg, #FBEDD9, #FFF6E9);
  text-align: center;
  padding: 1.2rem;
}
.map-fallback[hidden] { display: none !important; }
.map-fallback p { font-weight: 600; color: var(--ink); }
.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.4rem;
}
.map-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--jollof);
}
.map-link:hover { text-decoration: underline; }

/* Sharper menu images */
.menu-card-media {
  overflow: hidden;
  background: #1B120C;
}
.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-media img {
  transform: scale(1.05);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
