/* ============================
   FOODZIPPY — PREMIUM IMAGE THEME
   Design System + Components
   ============================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-secondary: #fdfdfd;
  --color-bg-card: #ffffff;
  --color-bg-glass: rgba(255, 255, 255, 0.7);
  --color-border: rgba(0, 0, 0, 0.06);
  --color-text: #1a1a1a;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;

  --color-red: #ff4d4d;
  --color-orange: #ff6b35;
  --color-gold: #f7c150;
  --color-green: #10b981;

  --gradient-brand: linear-gradient(135deg, #ff4d4d 0%, #ff6b35 50%, #f7c150 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(255, 77, 77, 0.05) 0%, rgba(255, 107, 53, 0.05) 50%, rgba(247, 193, 80, 0.05) 100%);
  --gradient-glow: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 10px 40px rgba(255, 77, 77, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 100px;

  /* ===== FONT SYSTEM ===== */
  --font-heading: 'Century Gothic', 'Trebuchet MS', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-thin: 'Montserrat', sans-serif;
  --font-calligraphy: 'Great Vibes', cursive;
  --font-roboto: 'Roboto', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-okra: 'Lexend Deca', sans-serif;       /* Okra-style semi-bold */
  --font-anton: 'Anton', sans-serif;             /* Caption bold */
  --font-bitcoin: 'Courier New', monospace;      /* Grid/mono style */
  --font-lexend: 'Lexend Deca', sans-serif;
  --font-petemoss: 'Petemoss', cursive;          /* Stylish */
  --font-alex-brush: 'Alex Brush', cursive;      /* Stylish */
  --font-parisienne: 'Parisienne', cursive;      /* Stylish */
  --font-ambassador: 'Lexend Deca', sans-serif;  /* Ambassador = Lexend Deca bold */

  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --transition-fast: 0.15s cubic-bezier(0.2, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.2, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

/* 120Hz Scroll Optimization */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  will-change: auto;
}

.smooth-scroll {
  will-change: transform;
}

/* ---------- THEME HYBRIDS ---------- */
.theme-premium {
  --color-bg: #0b0c10;
  --color-text: #ffffff;
  --color-text-secondary: #c5c6c7;
  --color-border: rgba(255, 215, 0, 0.1);
  --color-gold-text: #f7c150;
  background: var(--color-bg);
  color: var(--color-text);
}

.theme-budget {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-orange: #ff6b35;
  --color-red: #ff4d4d;
  background: var(--color-bg);
  color: var(--color-text);
}

.font-thin-wide {
  font-family: var(--font-thin);
  font-weight: 100;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.font-calligraphy {
  font-family: var(--font-calligraphy);
  font-size: 1.5em;
}

.font-bold-rounded {
  font-weight: 800;
  border-radius: 50px;
}

/* ===== NEW FONT UTILITY CLASSES ===== */
.font-ambassador {
  font-family: var(--font-ambassador);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.font-okra {
  font-family: var(--font-okra);
  font-weight: 600;
}

.font-anton {
  font-family: var(--font-anton);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.font-petemoss {
  font-family: var(--font-petemoss);
  font-size: 1.4em;
}

.font-alex-brush {
  font-family: var(--font-alex-brush);
  font-size: 1.3em;
}

.font-parisienne {
  font-family: var(--font-parisienne);
  font-size: 1.3em;
}

.font-lexend {
  font-family: var(--font-lexend);
  font-weight: 600;
}

/* ===== GLASS EFFECTS ===== */
.glass-white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.glass-white-strong {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: bold !important;
  line-height: 1.2;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
  padding: 6px 16px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-full);
  background: rgba(255, 107, 53, 0.08);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.section-desc.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  overflow: hidden;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-outline {
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-2px);
}

.btn-glow {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-glass {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  padding: 10px 30px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-orange);
  transform: translateY(-3px);
}

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

/* ---------- PRELOADER / LOGO INTRO ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #06060b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

#preloader.hidden {
  opacity: 0;
  transform: scale(1.15);
  visibility: hidden;
  pointer-events: none;
}

/* Particles */
.intro-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.intro-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  30% { opacity: 0.8; transform: translateY(-40px) scale(1); }
  100% { opacity: 0; transform: translateY(-120px) scale(0.3); }
}

/* Glowing rings */
.intro-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  z-index: 1;
}
.ring-1 {
  width: 250px; height: 250px;
  border-color: rgba(255, 107, 53, 0.15);
  animation: ringPulse 2.5s ease-in-out infinite, ringSpin 12s linear infinite;
}
.ring-2 {
  width: 350px; height: 350px;
  border-color: rgba(247, 193, 80, 0.1);
  animation: ringPulse 3s ease-in-out infinite 0.5s, ringSpin 18s linear infinite reverse;
}
.ring-3 {
  width: 450px; height: 450px;
  border-color: rgba(255, 77, 77, 0.06);
  animation: ringPulse 3.5s ease-in-out infinite 1s, ringSpin 25s linear infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Preloader inner content */
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: relative;
}

.preloader-logo {
  width: 160px;
  height: auto;
  opacity: 0;
  transform: scale(0.3) rotate(-15deg);
  animation: logoReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  filter: drop-shadow(0 0 30px rgba(247, 193, 80, 0.4));
}

@keyframes logoReveal {
  0% { opacity: 0; transform: scale(0.3) rotate(-15deg); filter: drop-shadow(0 0 0 transparent); }
  60% { opacity: 1; transform: scale(1.1) rotate(3deg); filter: drop-shadow(0 0 40px rgba(247, 193, 80, 0.6)); }
  80% { transform: scale(0.95) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 20px rgba(247, 193, 80, 0.3)); }
}

/* Tagline letter-by-letter reveal */
.intro-tagline {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
}
.intro-tagline span {
  opacity: 0;
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  animation: letterReveal 0.4s ease forwards;
}

@keyframes letterReveal {
  0% { opacity: 0; transform: translateY(15px) scale(0.5); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Progress bar */
.intro-progress {
  margin-top: 2rem;
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.5s ease 1s forwards;
}
.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-brand);
  border-radius: 10px;
  animation: progressFill 2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ---------- SUBNAVBAR ---------- */
.subnavbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #06060b;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  z-index: 1001;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subnavbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.subnavbar-links {
  display: flex;
  gap: 1.5rem;
}

.subnavbar-links a {
  color: #aaa;
  transition: color var(--transition-fast);
}

.subnavbar-links a:hover {
  color: var(--color-gold);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: rgba(13, 13, 20, 0.4); /* Classy Dark Glass base */
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  background: rgba(13, 13, 20, 0.95); /* Deeper dark on scroll */
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.8rem 0;
}

.navbar-links a {
  color: #fff; /* White links for the classy dark navbar */
}

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

.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 90px; /* Enhanced logo size */
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: 70px; /* Slightly smaller on scroll */
}

/* ENLARGED LOGO */
.navbar-links {
  display: flex;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff; /* Changed from black to white */
  position: relative;
  padding: 4px 0;
}

.navbar-links a:hover {
  color: var(--color-gold);
}

.navbar-cta {
  padding: 10px 28px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff; /* Changed from black to white */
  transition: all var(--transition-base);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 120px 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-menu a {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: bold;
}

.mobile-menu a:hover {
  color: var(--color-orange);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 130px;
  overflow: hidden;
  color: #fff; /* White text for contrast against video */
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 10s linear;
  transform: scale(1.1);
}

.hero-bg-img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-video-overlay {
  display: none; /* Removed the mask completely */
}

.hero-gradient-overlay {
  display: none; /* Hide old overlay in favor of video overlay */
}

/* Floating food images in hero background */
.hero-float-food {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
  filter: blur(1px);
}
.float-1 { width: 180px; height: 180px; top: 10%; left: 5%; animation: floatFood 8s ease-in-out infinite; }
.float-2 { width: 140px; height: 140px; top: 60%; left: 2%; animation: floatFood 10s ease-in-out infinite 1s; }
.float-3 { width: 120px; height: 120px; bottom: 15%; right: 5%; animation: floatFood 9s ease-in-out infinite 0.5s; }
.float-4 { width: 100px; height: 100px; top: 20%; right: 8%; animation: floatFood 7s ease-in-out infinite 2s; }

@keyframes floatFood {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-25px) rotate(-3deg); }
  75% { transform: translateY(-10px) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--color-orange);
  margin-bottom: 2rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 550px;
}

/* Zomato-style search bar */
.hero-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-full);
  padding: 6px;
  margin-bottom: 2.5rem;
  max-width: 580px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}
.hero-search:focus-within {
  border-color: var(--color-orange);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}
.hero-search-location {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-right: 2px solid #e8e8e8;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  cursor: pointer;
}
.hero-search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 10px 16px;
  color: var(--color-text-muted);
  position: relative;
}
.hero-search-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: transparent;
  color: var(--color-text);
}
.hero-search-input input::placeholder { color: var(--color-text-muted); }

/* Hero stat counters */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-box {
  text-align: center;
}
.hero-stat-box .stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: var(--font-heading);
  line-height: 1;
}
.hero-stat-box .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Phone mockup */
.hero-phone-mockup {
  position: relative;
  width: 320px;
  height: 560px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 8px #222, 0 0 0 10px #444;
  animation: floatPhone 6s ease-in-out infinite;
  background: #000;
}
.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.phone-overlay-badge {
  position: absolute;
  bottom: 25px;
  right: -15px;
  background: var(--gradient-brand);
  color: #fff;
  padding: 15px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
  border: 4px solid rgba(255,255,255,0.2);
  z-index: 10;
}
.phone-overlay-badge span { display: block; font-weight: 900; font-size: 1.2rem; line-height: 1; }
.phone-overlay-badge small { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

@keyframes pulse-glow {
  0% { transform: scale(1) rotate(-10deg); box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4); }
  50% { transform: scale(1.05) rotate(-5deg); box-shadow: 0 15px 45px rgba(255, 77, 77, 0.6); }
  100% { transform: scale(1) rotate(-10deg); box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  animation: bounce 2s ease infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- MARQUEE BANNER ---------- */
.marquee-banner {
  overflow: hidden;
  background: var(--gradient-brand);
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  padding: 0 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- CUISINE CAROUSEL ---------- */
.cuisine-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cuisine-carousel::-webkit-scrollbar { display: none; }
.cuisine-item {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform var(--transition-base);
}
.cuisine-item:hover { transform: translateY(-8px); }
.cuisine-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 4px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--gradient-brand) border-box;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.cuisine-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.cuisine-item:hover .cuisine-circle img { transform: scale(1.15); }
.cuisine-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-features {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.brand-partner {
  height: 60px;
  width: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.brand-partner:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.about-feature-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.about-image-wrapper {
  position: relative;
  height: 550px;
}

.about-main-img {
  width: 90%;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  margin-left: auto;
}

.about-floating-img {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--color-bg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.floating-stat {
  position: absolute;
  bottom: 40px;
  left: -20px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 107, 53, 0.3);
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  padding-bottom: 2rem;
}

.service-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--color-bg-card) 100%);
  pointer-events: none;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--color-text);
  margin: 0 2rem 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 2rem;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: var(--shadow-glow);
}

.service-card:hover .sc-img {
  transform: scale(1.1);
}

/* ---------- HOW IT WORKS ---------- */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.how-image-frame {
  position: relative;
  height: 600px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 2px;
  background: var(--gradient-brand);
}

.how-main-img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-xl) - 2px);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-row {
  display: flex;
  gap: 1.5rem;
}

.step-num {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--gradient-subtle);
  border: 1px solid var(--color-orange);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-weight: bold;
  transition: all var(--transition-fast);
}

.step-row:hover .step-num {
  background: var(--gradient-brand);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.step-row h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ---------- WHY US ---------- */
.why-us {
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.why-card {
  background: var(--color-bg);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.why-us-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-track {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonial-card {
  min-width: 400px;
  padding: 3rem;
  border-radius: var(--radius-xl);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-orange);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 1.1rem;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-bg-card);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.testimonial-btn:hover {
  background: var(--gradient-brand);
  border-color: transparent;
}

.testimonials-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--gradient-brand);
}

/* ---------- BUSINESS FORMS ---------- */
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.business-card {
  position: relative;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.b-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  z-index: 1;
}

.business-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 11, 0.9), rgba(6, 6, 11, 0.1));
  z-index: 2;
  pointer-events: none;
}

.business-card:hover .b-img {
  transform: scale(1.05);
}

.business-overlay {
  position: relative;
  z-index: 3;
}

.business-overlay h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15) 0%, var(--color-bg) 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  color: var(--color-text-secondary);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-trust span {
  margin: 0 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 107, 53, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-chevron {
  transition: transform 0.3s;
  color: var(--color-orange);
}

.faq-item.open {
  border-color: var(--color-orange);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-secondary);
}

/* ---------- UNIQUE SECTION BACKGROUNDS (Dark & Light Mix) ---------- */
.cuisines {
  background-color: #fcfcfc;
}

.about {
  background-color: #0d0d14; /* Dark Section */
  color: #fff;
}
.about .section-desc { color: rgba(255,255,255,0.7); }
.about .section-title { color: #fff; }

.services {
  background-color: #ffffff; /* Light Section */
}

.how-it-works {
  background-color: #fff8e1; /* Subtle Yellowish */
}

.why-us {
  background-color: #12121b; /* Dark Section */
  color: #fff;
}
.why-us .section-title { color: #fff; }
.why-us .section-desc { color: rgba(255,255,255,0.7); }
.why-us .why-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.why-us .why-card h3 { color: #fff; }
.why-us .why-card p { color: rgba(255,255,255,0.6); }

.testimonials {
  background-color: #fafafa; /* Light Section */
}

.business {
  background-color: #ffffff;
}

.faq {
  background-color: #0f172a; /* Deep Navy Dark Section */
  color: #fff;
}
.faq .section-title { color: #fff; }
.faq .faq-item { background: rgba(255,255,255,0.05); }
.faq .faq-question { color: #fff; }
.faq .faq-answer p { color: rgba(255,255,255,0.7); }

.footer {
  background-color: #06060b; /* Deep Black Footer */
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col a {
  color: var(--color-text-secondary);
}

.footer-col a:hover {
  color: var(--color-gold);
  transform: translateX(5px);
  display: inline-block;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.footer-socials a:hover {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  gap: 1.5rem;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
}

/* ---------- ANIMATIONS ---------- */
[data-animate="fade-up"],
[data-animate="slide-left"],
[data-animate="slide-right"],
[data-animate="stagger"],
[data-animate="step"] {
  opacity: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-search {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .hero-phone-mockup {
    width: 260px;
    height: 460px;
  }

  .hero-float-food {
    display: none;
  }

  .about-grid,
  .how-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cuisine-circle {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 768px) {

  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .logo-img {
    height: 45px;
  }

  /* Slightly smaller for mobile but still large */
  .services-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 300px;
    padding: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-contact {
    flex-direction: column;
  }
}

/* ---------- 3D FLOATING ANIMATIONS ---------- */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-alt {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.h-img-1 { animation: float 6s ease-in-out infinite; }
.h-img-2 { animation: float-alt 8s ease-in-out infinite; }
.h-img-3 { animation: float 7s ease-in-out infinite; }

.floating-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--gradient-brand);
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.blob-1 { top: 10%; right: -200px; animation: spin-slow 20s linear infinite; }
.blob-2 { bottom: 20%; left: -200px; opacity: 0.1; animation: spin-slow 25s linear reverse infinite; }

.sc-img {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .sc-img {
  transform: scale(1.2) translateY(-10px) rotate(3deg);
}

/* ---------- RESTAURANTS LIST ---------- */
.restaurants {
  background-color: #f8fafc;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.restaurant-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.restaurant-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
  border-color: var(--color-orange);
}

.rc-image-wrap {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
}

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

.restaurant-card:hover .rc-image-wrap img {
  transform: scale(1.1);
}

.rc-offer {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff4d4d, #ff6b35);
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.rc-time {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: #1a1a1a;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
}

.rc-info {
  padding: 1.5rem;
  background: #fff;
}

.rc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.rc-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.rc-rating {
  background: #10b981;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rc-tags {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rc-location {
  color: #9ca3af;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Menu Slider Styles within Restaurant Box */
.card-menu-slider-wrap {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px dashed var(--color-border);
  background: rgba(255, 255, 255, 0.02);
}
.slider-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-menu-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-orange) transparent;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.card-menu-slider::-webkit-scrollbar {
  height: 4px;
}
.card-menu-slider::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: 4px;
}
.slider-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 100px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.slider-item:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--color-orange);
}
.slider-item img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 0;
}
.slider-item-info {
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  text-align: center;
}
.dish-name {
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dish-price {
  color: var(--color-orange);
  font-weight: 700;
}

/* ---------- LIVE IMPACT SECTION ---------- */
.live-impact-section {
  background: #0f1016;
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.impact-item span {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: block;
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
}

/* Premium Card Overrides */
.premium-card {
  border: 1px solid rgba(247, 193, 80, 0.2) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
}

.premium-card:hover {
  box-shadow: 0 30px 60px rgba(247, 193, 80, 0.15) !important;
  border-color: var(--color-gold) !important;
}

.theme-premium .section-title {
  color: #fff;
}

/* Hybrid Theme Smoothness */
.theme-premium, .theme-budget {
  transition: background var(--transition-slow), color var(--transition-slow);
}

/* ========== NEW FEATURES: HIGH PROTEIN, NOTIFICATIONS, ORDER DETAIL ========== */

.high-protein-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-left: 5px;
}

/* 3D Notifications */
#notification-container-3d {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.push-notification-3d {
  background: rgba(15, 16, 22, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 15px 20px;
  border-radius: 15px;
  color: #fff;
  width: 300px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transform: perspective(800px) rotateX(10deg) translateZ(20px);
  animation: notificationSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  pointer-events: auto;
}

@keyframes notificationSlideIn {
  from { opacity: 0; transform: perspective(800px) rotateX(10deg) translate3d(50px, 0, 20px); }
  to { opacity: 1; transform: perspective(800px) rotateX(0) translate3d(0, 0, 0); }
}

/* Modal 3D */
.modal-3d {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content-3d {
  background: #111;
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.close-modal {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.order-status-tracker {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.order-status-tracker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  z-index: -1;
}

.status-step {
  background: #111;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #555;
  border: 2px solid #333;
}

.status-step.active {
  color: var(--color-orange);
  border-color: var(--color-orange);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #888;
}

.summary-line.total {
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---------- 3D SEARCH RESULTS DROPDOWN ---------- */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 100%;
  background: rgba(15, 16, 22, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255, 107, 53, 0.1);
  transform: perspective(1000px) rotateX(-5deg);
  transform-origin: top;
  animation: dropdownFadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  padding: 1rem;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: perspective(1000px) rotateX(-15deg) translateY(-20px); }
  to { opacity: 1; transform: perspective(1000px) rotateX(0) translateY(0); }
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateX(5px) scale(1.02);
}

.result-thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-info h4 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.result-info p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #888;
}

.result-tag {
  margin-left: auto;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-orange);
  font-weight: 700;
}

.no-results {
  text-align: center;
  padding: 2rem;
  color: #555;
}

