/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #faf9f7;
  --bg-card: #ffffff;
  --bg-warm: #fff7f0;
  --bg-hero-overlay: rgba(255,255,255,0.85);
  --text-primary: #1a1a2e;
  --text-secondary: #555;
  --text-muted: #999;
  --accent: #ff6b35;
  --accent-light: #fff0e8;
  --accent-dark: #e55a2b;
  --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --whatsapp-light: #e8faf0;
  --veg: #0f8a0f;
  --nonveg: #e23744;
  --border: #f0eeeb;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.10);
  --shadow-card-hover: 0 16px 48px rgba(255,107,53,0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0;
  box-shadow: var(--shadow-xs);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--whatsapp) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: var(--transition) !important;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--whatsapp-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: var(--transition);
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #faf9f7 0%, #fff7f0 50%, #fef5ee 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: slideInUp 0.6s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: slideInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
  animation: slideInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideInUp 0.6s ease-out 0.3s both;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.4);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* Floating food emojis */
.floating-emojis {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-emoji {
  position: absolute;
  font-size: 2rem;
  animation: float-around 15s infinite linear;
  opacity: 0.15;
}

@keyframes float-around {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== CATEGORY FILTER ===== */
.category-nav {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(250, 249, 247, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  margin-bottom: 32px;
  transition: var(--transition);
}

.category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

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

.category-pill {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  scroll-snap-align: start;
  user-select: none;
}

.category-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.category-pill.active {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
  transform: scale(1.02);
}

.category-pill .count {
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.category-pill.active .count {
  background: rgba(255,255,255,0.25);
}

/* ===== SEARCH BAR ===== */
.search-container {
  max-width: 480px;
  margin: 0 auto 24px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-card);
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}

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

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

/* ===== MENU GRID ===== */
.menu-category-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  scroll-margin-top: 140px;
}

.menu-category-title .emoji {
  font-size: 1.4rem;
}

.menu-category-title .item-count {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

/* ===== MENU CARD ===== */
.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.menu-card:hover {
  border-color: rgba(255,107,53,0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.menu-card:hover::before {
  transform: scaleX(1);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.card-info {
  flex: 1;
}

.card-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.veg-badge {
  width: 18px;
  height: 18px;
  border: 2px solid var(--veg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.veg-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--veg);
}

.veg-badge.non-veg {
  border-color: var(--nonveg);
}

.veg-badge.non-veg .dot {
  background: var(--nonveg);
}

.popular-badge {
  background: linear-gradient(135deg, #fff3e0, #ffecb3);
  color: #e65100;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.card-price::before {
  content: '₹';
  font-weight: 500;
  opacity: 0.6;
  margin-right: 1px;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ===== WHATSAPP ORDER BUTTON ===== */
.btn-order {
  background: var(--whatsapp);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-bounce);
  box-shadow: 0 2px 8px rgba(37,211,102,0.25);
}

.btn-order:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-order:active {
  transform: scale(0.98);
}

.btn-order svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.no-results.visible {
  display: block;
}

.no-results .emoji {
  font-size: 3rem;
  margin-bottom: 12px;
}

.no-results h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.no-results p {
  color: var(--text-muted);
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
}

.about-feature .icon {
  font-size: 1.3rem;
}

/* ===== CONTACT / CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,107,53,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(37,211,102,0.1) 0%, transparent 50%);
  animation: cta-glow 10s infinite alternate;
}

@keyframes cta-glow {
  0% { transform: translate(-5%, -5%); }
  100% { transform: translate(5%, 5%); }
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-whatsapp {
  background: var(--whatsapp);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.btn-cta-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn-cta-call {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn-cta-call:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: #f5f3f0;
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
}

.footer-brand h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition-bounce);
  animation: float-pulse 3s infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.6); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  font-size: 1.2rem;
  color: var(--text-secondary);
}

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

.back-to-top:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #faf9f7;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-icon {
  font-size: 3rem;
  animation: loaderBounce 1s infinite;
}

.loader-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 16px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.loader-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b35;
  animation: loaderDot 1.2s infinite;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loaderBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes loaderDot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ===== OPEN/CLOSED STATUS BADGE ===== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 12px;
}

.status-badge.open {
  background: #e8faf0;
  color: #1da851;
}

.status-badge.closed {
  background: #fdecea;
  color: #e23744;
}

.status-badge .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.status-badge.open .status-dot { background: #1da851; }
.status-badge.closed .status-dot { background: #e23744; }

.status-hours {
  font-size: 0.78rem;
  color: #999;
  font-weight: 500;
  margin-left: 4px;
}

/* ===== POPULAR SPOTLIGHT SECTION ===== */
.popular-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #faf9f7 0%, #fff7f0 100%);
  overflow: hidden;
}

.popular-scroll-wrapper {
  position: relative;
}

.popular-scroll-wrapper::before,
.popular-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.popular-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff7f0, transparent);
}

.popular-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff7f0, transparent);
}

.popular-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 24px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.popular-scroll::-webkit-scrollbar { display: none; }

.popular-card {
  flex-shrink: 0;
  width: 280px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255,107,53,0.08);
  border: 1.5px solid #f0eeeb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  scroll-snap-align: start;
  position: relative;
}

.popular-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff6b35, #ffa726, #ff6b35);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popular-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255,107,53,0.15);
  border-color: transparent;
}

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

.popular-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.popular-card-body {
  padding: 16px 20px 20px;
}

.popular-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #fff3e0, #ffecb3);
  color: #e65100;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.popular-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.popular-card-desc {
  font-size: 0.82rem;
  color: #999;
  line-height: 1.4;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popular-card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.popular-card-price::before {
  content: '\20B9';
  font-weight: 500;
  opacity: 0.5;
  margin-right: 1px;
}

/* ===== FOOD GALLERY ===== */
.gallery-section {
  padding: 80px 0;
  background: #1a1a2e;
  color: white;
  overflow: hidden;
}

.gallery-section .section-header p {
  color: rgba(255,255,255,0.6);
}

.gallery-section .tag {
  background: rgba(255,107,53,0.15) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  padding: 0 24px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONFETTI CANVAS ===== */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3000;
}

/* ===== ORDER MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-header-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.modal-header-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.modal-close:hover {
  background: #fee;
  color: #e23744;
  border-color: #fcc;
}

.modal-item {
  margin: 16px 24px;
  padding: 14px 16px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid var(--border);
}

.modal-item-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.modal-item-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.modal-form {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label .label-icon {
  font-size: 1rem;
}

.form-input {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.08);
  background: var(--bg-card);
}

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

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit-order {
  background: var(--whatsapp);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  margin-top: 4px;
  width: 100%;
  cursor: pointer;
  border: none;
}

.btn-submit-order:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.btn-submit-order:active {
  transform: translateY(0);
}

.btn-submit-order svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.form-error {
  border-color: #e23744 !important;
  box-shadow: 0 0 0 4px rgba(226,55,68,0.08) !important;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.menu-card {
  opacity: 0;
  transform: translateY(20px);
  animation: none;
}

.menu-card.animate-in {
  animation: cardIn 0.4s ease forwards;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== KEYFRAMES ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 300px;
  }

  .stats-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* --- HERO FIX --- */
  .hero {
    min-height: auto;
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 0;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: 260px;
    right: 0;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, transparent 100%);
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    padding: 24px 0 48px;
    text-align: center;
    max-width: 100%;
  }

  .hero-badge {
    margin-bottom: 16px;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 24px;
  }

  .floating-emojis {
    display: none;
  }

  /* --- NAVBAR --- */
  .navbar {
    padding: 12px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 200;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* --- STATS --- */
  .stats-bar {
    padding: 24px 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    text-align: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* --- MENU --- */
  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .search-container {
    margin-bottom: 16px;
  }

  .search-input {
    padding: 12px 16px 12px 44px;
    font-size: 0.9rem;
  }

  .category-nav {
    top: 54px;
    padding: 10px 0;
  }

  .category-scroll {
    padding: 2px 16px;
    gap: 8px;
  }

  .category-pill {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .menu-category-title {
    font-size: 1.3rem;
    margin: 28px 0 14px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-card {
    padding: 16px;
  }

  .card-name {
    font-size: 1rem;
  }

  .card-desc {
    font-size: 0.8rem;
  }

  .card-price {
    font-size: 1.2rem;
  }

  .btn-order {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  /* --- ABOUT --- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image img {
    height: 240px;
    border-radius: var(--radius-md);
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-feature {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  /* --- CTA --- */
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-cta-whatsapp,
  .btn-cta-call {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* --- FOOTER --- */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* --- FLOATING BUTTON --- */
  .float-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .float-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* --- POPULAR --- */
  .popular-section {
    padding: 48px 0;
  }

  .popular-card {
    width: 240px;
  }

  .popular-card-img {
    height: 140px;
  }

  /* --- GALLERY --- */
  .gallery-section {
    padding: 48px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* --- LOADER --- */
  .loader-icon {
    font-size: 2.5rem;
  }

  .loader-text {
    font-size: 1.2rem;
  }

  /* --- MODAL --- */
  .modal {
    max-width: 100%;
    border-radius: var(--radius-md);
  }

  .modal-header {
    padding: 20px 20px 0;
  }

  .modal-item {
    margin: 12px 20px;
  }

  .modal-form {
    padding: 0 20px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn-primary, .btn-whatsapp {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .menu-card {
    padding: 16px;
  }

  .card-name {
    font-size: 1rem;
  }

  .card-price {
    font-size: 1.15rem;
  }
}
