/* ============================================================
   CUISIVO — Enhanced Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #FF6B35;
  --primary-dark: #e05a2b;
  --primary-light: #fff3ee;
  --secondary: #2EC4B6;
  --secondary-dark: #22a99d;
  --accent-gold: #F7B731;
  --dark: #1a1a2e;
  --text-main: #2d2d2d;
  --text-muted: #718096;
  --border: #e8e8e8;
  --surface: #fafafa;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background: #fafafa;
}

/* ============ REMIX ICONS — do NOT override, library handles it ============ */

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ============ HEADER ============ */
header {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo-text {
  font-family: 'Pacifico', cursive;
  color: var(--primary);
  font-size: 2rem;
  letter-spacing: -0.5px;
  transition: var(--transition);
}
.logo-text:hover { color: var(--primary-dark); transform: scale(1.03); }

/* ============ NAVIGATION ============ */
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ============ HERO ============ */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.92) 0%, rgba(247,183,49,0.85) 50%, rgba(46,196,182,0.7) 100%);
  z-index: 1;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: saturate(1.2);
}
.hero-section .hero-content { position: relative; z-index: 2; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.4);
  color: white;
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary);
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: var(--primary);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--text-main);
  border-color: #ccc;
}

/* ============ CARDS ============ */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.food-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  cursor: pointer;
}
.food-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.food-card .food-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.food-card .food-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-card:hover .food-img-wrap img {
  transform: scale(1.08);
}
.food-card .food-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.food-card .fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.food-card .fav-btn:hover { transform: scale(1.15); }
.food-card .fav-btn.active i { color: #e53e3e; }

/* ============ CUISINE SECTION HEADERS ============ */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1.25;
}
.section-title em { font-style: italic; color: var(--primary); }

/* ============ SEARCH INPUT ============ */
.search-input-wrap {
  position: relative;
}
.search-input-wrap input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.8rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: var(--transition);
  background: white;
  color: var(--text-main);
}
.search-input-wrap input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}
.search-input-wrap .search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* ============ CATEGORY PILLS ============ */
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-muted);
  text-decoration: none;
}
.category-pill:hover, .category-pill.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

/* ============ RATING STARS ============ */
.stars { color: var(--accent-gold); font-size: 0.8rem; }

/* ============ BADGE ============ */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.badge-green { background: #d1fae5; color: #059669; }
.badge-yellow { background: #fef3c7; color: #d97706; }
.badge-red { background: #fee2e2; color: #dc2626; }
.badge-blue { background: #e0e7ff; color: #4f46e5; }
.badge-orange { background: #fff3ee; color: var(--primary); }

/* ============ ORDER STATUS ============ */
.order-status { display: inline-block; padding: 4px 12px; border-radius: 9999px; font-size: 12px; font-weight: 500; text-transform: capitalize; }
.order-status-processing { background-color: #fef3c7; color: #d97706; }
.order-status-delivered { background-color: #d1fae5; color: #059669; }
.order-status-cancelled { background-color: #fee2e2; color: #dc2626; }
.order-status-pending { background-color: #e0e7ff; color: #4f46e5; }

/* ============ PROFILE NAV ============ */
.profile-nav-item.active {
  background: var(--primary) !important;
  color: white !important;
}

/* ============ FORM ELEMENTS ============ */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: var(--transition);
  background: white;
  color: var(--text-main);
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ============ CUSTOM CHECKBOX ============ */
.custom-checkbox { position: relative; padding-left: 30px; cursor: pointer; user-select: none; }
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; background-color: #fff; border: 2px solid #e2e8f0; border-radius: 4px; }
.custom-checkbox:hover input ~ .checkmark { border-color: var(--primary); }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--primary); border-color: var(--primary); }
.checkmark:after { content: ""; position: absolute; display: none; }
.custom-checkbox input:checked ~ .checkmark:after { display: block; }
.custom-checkbox .checkmark:after { left: 6px; top: 2px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ============ CUSTOM SWITCH ============ */
.custom-switch { position: relative; display: inline-block; width: 50px; height: 24px; }
.custom-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #e2e8f0; transition: .4s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(26px); }

/* ============ CUSTOM RADIO ============ */
.custom-radio { position: relative; padding-left: 30px; cursor: pointer; user-select: none; }
.custom-radio input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.radio-mark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; background-color: #fff; border: 2px solid #e2e8f0; border-radius: 50%; }
.custom-radio:hover input ~ .radio-mark { border-color: var(--primary); }
.custom-radio input:checked ~ .radio-mark { border-color: var(--primary); }
.radio-mark:after { content: ""; position: absolute; display: none; }
.custom-radio input:checked ~ .radio-mark:after { display: block; }
.custom-radio .radio-mark:after { top: 4px; left: 4px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

/* ============ RANGE INPUT ============ */
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; background: var(--primary); border-radius: 50%; cursor: pointer; }

/* ============ CUISINE FILTER ============ */
.cuisine-hidden { display: none !important; }
.cuisine-btn-active { background-color: var(--primary) !important; color: white !important; }

/* ============ TOAST NOTIFICATION ============ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.25rem; color: var(--primary); flex-shrink: 0; }

/* ============ CART PANEL ============ */
#cartPanel {
  animation: slideInRight 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============ MOBILE MENU ============ */
#mobileMenu {
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTION DIVIDER ============ */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 2rem 0;
}

/* ============ STATS / COUNTER CARDS ============ */
.stat-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-card .stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ============ CUISINE HERO BANNERS ============ */
.cuisine-hero {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}
.cuisine-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}
.cuisine-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cuisine-hero:hover img { transform: scale(1.05); }
.cuisine-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; z-index: 2; color: white; }

/* ============ TESTIMONIAL CARD ============ */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ============ NEWSLETTER ============ */
.newsletter-form .flex { gap: 0; }
.newsletter-form input {
  border-radius: 10px 0 0 10px;
  border: 1.5px solid var(--border);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0.65rem 1rem;
  width: 100%;
  font-size: 0.875rem;
  transition: var(--transition);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}
.newsletter-form button {
  border-radius: 0 10px 10px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
}

/* ============ FOOTER ============ */
footer { background: #111827; }
footer a:hover { color: white !important; }
.footer-logo { font-family: 'Pacifico', cursive; color: var(--primary); font-size: 1.75rem; }

/* ============ PULSE ANIMATION ============ */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}
.pulse { animation: pulse-ring 2s infinite; }

/* ============ FADE IN ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }
.fade-in-5 { animation-delay: 0.5s; }

/* ============ FLOATING CART BUTTON (mobile) ============ */
.floating-cart {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255,107,53,0.5);
  cursor: pointer;
  z-index: 100;
  transition: var(--transition);
  border: none;
  font-size: 1.25rem;
}
.floating-cart:hover { transform: scale(1.1); background: var(--primary-dark); }

/* ============ ORDER TRACKING ============ */
.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.track-step::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(-50% + 18px);
  right: calc(50% + 18px);
  height: 3px;
  background: var(--border);
  z-index: 0;
}
.track-step:first-child::before { display: none; }
.track-step.done::before { background: var(--primary); }

.track-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #aaa;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.track-step.done .track-dot, .track-step.active .track-dot {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.2);
}
.track-step.active .track-dot { animation: pulse-ring 2s infinite; }
.track-label { font-size: 0.7rem; font-weight: 600; text-align: center; color: var(--text-muted); }
.track-step.done .track-label, .track-step.active .track-label { color: var(--primary); }

/* ============ BLOG CARD ============ */
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.06); }

/* ============ BACK TO TOP ============ */
#backToTop {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ============ SEARCH HIGHLIGHT ============ */
.search-highlight { background-color: #fef3c7; padding: 2px 4px; border-radius: 2px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .section-title { font-size: 1.6rem; }
  .hero-section { padding: 4rem 0; }
}

/* ============================================================
   CUISIVO — EPIC DESIGN EXTENSIONS v2.0
   ============================================================ */

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #FF6B35 0%, #F7B731 50%, #2EC4B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, #FF6B35 0%, #F7B731 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO GRADIENT ORBS ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}
.orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, #FF6B35, transparent); top: -100px; left: -100px; animation: floatOrb 8s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, #2EC4B6, transparent); bottom: -80px; right: 10%; animation: floatOrb 6s ease-in-out infinite reverse; }
.orb-3 { width: 200px; height: 200px; background: radial-gradient(circle, #F7B731, transparent); top: 40%; left: 50%; animation: floatOrb 10s ease-in-out infinite; }
@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* ===== SHIMMER LOADING ===== */
@keyframes shimmer {
  0% { background-position: -468px 0; }
  100% { background-position: 468px 0; }
}
.shimmer {
  background: linear-gradient(to right, #f6f7f8 8%, #edeef1 18%, #f6f7f8 33%);
  background-size: 800px 104px;
  animation: shimmer 1.5s infinite linear;
}

/* ===== MARQUEE TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0;
}
.ticker-track {
  display: flex;
  gap: 4rem;
  animation: ticker 32s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.ticker-item i { opacity: 0.85; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.88); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== CUISINE CARD OVERLAY ===== */
.cuisine-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2;
  display: block;
  text-decoration: none;
}
.cuisine-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cuisine-card:hover img { transform: scale(1.12); }
.cuisine-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  transition: var(--transition);
}
.cuisine-card:hover .cuisine-card-overlay { background: linear-gradient(to top, rgba(255,107,53,0.88) 0%, rgba(0,0,0,0.1) 70%); }
.cuisine-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: white; transform: translateY(8px); transition: var(--transition); }
.cuisine-card:hover .cuisine-card-body { transform: translateY(0); }
.cuisine-card-cta { opacity: 0; transform: translateY(8px); transition: all 0.3s ease 0.1s; }
.cuisine-card:hover .cuisine-card-cta { opacity: 1; transform: translateY(0); }

/* ===== GLOW RIPPLE BUTTON ===== */
.btn-glow {
  position: relative;
  overflow: hidden;
}
.btn-glow::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-glow:hover::after { width: 350px; height: 350px; }

/* ===== DARK OFFER SECTION ===== */
.offer-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  top: -250px; left: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.offer-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,196,182,0.12) 0%, transparent 70%);
  bottom: -200px; right: 5%;
  border-radius: 50%;
  pointer-events: none;
}

/* ===== LIVE BADGE ===== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #dc2626;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.live-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
  animation: liveBlink 1.1s infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

/* ===== FEATURE ICON BOXES ===== */
.feature-icon-box {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.feature-icon-box:hover { transform: rotate(-8deg) scale(1.12); }

/* ===== PROGRESS BARS ===== */
.progress-bar-wrap { background: #f1f5f9; border-radius: 50px; height: 7px; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(to right, var(--primary), var(--accent-gold)); transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* ===== NUTRITION PILLS ===== */
.nutrition-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
}
.nutrition-pill.spicy { background: #fee2e2; color: #dc2626; }
.nutrition-pill.veg { background: #d1fae5; color: #059669; }
.nutrition-pill.halal { background: #e0f2fe; color: #0284c7; }
.nutrition-pill.new-dish { background: #fef3c7; color: #d97706; }

/* ===== QUICK VIEW MODAL ===== */
.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.quick-view-modal.open {
  opacity: 1;
  pointer-events: all;
}
.quick-view-content {
  background: white;
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.88) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.quick-view-modal.open .quick-view-content { transform: scale(1) translateY(0); }

/* ===== SCROLL PROGRESS BAR ===== */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent-gold), var(--secondary));
  z-index: 2000;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ===== FLOATING DELIVERY NOTIFICATION ===== */
.delivery-notification {
  position: fixed;
  bottom: 6.5rem;
  left: 1.5rem;
  background: white;
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 280px;
  z-index: 95;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid var(--secondary);
}
.delivery-notification.show { transform: translateX(0); }
.delivery-notification-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: none;
  justify-content: space-around;
  padding: 0.55rem 0 calc(0.55rem + env(safe-area-inset-bottom));
  z-index: 80;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.07);
}
@media (max-width: 767px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 5rem; }
}
.mobile-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 0.62rem; font-weight: 600; color: var(--text-muted);
  text-decoration: none; transition: var(--transition); cursor: pointer;
  background: none; border: none; padding: 0 0.5rem;
}
.mobile-nav-item i { font-size: 1.35rem; line-height: 1; }
.mobile-nav-item.active, .mobile-nav-item:hover { color: var(--primary); }
.mobile-nav-item.active i { transform: scale(1.1); }

/* ===== ANIMATED GRADIENT BORDER ===== */
.gradient-border {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #FF6B35, #F7B731, #2EC4B6, #FF6B35);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-border-inner { background: white; border-radius: 18px; }

/* ===== STAGGER DELAYS FOR REVEAL ===== */
.delay-100 { transition-delay: 0.10s !important; }
.delay-200 { transition-delay: 0.20s !important; }
.delay-300 { transition-delay: 0.30s !important; }
.delay-400 { transition-delay: 0.40s !important; }
.delay-500 { transition-delay: 0.50s !important; }

/* ===== SPECIALTIES CARD ===== */
.spec-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.spec-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.55s ease; }
.spec-card:hover .spec-card-img { transform: scale(1.07); }

/* ===== INTERACTIVE SPICE METER ===== */
.spice-meter { display: flex; gap: 4px; align-items: center; }
.spice-pip { width: 10px; height: 10px; border-radius: 50%; background: #e5e7eb; transition: background 0.2s; }
.spice-pip.hot { background: #dc2626; }
.spice-pip.mild { background: #f59e0b; }

/* ===== MEGA AMBIENT GLOW ===== */
.ambient-glow { box-shadow: 0 0 80px rgba(255,107,53,0.18), 0 0 160px rgba(255,107,53,0.08); }

/* ===== IMAGE CARD STACK ===== */
.img-stack { position: relative; }
.img-stack-item {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.img-stack-item:nth-child(2) { position: absolute; top: -12px; right: -12px; z-index: -1; opacity: 0.7; transform: rotate(4deg); }
.img-stack-item:nth-child(3) { position: absolute; top: -24px; right: -24px; z-index: -2; opacity: 0.4; transform: rotate(8deg); }

/* ===== RESPONSIVE fine-tuning ===== */
@media (max-width: 480px) {
  .delivery-notification { max-width: 240px; }
  .quick-view-content { border-radius: 16px; }
}