/* ═══════════════════════════════════════════════
   MIRNA'S PUPUSERIA — Guacado-Inspired Redesign
   Clean, photo-forward, premium restaurant feel
   ═══════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --orange: #E8650A;
  --orange-light: #F28C28;
  --orange-deep: #C45207;
  --orange-bg: #FFF0E3;
  --dark-brown: #3D2B1F;
  --white: #FFFFFF;
  --cream: #f9f5f0;
  --warm-gray: #f5f0eb;
  --text-dark: #1a1a1a;
  --text-body: #4a4a4a;
  --text-muted: #8a8a8a;
  --border: #e8e2dc;
  --font-heading: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-cursive: 'Great Vibes', cursive;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-deep); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ─── TYPOGRAPHY UTILITIES ─── */
.section-title {
  font-family: 'Cormorant Garamond', var(--font-serif), Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}
.cursive-sub {
  font-family: var(--font-cursive);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--orange);
  font-weight: 400;
}
.cursive-sub.centered { text-align: center; margin-bottom: 40px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-heading); font-size: 1.1rem;
  letter-spacing: 2px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--orange); border-color: #fff; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); color: var(--orange); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: #fff; color: var(--orange); border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 12px 32px; font-size: 1.2rem; }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; letter-spacing: 1px; }
.btn-block { width: 100%; justify-content: center; }
.btn-dark-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 40px; background: var(--dark-brown); color: #fff;
  font-family: var(--font-heading); font-size: 1.2rem; letter-spacing: 2px;
  border-radius: 50px; border: none; cursor: pointer; transition: all var(--transition);
  text-transform: uppercase;
}
.btn-dark-pill:hover { background: #2a1c13; transform: translateY(-2px); }

/* ═══════════ STICKY HEADER ═══════════ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--white); transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; max-width: 1400px; margin: 0 auto;
}
.header-logo img { height: 80px; width: auto; object-fit: contain; }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-social {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; color: var(--text-dark);
  transition: all var(--transition);
}
.header-social:hover { color: var(--orange); background: var(--orange-bg); }

/* Cart Toggle */
.cart-toggle {
  position: relative; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text-dark); transition: color var(--transition);
}
.cart-toggle:hover { color: var(--orange); }
.cart-badge {
  position: absolute; top: 0; right: 0; background: var(--orange); color: #fff;
  font-size: 0.7rem; font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0); transition: all 0.3s ease;
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-dark);
  transition: all 0.3s ease; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Drawer */
.nav-drawer {
  position: fixed; top: 0; right: -100%; width: 300px; max-width: 85vw;
  height: 100vh; background: var(--white); z-index: 999;
  padding: 100px 30px 40px; transition: right 0.35s ease;
  box-shadow: -4px 0 30px rgba(0,0,0,0.1); display: flex;
  flex-direction: column; gap: 0;
}
.nav-drawer.open { right: 0; }
.nav-drawer-link {
  display: block; padding: 16px 0; font-family: var(--font-heading);
  font-size: 1.3rem; letter-spacing: 2px; color: var(--text-dark);
  border-bottom: 1px solid var(--border); transition: color var(--transition);
}
.nav-drawer-link:hover { color: var(--orange); }
.nav-drawer-cta { color: var(--orange) !important; }
.nav-drawer-social {
  margin-top: auto; padding-top: 20px; display: flex; flex-direction: column; gap: 8px;
}
.nav-drawer-social a { font-size: 0.9rem; color: var(--text-muted); }
.nav-drawer-social a:hover { color: var(--orange); }

/* ═══════════ CART DRAWER ═══════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 2000;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw;
  height: 100vh; background: var(--white); z-index: 2001;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15); transition: right 0.35s ease;
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-dark); letter-spacing: 1px; }
.cart-close {
  background: none; border: none; font-size: 1.2rem; cursor: pointer;
  color: var(--text-muted); padding: 4px 8px; border-radius: 4px; transition: all var(--transition);
}
.cart-close:hover { background: var(--cream); color: var(--text-dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-empty p { font-size: 1.1rem; font-weight: 500; color: var(--text-body); margin-bottom: 4px; }
.cart-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.cart-item-price { font-size: 0.85rem; color: var(--orange); font-weight: 600; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.cart-qty-btn {
  width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 6px;
  background: var(--cream); cursor: pointer; font-size: 1rem; color: var(--text-dark);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.cart-qty-btn:hover { background: var(--orange-bg); border-color: var(--orange); }
.cart-item-qty { font-weight: 600; min-width: 20px; text-align: center; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); background: var(--cream); }
.cart-subtotal {
  display: flex; justify-content: space-between; font-size: 1.1rem;
  font-weight: 700; color: var(--text-dark); margin-bottom: 16px;
}
.cart-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.cart-note a { font-weight: 600; }

/* ═══════════ HERO SLIDER ═══════════ */
.hero {
  position: relative; width: 100%; height: 100svh; min-height: 500px;
  overflow: hidden; margin-top: 90px;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 4.5s ease-out;
}
.hero-slide.active img.hero-img {
  transform: scale(1.12);
}

/* Hero text overlay */
.hero-text-overlay {
  position: absolute; bottom: 15%; left: 0; right: 0; z-index: 3;
  text-align: center; padding: 0 20px;
  animation: fadeInUp 0.6s ease-out;
}
.hero-headline {
  font-family: 'Inter', -apple-system, sans-serif; font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300; font-style: normal; color: #fff; text-transform: uppercase;
  letter-spacing: 6px; text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 20px; line-height: 1.15;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-cta-pill {
  display: inline-block; padding: 12px 36px; background: rgba(0,0,0,0.7);
  color: #fff; font-family: var(--font-heading); font-size: 1.1rem;
  letter-spacing: 3px; border-radius: 50px; text-decoration: none;
  transition: all var(--transition); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-cta-pill:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: scale(1.05); }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4);
  border: none; cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.hero-dot.active, .hero-dot:hover { background: var(--orange); transform: scale(1.3); }

/* Slider arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  background: rgba(0,0,0,0.3); color: #fff; border: none; font-size: 2.2rem;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--orange); }
.hero-arrow-left { left: 16px; }
.hero-arrow-right { right: 16px; }

/* ═══════════ ORDER ONLINE SECTION (orange bg) ═══════════ */
.order-online-section {
  background: var(--orange); padding: 60px 0; color: #fff;
}
.order-online-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.order-online-text h2 {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 3px; margin-bottom: 8px;
}
.order-online-section .cursive-sub { color: #fff; margin-bottom: 16px; display: block; }
.order-online-desc { font-size: 1rem; opacity: 0.9; line-height: 1.7; margin-bottom: 24px; }

/* Photo carousel in order section */
.order-photo-carousel { position: relative; overflow: hidden; border-radius: var(--radius); }
.order-photo-track {
  display: flex; gap: 12px; transition: transform 0.5s ease;
}
.order-photo {
  min-width: calc(50% - 6px); border-radius: var(--radius); overflow: hidden;
}
.order-photo img {
  width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius);
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff; border: none; font-size: 1.5rem;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; z-index: 2;
}
.carousel-arrow:hover { background: var(--dark-brown); }
.carousel-arrow-left { left: 8px; }
.carousel-arrow-right { right: 8px; }

/* ═══════════ FEATURED DISHES ═══════════ */
.featured-section { padding: 80px 0; background: var(--white); }
.featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.featured-card { text-align: center; }
.featured-card-img {
  border-radius: var(--radius); overflow: hidden; margin-bottom: 16px;
  aspect-ratio: 1; position: relative;
}
.featured-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-card:hover .featured-card-img img { transform: scale(1.08); }
.featured-card h3 {
  font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 1px;
  color: var(--text-dark); margin-bottom: 8px;
}
.featured-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════ PHOTO GALLERY / COLLAGE ═══════════ */
.gallery-section { padding: 0; background: var(--white); }
.gallery-mosaic {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  max-width: 100%;
}
.gallery-item {
  overflow: hidden; cursor: pointer; border-radius: 6px;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 2;
}
.gallery-full { grid-column: 1 / -1; }
.gallery-full img { height: 350px; }
.gallery-half img { height: 280px; }

/* ═══════════ MENU SECTION ═══════════ */
.menu-section { padding: 80px 0; background: var(--white); }

/* Category tabs */
.menu-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
  margin-bottom: 40px; justify-content: center; flex-wrap: wrap;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: 10px 22px; font-family: var(--font-heading); font-size: 1rem;
  letter-spacing: 1px; color: var(--text-muted); background: var(--white);
  border: 2px solid var(--border); border-radius: 50px; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.menu-tab:hover { color: var(--orange); border-color: var(--orange); }
.menu-tab.active {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* Menu grid */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.menu-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.menu-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--orange-light); }
.menu-card.hidden { display: none; }
.menu-card-img { overflow: hidden; height: 200px; }
.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body { padding: 16px 20px; }
.menu-card-body h3 {
  font-family: var(--font-heading); font-size: 1.15rem; letter-spacing: 0.5px;
  color: var(--text-dark); margin-bottom: 6px;
}
.menu-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.menu-card-price {
  display: block; font-weight: 700; font-size: 1.1rem; color: var(--orange);
  margin-bottom: 12px;
}
.btn-add {
  width: 100%; padding: 10px 16px; font-family: var(--font-heading);
  font-size: 0.95rem; letter-spacing: 1px; color: var(--orange);
  background: var(--orange-bg); border: 1px solid rgba(232,101,10,0.15);
  border-radius: var(--radius-xs); cursor: pointer; transition: all var(--transition);
}
.btn-add:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-add.added { background: #22c55e; color: #fff; border-color: #22c55e; }

/* ═══════════ CATERING SECTION ═══════════ */
.catering-section {
  padding: 80px 0; background: var(--cream); text-align: center;
}
.catering-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 700px;
  margin: 0 auto 32px;
}
.catering-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.catering-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 2;
}
.catering-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .catering-collage { grid-template-columns: repeat(2, 1fr); }
}
.catering-desc {
  max-width: 650px; margin: 0 auto 32px; font-size: 1.05rem;
  color: var(--text-body); line-height: 1.8;
}

/* ═══════════ OUR STORY ═══════════ */
.story-section { padding: 80px 0; background: var(--white); }
.story-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  align-items: center; margin-bottom: 50px;
}
.story-img { border-radius: var(--radius); overflow: hidden; }
.story-img img {
  width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius);
}
.story-text p {
  font-size: 1.05rem; color: var(--text-body); line-height: 1.8; margin-bottom: 16px;
}
.story-text em { color: var(--orange); font-style: italic; }
.testimonial {
  max-width: 700px; margin: 0 auto; text-align: center;
  padding: 32px; background: var(--cream); border-radius: var(--radius);
  border-left: 4px solid var(--orange); position: relative;
}
.testimonial p {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic;
  color: var(--text-dark); line-height: 1.7; margin-bottom: 12px;
}
.testimonial cite {
  font-family: var(--font-body); font-style: normal; font-size: 0.9rem;
  color: var(--text-muted); font-weight: 500;
}

/* ═══════════ PRESS / NYT SECTION ═══════════ */
.press-section { padding: 80px 0; background: var(--cream); }
.press-card {
  max-width: 700px; margin: 0 auto; text-align: center;
  padding: 48px 40px; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); position: relative;
}
.press-label {
  font-family: var(--font-heading); font-size: 0.9rem; letter-spacing: 4px;
  color: var(--text-muted); margin-bottom: 12px;
}
.press-nyt-name {
  font-family: 'Times New Roman', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.5px; margin-bottom: 16px;
}
.press-divider {
  width: 80px; height: 2px; background: var(--text-dark);
  margin: 0 auto 24px; opacity: 0.3;
}
.press-photo {
  max-width: 500px; margin: 0 auto 24px; text-align: center;
}
.press-photo img {
  width: 100%; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.press-photo-caption {
  font-size: 0.75rem; color: #999; margin-top: 8px; font-style: italic;
}
.press-quote p {
  font-family: var(--font-serif); font-size: 1.15rem; font-style: italic;
  color: var(--text-body); line-height: 1.7; margin-bottom: 16px;
}
.press-meta {
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  margin-bottom: 16px;
}
.press-author { font-size: 0.9rem; color: var(--text-muted); }
.press-date { font-size: 0.85rem; color: var(--text-muted); }
.press-article-title {
  font-family: var(--font-serif); font-size: 0.95rem; font-style: italic;
  color: var(--text-dark); margin-bottom: 20px;
}

/* ═══════════ INSTAGRAM SECTION ═══════════ */
.instagram-section { padding: 80px 0; background: var(--white); }
.ig-location-tabs {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 40px;
}
.ig-tab {
  padding: 10px 24px; border: 2px solid var(--orange); background: transparent;
  color: var(--orange); border-radius: 50px; font-family: var(--font-heading);
  font-size: 1rem; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease;
}
.ig-tab.active, .ig-tab:hover { background: var(--orange); color: #fff; }
.ig-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-bottom: 40px;
}
.ig-reel { border-radius: var(--radius); overflow: hidden; }
.ig-reel .instagram-media { margin: 0 !important; min-width: 100% !important; max-width: 100% !important; }
.ig-follow-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-ig {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(225,48,108,0.3);
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(225,48,108,0.4); color: #fff; }

/* ═══════════ LOCATIONS SECTION ═══════════ */
.locations-section { padding: 80px 0; background: var(--cream); }
.locations-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px;
}
.location-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); transition: all var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-md); }
.location-card h3 {
  font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 1px;
  color: var(--text-dark); margin-bottom: 12px;
}
.loc-address { font-size: 1rem; color: var(--text-body); margin-bottom: 8px; line-height: 1.5; }
.loc-phone {
  display: inline-block; font-size: 1.2rem; font-weight: 700;
  color: var(--orange); margin-bottom: 12px;
}
.loc-hours { margin-bottom: 16px; }
.loc-hours p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }
.locations-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.locations-map iframe { border-radius: var(--radius); }

/* ═══════════ FINAL CTA ═══════════ */
.final-cta {
  padding: 80px 0; background: var(--orange); text-align: center; color: #fff;
}
.final-cta h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 3px; margin-bottom: 8px;
}
.final-cta .cursive-sub { color: #fff; margin-bottom: 32px; display: block; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════ DREAMY DISSOLVE TRANSITIONS ═══════════ */
body {
  transition: opacity 0.4s ease;
}
.wave-section {
  opacity: 0;
  filter: blur(6px);
  transform: scale(0.98) translateY(20px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              filter 1.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.wave-section.wave-visible {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1) translateY(0);
}

/* Alternate subtle direction for depth */
.wave-section.wave-left {
  transform: scale(0.97) translateY(30px);
}
.wave-section.wave-right {
  transform: scale(0.97) translateY(30px);
}

@media (prefers-reduced-motion: reduce) {
  .wave-section {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* ═══════════ FOOD ZOOM MODAL ═══════════ */
.food-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}
.food-zoom-overlay.open { opacity: 1; }

.food-zoom-container {
  position: relative;
  width: 90vw;
  max-width: 600px;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.85);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.food-zoom-overlay.open .food-zoom-container {
  transform: scale(1);
}

.food-zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.food-zoom-img.zooming {
  transform: scale(1.25);
}

.food-zoom-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.food-zoom-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.food-zoom-add {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 32px;
  background: #E8650A;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232, 101, 10, 0.4);
}
.food-zoom-add:hover {
  background: var(--orange);
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 30px rgba(232, 101, 10, 0.6);
}

/* Glow pulse animation */
.food-zoom-add-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: zoomBtnGlow 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes zoomBtnGlow {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(232, 101, 10, 0.3);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 25px rgba(232, 101, 10, 0.6), 0 0 50px rgba(232, 101, 10, 0.2);
  }
}

/* Make menu card images clickable */
.menu-card-img { cursor: pointer; }

/* ═══════════ SOCIAL DROPDOWNS ═══════════ */
.social-dropdown-wrap {
  position: relative;
}
.social-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  min-width: 220px;
  z-index: 1000;
  overflow: hidden;
  animation: dropFade 0.2s ease;
}
.social-dropdown.open { display: block; }
.social-dropdown-ig, .social-dropdown-fb {
  padding: 4px 0;
  min-width: 200px;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Social pill buttons */
.social-pill {
  display: block;
  margin: 8px 12px;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

/* Instagram gradient pills */
.ig-pill {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.ig-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
  color: #fff;
}

/* Facebook blue pills */
.fb-pill {
  background: #1877F2;
  color: #fff;
}
.fb-pill:hover {
  background: #166fe5;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
  color: #fff;
}

/* ═══════════ REEL CAROUSEL ═══════════ */
.reel-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}
.reel-carousel-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px 20px;
}
.reel-carousel-wrapper::-webkit-scrollbar { display: none; }
.reel-carousel {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reelScroll 30s linear infinite;
}
.reel-carousel:hover { animation-play-state: paused; }
@keyframes reelScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reel-card {
  display: block;
  position: relative;
  width: 200px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.reel-card:hover .reel-play {
  background: var(--orange);
  transform: translate(-50%, -50%) scale(1.1);
}
.reel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .reel-card {
    width: 160px;
    height: 230px;
  }
}

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--dark-brown); padding: 60px 0 24px; color: rgba(255,255,255,0.7); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 1.1rem; letter-spacing: 1px;
  color: #fff; margin-bottom: 14px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7);
  margin-bottom: 6px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { font-size: 0.82rem; opacity: 0.6; }

/* ═══════════ FIXED BOTTOM NAV (mobile) ═══════════ */
.bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}
.bottom-nav { display: flex; justify-content: space-around; align-items: center; }
.bottom-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: none; border: none; cursor: pointer; padding: 6px 16px;
  color: var(--text-body); font-family: var(--font-heading); font-size: 0.7rem;
  letter-spacing: 1px; transition: color var(--transition);
}
.bottom-nav-item:hover, .bottom-nav-item:active { color: var(--orange); }
.bottom-nav-item svg { stroke: currentColor; }

/* ═══════════ FIXED ORDER PILL ═══════════ */
.fixed-order-pill {
  display: block; position: fixed; z-index: 899;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  padding: 14px 40px; background: var(--orange); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 6px 25px rgba(232,101,10,0.45);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.fixed-order-pill:hover {
  background: var(--orange-deep);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,101,10,0.55);
}

/* ═══════════ FLOATING ACTION BUTTONS ═══════════ */
.fab-stack {
  position: fixed; bottom: 80px; right: 20px; z-index: 898;
  display: flex; flex-direction: column; gap: 12px;
}
.fab-btn {
  width: 48px; height: 48px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: all var(--transition);
  text-decoration: none;
}
.fab-catering { background: var(--white); color: var(--text-dark); }
.fab-chat { background: var(--orange); color: #fff; }
.fab-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(0,0,0,0.25); }

/* ═══════════ ORDER MODAL ═══════════ */
.order-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(0px);
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
.order-modal-overlay.open { display: flex; }
.order-modal-overlay.visible {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.order-modal {
  background: #fff; border-radius: var(--radius); padding: 40px 32px;
  max-width: 420px; width: 100%; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(20px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.order-modal-overlay.visible .order-modal {
  opacity: 1; transform: translateY(0) scale(1);
}
.order-modal-close {
  position: absolute; top: 12px; right: 16px; background: none;
  border: none; font-size: 1.5rem; color: #999; cursor: pointer;
  transition: color var(--transition);
}
.order-modal-close:hover { color: var(--text-dark); }
.order-modal h2 {
  font-family: var(--font-heading); font-size: 2rem; letter-spacing: 2px;
  color: var(--text-dark); margin-bottom: 8px; text-align: center;
}
.order-modal-sub {
  text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px;
}
.order-modal .btn { margin-bottom: 12px; }
.order-pickup-info {
  margin-top: 16px; display: flex; flex-direction: column; gap: 16px;
}
.pickup-loc {
  background: var(--cream); border-radius: var(--radius-xs); padding: 16px;
}
.pickup-loc strong { display: block; margin-bottom: 4px; color: var(--text-dark); }
.pickup-loc p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 4px; }
.pickup-loc a { font-weight: 600; }

/* ═══════════ ADDRESS MODAL (from cart checkout) ═══════════ */
.address-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px); animation: fadeIn 0.3s ease;
}
.address-modal {
  background: #fff; border-radius: var(--radius); padding: 32px;
  max-width: 480px; width: 100%; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: slideUp 0.3s ease;
}
.address-modal-close {
  position: absolute; top: 12px; right: 16px; background: none;
  border: none; font-size: 1.5rem; color: #999; cursor: pointer;
}
.address-modal h3 {
  font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 1px;
  color: var(--text-dark); margin-bottom: 8px;
}
.address-modal p { color: #666; font-size: 0.9rem; margin-bottom: 16px; }
.address-input-wrap {
  position: relative;
  margin-bottom: 16px;
}
.address-input {
  width: 100%; padding: 14px 16px; border: 2px solid #e0e0e0;
  border-radius: 10px; font-size: 1rem; font-family: var(--font-body);
  transition: border-color 0.3s ease;
}
.address-input:focus { outline: none; border-color: var(--orange); }
.address-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid var(--orange);
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.address-suggestion {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.address-suggestion:last-child { border-bottom: none; }
.address-suggestion:hover {
  background: #fff5ec;
  color: var(--orange);
}
.address-modal-actions { display: flex; gap: 12px; margin-bottom: 16px; }
.address-modal-actions .btn { flex: 1; text-align: center; font-size: 0.85rem; padding: 12px 16px; }
.address-or { text-align: center; color: #999; font-size: 0.85rem; margin-bottom: 12px; }
.address-phones { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.address-phones .btn-sm { font-size: 0.8rem; padding: 8px 14px; }
.address-result { margin-bottom: 16px; animation: fadeIn 0.3s ease; }
.address-success {
  background: #f0fdf4; border: 1px solid #86efac; border-radius: 10px; padding: 16px;
}
.address-success p { color: #166534; margin-bottom: 8px; }
.address-success strong { color: #14532d; }
.address-warning {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 16px;
}
.address-warning p { color: #92400e; margin-bottom: 8px; }
.address-error { color: #dc2626; font-weight: 500; }
.address-order-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.address-order-btns .btn-sm { font-size: 0.85rem; padding: 10px 16px; }

/* ═══════════ MUSIC TOGGLE ═══════════ */
.music-toggle {
  position: fixed; bottom: 140px; right: 20px; z-index: 897;
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  color: var(--text-dark); border: 1px solid var(--border); cursor: pointer;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.music-toggle:hover { box-shadow: var(--shadow-md); transform: scale(1.1); }
.music-toggle.playing { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ═══════════ RESPONSIVE ═══════════ */

/* Desktop: hide bottom nav & order pill, show FABs higher */
@media (min-width: 993px) {
  .bottom-nav { display: none !important; }
  .fixed-order-pill { /* always visible */ }
  .fab-stack { bottom: 30px; }
  .music-toggle { bottom: 100px; }
  .hamburger { display: none; }
  .header-inner { padding: 10px 40px; }
}

/* Tablet */
@media (max-width: 992px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .story-content { grid-template-columns: 1fr; gap: 30px; }
  .story-img img { height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .order-online-content { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero { margin-top: 70px; height: calc(100svh - 70px); }
  .header-logo img { height: 65px; }
  .header-inner { padding: 8px 16px; }

  .bottom-nav { display: flex !important; }
  .fixed-order-pill { /* always visible */ }

  .fab-stack { bottom: 130px; right: 16px; }
  .music-toggle { bottom: 190px; right: 16px; }

  .hero-headline { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .hero-arrow { width: 40px; height: 40px; font-size: 1.6rem; }

  .featured-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .featured-card p { font-size: 0.82rem; }

  .gallery-full img { height: 220px; }
  .gallery-half img { height: 180px; }

  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
  .menu-tabs { justify-content: flex-start; flex-wrap: nowrap; }

  .locations-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .ig-grid { grid-template-columns: 1fr; gap: 16px; }

  .order-photo img { height: 180px; }
  .order-online-section { padding: 40px 0; }

  .final-cta-btns { flex-direction: column; align-items: center; }

  /* Add bottom padding for fixed nav */
  body { padding-bottom: 120px; }
}

@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-half img { height: 160px; }
  .gallery-full img { height: 200px; }
  .order-photo { min-width: 70%; }
  .press-card { padding: 32px 20px; }
  .address-modal-actions { flex-direction: column; }
  .address-order-btns { flex-direction: column; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hero slides clickable */
.hero-slide { cursor: pointer; }
.hero-slide img.hero-img { pointer-events: none; }

/* Pill positioning adjustments */
@media (max-width: 768px) {
  .fixed-order-pill {
    bottom: 72px; /* above bottom nav */
  }
}
@media (min-width: 769px) {
  .fixed-order-pill {
    bottom: 28px;
  }
}
