/* ═══════════════════════════════════════════
   WAFFLES HUB — Coral + Yellow Premium Cafe
   ═══════════════════════════════════════════ */

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

:root {
  --coral: #FF6B6B;
  --coral-dark: #e85555;
  --orange: #FF8C42;
  --yellow: #FFD93D;
  --green: #6BCB77;
  --blue: #4D96FF;
  --bg: #FFFAF5;
  --bg2: #FFF5EC;
  --dark: #1A1208;
  --dark2: #2D2010;
  --text: #3D2C1E;
  --muted: #8B7355;
  --border: rgba(255,107,107,0.15);
  --white: #ffffff;
  --swiggy: #fc8019;
  --zomato: #e23744;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,.nav-logo span,.logo-blob,.btn-order,.btn-primary,.btn-secondary,.mtab,.section-label,.page-hero-label,.hero-h1,.section-h2,.stack-left h3,.cta-inner h2,.menu-cat-label,.addons-box h3,.info-card h3,.footer-logo,.why-card h3,.mcard-back h4,.page-hero-content h1 {
  font-family: 'Bricolage Grotesque', sans-serif !important;
}

.container { max-width: 1200px; margin: auto; padding: 0 24px; }

/* ══ NAV ══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,250,245,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,107,107,0.08);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

.nav.scrolled {
  background: rgba(255,250,245,0.98);
  backdrop-filter: blur(24px);
  box-shadow: 0 2px 32px rgba(255,107,107,0.1);
}

.nav-inner {
  max-width: 1280px; margin: auto;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: padding 0.4s ease;
}

.nav.scrolled .nav-inner { padding: 12px 24px; }

/* Push links + actions to the right on desktop */
.nav-links { margin-left: auto; }

/* Burger always stays at far right */
.burger { margin-left: auto; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}

.logo-blob {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 800;
  box-shadow: 0 4px 16px rgba(255,107,107,0.35);
  transition: transform 0.3s ease;
}

.logo-blob.sm { width: 32px; height: 32px; font-size: 14px; border-radius: 9px; }

.nav-logo:hover .logo-blob { transform: rotate(-6deg) scale(1.05); }

.nav-logo span {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--dark);
}

.nav-links {
  display: flex; gap: 4px;
}

.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--muted); text-decoration: none;
  padding: 8px 16px; border-radius: 10px;
  transition: all 0.25s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--coral); background: rgba(255,107,107,0.08);
}

.nav-actions { flex-shrink: 0; }

.btn-order {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white; text-decoration: none;
  font-size: 13px; font-weight: 600;
  padding: 10px 22px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255,107,107,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,107,0.45); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto;
}

.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ MOBILE MENU ══ */
.mob-menu {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}

.mob-menu.open { opacity: 1; pointer-events: all; }

.mob-menu a {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 700;
  color: var(--dark); text-decoration: none;
  padding: 8px 24px; border-radius: 16px;
  transition: all 0.25s ease;
  transform: translateY(20px); opacity: 0;
}

.mob-menu.open a {
  transform: translateY(0); opacity: 1;
}
.mob-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mob-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mob-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mob-menu.open a:nth-child(4) { transition-delay: 0.2s; }

.mob-menu a:hover { color: var(--coral); background: rgba(255,107,107,0.07); }
.mob-order { background: linear-gradient(135deg,var(--coral),var(--orange)) !important; color: white !important; font-size: 18px !important; border-radius: 50px !important; }

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  max-width: 1280px; margin: auto;
  position: relative; gap: 64px;
}

.hero-shapes {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
}

.s1 {
  width: 600px; height: 600px; top: -100px; right: -100px;
  background: radial-gradient(circle, var(--yellow), var(--orange));
  animation: float1 8s ease-in-out infinite;
}

.s2 {
  width: 400px; height: 400px; bottom: 100px; left: -80px;
  background: radial-gradient(circle, var(--coral), #FF8FA3);
  animation: float2 10s ease-in-out infinite;
}

.s3 {
  width: 300px; height: 300px; top: 50%; left: 40%;
  background: radial-gradient(circle, var(--green), #9DEBB9);
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,40px) scale(1.05)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0) scale(1)} 60%{transform:translate(-20px,30px) scale(0.95)} }

.hero-content { flex: 1; max-width: 560px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,107,0.1);
  border: 1.5px solid rgba(255,107,107,0.2);
  color: var(--coral-dark);
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800; line-height: 1.05;
  color: var(--dark); margin-bottom: 24px;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}

.hero-h1 em {
  font-style: italic; font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: 17px; font-weight: 300; color: var(--muted);
  margin-bottom: 36px; line-height: 1.75;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.65s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white; text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(255,107,107,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-block;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,107,0.45); }

.btn-secondary {
  background: white; color: var(--text);
  border: 2px solid var(--border);
  text-decoration: none; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  transition: all 0.25s ease; display: inline-block;
}

.btn-secondary:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-3px); }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeUp 0.8s ease 0.8s both;
}

.stat { display: flex; flex-direction: column; }
.stat strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; color: var(--dark); }
.stat span { font-size: 12px; color: var(--muted); font-weight: 400; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* ── HERO VISUAL ── */
.hero-visual {
  flex: 1; position: relative; max-width: 520px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-img-wrap {
  position: relative; border-radius: 32px; overflow: hidden;
  aspect-ratio: 4/4.5;
}

.img-blob {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(255,217,61,0.1));
  z-index: 1;
}

.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}

.hero-img-wrap:hover .hero-img { transform: scale(1.04); }

.float-tag {
  position: absolute;
  background: white;
  border-radius: 50px; padding: 10px 18px;
  font-size: 13px; font-weight: 600; color: var(--dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  animation: bobble 3s ease-in-out infinite;
}

.t1 { top: 24px; left: -20px; animation-delay: 0s; }
.t2 { top: 50%; right: -24px; animation-delay: 0.8s; }
.t3 { bottom: 32px; left: -16px; animation-delay: 1.6s; }

@keyframes bobble { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ══ MARQUEE ══ */
.marquee {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}

.marquee-inner {
  display: inline-flex; gap: 32px;
  animation: marquee 20s linear infinite;
}

.marquee-inner span {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.9); letter-spacing: 0.04em;
}

@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ SECTIONS ══ */
.why { padding: 100px 0; background: var(--bg); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(32px,4.5vw,56px);
  font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.1;
}
.section-h2 em {
  font-style: italic;
  background: linear-gradient(135deg,var(--coral),var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 16px; color: var(--muted); margin-bottom: 56px; }

.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px;
}

.why-card {
  background: white; border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid rgba(255,107,107,0.1);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255,107,107,0.15);
}

.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══ STACKING CARDS ══ */
.stack-section { padding: 100px 0; background: var(--bg2); overflow: hidden; }
.stack-section .container { margin-bottom: 48px; }

.stack-wrapper {
  max-width: 900px; margin: 0 auto 32px;
  position: relative; min-height: 360px;
  padding: 0 24px;
}

.stack-card {
  background: var(--card-color, var(--coral));
  border-radius: 28px;
  position: absolute; left: 24px; right: 24px;
  top: 0;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1),
              opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.7s ease;
  cursor: pointer;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  will-change: transform, opacity;
}

.stack-card[data-state="active"] {
  position: relative; left: 0; right: 0;
  transform: translateY(0) scale(1);
  opacity: 1; z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.stack-card[data-state="behind1"] {
  transform: translateY(-14px) scale(0.97);
  opacity: 0.75; z-index: 9;
}
.stack-card[data-state="behind2"] {
  transform: translateY(-24px) scale(0.94);
  opacity: 0.5; z-index: 8;
}
.stack-card[data-state="hidden"] {
  opacity: 0; transform: translateY(-32px) scale(0.91);
  z-index: 7; pointer-events: none;
}

.stack-card-inner {
  display: flex; gap: 0; min-height: 320px;
}

.stack-left {
  flex: 1; padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}

.stack-num {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,0.5); letter-spacing: 0.15em;
  margin-bottom: 16px; display: block;
}

.stack-left h3 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 800;
  color: white; margin-bottom: 14px; line-height: 1.1;
}

.stack-left p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 20px; }

.stack-price {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.stack-btn {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.2);
  color: white; text-decoration: none;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 50px;
  transition: background 0.25s ease;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.stack-btn:hover { background: rgba(255,255,255,0.35); }

.stack-right {
  width: 340px; flex-shrink: 0; overflow: hidden;
}

.stack-right img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.stack-card:hover .stack-right img { transform: scale(1.05); }

.stack-nav {
  display: flex; align-items: center; justify-content: center; gap: 20px;
}

.stack-prev, .stack-next {
  width: 48px; height: 48px; border-radius: 50%;
  background: white; border: 2px solid var(--border);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}

.stack-prev:hover, .stack-next:hover {
  background: var(--coral); border-color: var(--coral); color: white;
  transform: scale(1.1);
}

.stack-dots { display: flex; gap: 8px; }
.stack-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,107,107,0.2); cursor: pointer;
  transition: all 0.25s ease;
}
.stack-dot.active { background: var(--coral); transform: scale(1.3); }

/* ══ REVIEWS ══ */
.reviews { padding: 100px 0; background: var(--bg); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px;
}

.rev-card {
  background: white; border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid rgba(255,107,107,0.1);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
  position: relative; overflow: hidden;
}

.rev-card::before {
  content: '"'; position: absolute;
  top: -20px; right: 24px;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 140px; font-weight: 800;
  color: rgba(255,107,107,0.06); line-height: 1;
  pointer-events: none;
}

.rev-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(255,107,107,0.12); }

.featured-rev {
  background: linear-gradient(135deg, rgba(255,107,107,0.05), rgba(255,217,61,0.05));
  border-color: rgba(255,107,107,0.2);
}

.rev-stars { font-size: 16px; color: var(--yellow); margin-bottom: 14px; letter-spacing: 2px; }
.rev-card > p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }

.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%;
  color: white; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rev-author strong { display: block; font-weight: 600; color: var(--dark); font-size: 14px; }
.rev-author span { font-size: 12px; color: var(--muted); }

/* ══ CTA BANNER ══ */
.cta-banner {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
}

.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-s1 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,107,107,0.2),transparent);
  top: -150px; right: -100px;
}
.cta-s2 {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,217,61,0.15),transparent);
  bottom: -100px; left: 100px;
}

.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(28px,4vw,52px); font-weight: 800;
  color: white; margin-bottom: 12px;
}

.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-swiggy {
  background: var(--swiggy); color: white; text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(252,128,25,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-block;
}
.btn-swiggy:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(252,128,25,0.45); }
.btn-swiggy.sm { font-size: 13px; padding: 10px 20px; }

.btn-zomato {
  background: var(--zomato); color: white; text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(226,55,68,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-block;
}
.btn-zomato:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(226,55,68,0.45); }
.btn-zomato.sm { font-size: 13px; padding: 10px 20px; }

/* ══ FOOTER ══ */
.footer { background: var(--dark); padding: 72px 0 0; }

.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700;
  color: white; margin-bottom: 14px;
}

.footer-brand > p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  font-size: 12px; font-weight: 600; color: var(--coral);
  text-decoration: none; padding: 8px 14px;
  border: 1px solid rgba(255,107,107,0.25); border-radius: 8px;
  transition: all 0.25s ease;
}
.footer-socials a:hover { background: var(--coral); color: white; }

.footer-col h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.5);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--coral); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

.footer-bottom {
  padding: 20px 24px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.2);
}

/* ══ PAGE HERO ══ */
.page-hero {
  padding: 160px 24px 80px;
  position: relative; overflow: hidden;
  text-align: center;
}

.page-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.ph-s1 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,140,66,0.2),transparent);
  top: -100px; right: -100px;
  filter: blur(80px);
}
.ph-s2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,107,107,0.15),transparent);
  bottom: -100px; left: -50px;
  filter: blur(80px);
}

.page-hero-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--coral);
  background: rgba(255,107,107,0.1); border-radius: 50px;
  padding: 6px 16px; margin-bottom: 20px;
}

.page-hero-content { position: relative; z-index: 1; max-width: 680px; margin: auto; }

.page-hero-content h1 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(40px,5.5vw,68px);
  font-weight: 800; color: var(--dark); line-height: 1.1; margin-bottom: 18px;
}

.page-hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg,var(--coral),var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.page-hero-content p { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* ══ MENU PAGE ══ */
.menu-page { padding: 60px 0 100px; }

.menu-tabs {
  display: flex; gap: 8px; margin-bottom: 48px;
  flex-wrap: wrap;
}

.mtab {
  background: white; border: 2px solid var(--border);
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 50px; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}

.mtab:hover { border-color: var(--coral); color: var(--coral); }
.mtab.active { background: linear-gradient(135deg,var(--coral),var(--orange)); border-color: transparent; color: white; box-shadow: 0 4px 20px rgba(255,107,107,0.3); }

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; animation: tabIn 0.5s cubic-bezier(0.16,1,0.3,1); }

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

.menu-cat-label {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--dark); margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}

.menu-cat-label span { font-size: 14px; font-weight: 400; color: var(--muted); font-family: 'DM Sans', sans-serif; }

.menu-cards-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-bottom: 32px;
}

/* ══ 3D FLIP CARDS ══ */
.mcard {
  position: relative;
  perspective: 1000px;
  border-radius: var(--radius-sm);
  height: 260px;
  cursor: pointer;
}

.mcard.hot { z-index: 1; }

.hot-tag {
  position: absolute; top: 10px; right: 10px; z-index: 20;
  background: white; color: var(--dark);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  font-family: 'Bricolage Grotesque', sans-serif;
}

.mcard-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-sm);
}

.mcard:hover .mcard-inner {
  transform: rotateY(180deg);
}

.mcard-front, .mcard-back {
  position: absolute; inset: 0;
  border-radius: var(--radius-sm);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.mcard-front {
  display: flex; flex-direction: column;
  justify-content: flex-end;
}

.mcard-front img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.mcard:hover .mcard-front img { transform: scale(1.06); }

.mcard-front-info {
  position: relative; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 14px 14px 16px;
  display: flex; flex-direction: column; gap: 2px;
}

.mcard-front-info .mcard-emoji { font-size: 20px; }

.mcard-front-info h4 {
  font-size: 13px; font-weight: 700;
  color: white; line-height: 1.25;
  font-family: 'Bricolage Grotesque', sans-serif !important;
}

.mcard-back {
  transform: rotateY(180deg);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 20px 18px; gap: 10px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}

.mcard-back h4 {
  font-size: 15px; font-weight: 800;
  color: white; line-height: 1.2;
  font-family: 'Bricolage Grotesque', sans-serif !important;
}

.mcard-back p {
  font-size: 12px; color: rgba(255,255,255,0.82);
  line-height: 1.6; flex: 1;
}

.mcard-prices { display: flex; gap: 8px; flex-wrap: wrap; }
.mcard-prices span { font-size: 12px; color: rgba(255,255,255,0.7); }
.mcard-prices strong { color: white; font-weight: 800; font-size: 15px; }

.veg-note {
  font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px;
}

/* ADDONS */
.addons-box {
  background: white; border-radius: var(--radius);
  padding: 32px; border: 1.5px solid var(--border);
  margin-top: 32px;
}

.addons-box h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }

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

.addon-chip {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 50px; padding: 10px 18px;
  font-size: 13px; color: var(--text);
  transition: all 0.25s ease;
}

.addon-chip:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
.addon-chip strong { color: var(--coral); margin-left: 4px; font-weight: 700; }

/* ══ FIND US PAGE ══ */
.findus-section { padding: 60px 0 100px; }

.findus-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: start;
}

.findus-info { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: white; border-radius: var(--radius-sm);
  padding: 24px 28px;
  border: 1.5px solid rgba(255,107,107,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,107,107,0.1); }

.info-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.info-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--muted); }

.info-link {
  display: inline-block; margin-top: 10px;
  font-size: 14px; font-weight: 600; color: var(--coral);
  text-decoration: none; transition: color 0.2s ease;
}

.info-link:hover { color: var(--coral-dark); }
.info-link.big { font-size: 20px; font-family: 'Bricolage Grotesque', sans-serif; display: block; }
.info-link.whatsapp-link { color: #25d366; }
.info-link.insta-link { color: #e1306c; }

.hours-list { margin: 10px 0; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.hours-note { font-size: 12px; color: var(--green); margin-top: 8px; }

.order-btns-row { display: flex; gap: 10px; margin-top: 12px; }

.findus-map { border-radius: var(--radius); overflow: hidden; position: sticky; top: 100px; }

.map-wrap { height: 520px; border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { display: block; border-radius: var(--radius); }

.map-cta {
  display: block; text-align: center;
  background: linear-gradient(135deg,var(--coral),var(--orange));
  color: white; text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 16px; border-radius: 0 0 var(--radius) var(--radius);
  transition: opacity 0.25s ease;
}

.map-cta:hover { opacity: 0.9; }

/* ══ WHATSAPP FLOAT ══ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  animation: waPop 0.6s cubic-bezier(0.16,1,0.3,1) 2s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }

@keyframes waPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }

/* ══ SCROLL REVEAL ══ */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

.reveal-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .menu-cards-grid { grid-template-columns: repeat(4,1fr); }
  .nav-inner { padding: 16px 24px; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 120px 20px 60px; gap: 32px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-visual { max-width: 100%; width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .float-tag { display: none; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .findus-grid { grid-template-columns: 1fr; }
  .findus-map { position: static; }
  .stack-right { width: 220px; }
  .menu-cards-grid { grid-template-columns: repeat(3,1fr); }
  .stack-section .container { padding: 0 20px; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; margin-left: auto; }
  .nav-inner { padding: 14px 20px; gap: 0; }
  .nav-logo span { font-size: 16px; }
  .logo-blob { width: 36px; height: 36px; font-size: 16px; }

  /* HERO */
  .hero { padding: 100px 20px 48px; }
  .hero-h1 { font-size: clamp(36px, 9vw, 52px); }
  .hero-p { font-size: 15px; }
  .hero-badge { font-size: 12px; }
  .btn-primary, .btn-secondary { padding: 13px 24px; font-size: 14px; }

  /* SECTIONS */
  .why { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 22px 18px; }
  .section-h2 { font-size: clamp(26px, 6vw, 40px); }

  /* STACK CARDS */
  .stack-section { padding: 64px 0; }
  .stack-card-inner { flex-direction: column; }
  .stack-right { width: 100%; height: 200px; flex-shrink: 0; }
  .stack-left { padding: 28px 24px; }
  .stack-left h3 { font-size: 26px; }
  .stack-wrapper { min-height: 480px; }

  /* MENU */
  .menu-page { padding: 40px 0 60px; }
  .menu-cards-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .mcard { height: 220px; }
  .menu-tabs { gap: 6px; }
  .mtab { padding: 10px 18px; font-size: 13px; }

  /* REVIEWS */
  .reviews { padding: 64px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .rev-card { padding: 24px; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 48px 0 0; }

  /* CTA */
  .cta-banner { padding: 56px 0; }
  .cta-inner h2 { font-size: clamp(24px, 6vw, 36px); }

  /* PAGE HERO */
  .page-hero { padding: 120px 20px 56px; }
  .page-hero-content h1 { font-size: clamp(32px, 7vw, 48px); }

  /* FIND US */
  .findus-section { padding: 40px 0 60px; }
  .map-wrap { height: 320px; }
  .info-card { padding: 20px; }
}

@media (max-width: 480px) {
  /* NAV */
  .nav-inner { padding: 12px 16px; }
  .logo-blob { width: 34px; height: 34px; font-size: 15px; border-radius: 10px; }
  .nav-logo span { font-size: 15px; }

  /* HERO */
  .hero { padding: 90px 16px 40px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; display: flex; }
  .hero-stats { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .hero-stats .stat strong { font-size: 20px; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 20px; }

  /* MENU CARDS */
  .menu-cards-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .mcard { height: 200px; }
  .mcard-front-info h4 { font-size: 11px; }
  .mcard-back h4 { font-size: 13px; }
  .mcard-back p { font-size: 11px; }
  .menu-tabs { flex-wrap: wrap; gap: 6px; }
  .mtab { padding: 9px 14px; font-size: 12px; }

  /* STACK */
  .stack-left h3 { font-size: 22px; }
  .stack-left p { font-size: 13px; }
  .stack-wrapper { min-height: 500px; }
  .stack-right { height: 180px; }

  /* FOOTER */
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; padding: 16px; }

  /* ADDONS */
  .addons-grid { gap: 8px; }
  .addon-chip { padding: 8px 14px; font-size: 12px; }

  /* CONTAINER */
  .container { padding: 0 16px; }
}