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

:root {
  --bg-color: #fafbfc;
  --text-main: #111827;
  --text-muted: #6b7280;
  
  /* Vibrant premium Orange */
  --accent-orange: #ea580c;
  --accent-orange-hover: #c2410c;
  
  /* Rich Navy Blue */
  --accent-blue: #0b2447;
  --accent-blue-hover: #07152b;

  --card-bg: #ffffff;
  --card-border: #f3f4f6;
  
  /* High-end smooth shadows */
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  --card-shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 10px 20px -10px rgba(0, 0, 0, 0.04);

  --success-color: #10b981;
}

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

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

/* Typography */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--text-main); letter-spacing: -0.02em; }

.gradient-text {
  color: var(--accent-blue);
  display: inline-block;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
a:hover { color: var(--accent-orange); }

/* Layout Utilities */
.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }
@media (max-width: 600px) {
  .container { padding: 0 15px; }
}
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* Premium Cards */
.card, .glass {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Navigation - Premium International Layout */
nav.ecommerce-nav {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
}

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

.nav-logo { cursor: pointer; display: flex; align-items: center; }
.nav-logo img { height: 75px; object-fit: contain; }

.nav-links { display: flex; gap: 3rem; align-items: center; }
.nav-links a { 
  position: relative; 
  font-weight: 500; 
  font-size: 1.05rem; 
  color: var(--text-main); 
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-orange); }

.nav-dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: var(--card-bg);
  min-width: 260px;
  box-shadow: var(--card-shadow-hover);
  border-radius: 12px;
  z-index: 2000;
  flex-direction: column;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  transform: translateY(10px);
}
.nav-dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-content a {
  padding: 15px 25px !important;
  font-size: 0.95rem !important;
  border-bottom: 1px solid var(--card-border);
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  background-color: #f8fafc;
  padding-left: 30px !important;
}

.dropdown-item-wrapper { position: relative; }
.sub-dropdown {
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--card-bg);
  min-width: 250px;
  box-shadow: var(--card-shadow-hover);
  border-radius: 12px;
  flex-direction: column;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  transform: translateX(10px);
}
.dropdown-item-wrapper:hover .sub-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-btn { display: none; background: none; border: none; color: var(--accent-blue); font-size: 2rem; cursor: pointer; }

/* Buttons completely revamped */
.btn {
  padding: 14px 28px;
  border-radius: 50px; /* Pillow shaped elegant buttons */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 8px 20px -5px rgba(11, 36, 71, 0.3);
}
.btn-primary:hover {
  background: #000000 !important;
  transform: translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: var(--accent-orange);
  color: white;
  box-shadow: 0 8px 20px -5px rgba(234, 88, 12, 0.3);
}
.btn-secondary:hover {
  background: #000000 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.4);
}

.btn-glass {
  background: white;
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
}
.btn-glass:hover {
  background: #000000 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 8px 20px -5px rgba(11, 36, 71, 0.3);
}
.btn-whatsapp:hover {
  background: #000000 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Floating WhatsApp Button - Custom Navy Blue logic */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 65px; height: 65px;
  background: var(--accent-blue);
  color: white;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(11, 36, 71, 0.3);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover { 
  transform: scale(1.1) translateY(-5px); 
  box-shadow: 0 15px 35px rgba(11, 36, 71, 0.4); 
  background: var(--accent-orange);
}

/* Zomato-Style Categories */
.zomato-categories {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 10px 40px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.zomato-categories::-webkit-scrollbar {
  display: none;
}

.zomato-cat-card {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  group: hover;
}

.zomato-cat-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.zomato-cat-card:hover .zomato-cat-img {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.zomato-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}

.zomato-cat-img i {
  font-size: 4rem;
  color: var(--accent-blue);
}

.zomato-cat-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  transition: color 0.3s;
}

.zomato-cat-card:hover h3 {
  color: var(--accent-orange);
}

/* Footer */
footer.ecommerce-footer {
  margin-top: 100px;
  padding: 80px 0 40px;
  border-top: 1px solid var(--card-border);
  background: #ffffff;
}

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; }
.footer-col h4 { font-size: 1.3rem; margin-bottom: 25px; color: var(--accent-blue); }
.footer-col p, .footer-col a { color: var(--text-muted); margin-bottom: 15px; display: block; font-size: 1.05rem; }
.brand-col .footer-logo { height: 80px; margin-bottom: 20px; }

.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--accent-blue);
  display: flex !important; 
  justify-content: center !important; 
  align-items: center !important;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  text-decoration: none !important;
}
.social-icon i { 
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important; 
  margin: 0 !important;
  padding: 0 !important;
}
.social-icon:hover { background: var(--accent-blue); color: white; transform: translateY(-3px); }

.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.95rem; padding-top: 30px; border-top: 1px solid var(--card-border); }

/* Cart/Queue Badge */
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--accent-orange); color: white;
  border-radius: 50%; width: 22px; height: 22px;
  font-size: 0.8rem; font-weight: bold;
  display: flex; justify-content: center; align-items: center;
  box-shadow: 0 4px 8px rgba(234, 88, 12, 0.4);
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive Nav */
@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 100%; left: 0;
    width: 100%; background: #ffffff; border-bottom: 1px solid var(--card-border);
    flex-direction: column; align-items: flex-start; padding: 25px;
    gap: 1.5rem;
    display: none; box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; margin-right: 15px; }
  .nav-actions { margin-left: auto; }
  .nav-logo img { height: 50px; }
}

@media (max-width: 600px) {
  .footer-grid { text-align: center; }
  .social-links { justify-content: center; }
  .brand-col .footer-logo { margin: 0 auto 20px; }
}

@media (max-width: 450px) {
  .nav-logo img { height: 40px; }
  .nav-actions .btn { padding: 10px 15px; font-size: 0.9rem; }
  .cart-badge { width: 18px; height: 18px; font-size: 0.7rem; top: -3px; right: -3px; }
}
