/* ============================================================
   BURGERKING+ FAST FOOD RESTAURANT — Global Stylesheet
   Primary: #ff3c00 | Secondary: #222 | Accent: #ffc107
   Fonts: Poppins (headings), Open Sans (body)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:    #ff3c00;
  --secondary:  #222222;
  --accent:     #ffc107;
  --bg:         #f9f9f9;
  --white:      #ffffff;
  --light-gray: #f1f1f1;
  --text:       #444444;
  --text-light: #888888;
  --radius:     16px;
  --shadow:     0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--secondary); line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
section { position: relative; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
  transition: var(--transition);
  z-index: 1050;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.99) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--secondary); }
.navbar-brand .brand-dot { color: var(--accent); }
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--secondary) !important;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-order-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6a00 100%);
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.45rem 1.3rem !important;
  box-shadow: 0 4px 15px rgba(255,60,0,0.35);
  transition: var(--transition);
}
.nav-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,60,0,0.5);
}
.nav-order-btn::after { display: none !important; }
.cart-icon-wrap {
  position: relative;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: var(--transition);
}
.cart-icon-wrap:hover { background: rgba(255,60,0,0.08); }
.cart-icon-wrap i { font-size: 1.25rem; color: var(--secondary); }
.cart-badge {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
}

/* ---------- Navbar Toggler ---------- */
.navbar-toggler { border: none; padding: 0.3rem 0.6rem; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff3c00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-grad {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6a00 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 20px rgba(255,60,0,0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-primary-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,60,0,0.5);
  color: var(--white);
}
.btn-outline-primary-grad {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-outline-primary-grad:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,60,0,0.3);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #ffb300 100%);
  color: var(--secondary);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(255,193,7,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,193,7,0.55);
  color: var(--secondary);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.section-label::before, .section-label::after {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.text-center .section-subtitle { margin: 0 auto 2.5rem; }

/* Curved section dividers */
.curve-top::before {
  content: '';
  position: absolute;
  top: -60px; left: 0;
  width: 100%; height: 60px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.curve-bottom::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 0;
  width: 100%; height: 60px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 40%, #ff3c00 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.12;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.12; }
  90%  { opacity: 0.12; }
  100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.4);
  color: var(--accent);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero-title .highlight {
  color: var(--accent);
  -webkit-text-stroke: 0px;
}
.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.75;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-img-main {
  width: 100%;
  max-width: 540px;
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(255,60,0,0.4);
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.hero-badge-float {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  animation: badgePulse 3s ease-in-out infinite;
  z-index: 3;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.hero-badge-float.badge-delivery { top: 20%; right: -10px; }
.hero-badge-float.badge-rating   { bottom: 20%; left: -30px; }
.hero-badge-float i { color: var(--accent); font-size: 1.3rem; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0.4; }
}

/* ============================================================
   FOOD CATEGORY CARDS
   ============================================================ */
.categories-section { background: var(--white); }
.category-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  opacity: 0;
  transition: var(--transition);
  border-radius: 18px;
}
.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(255,60,0,0.2);
}
.category-card:hover::before { opacity: 1; }
.category-card:hover .category-icon,
.category-card:hover .category-name { position: relative; z-index: 1; }
.category-card:hover .category-icon { filter: brightness(0) invert(1); }
.category-card:hover .category-name { color: var(--white); }
.category-icon {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  display: block;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.category-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOD PRODUCT CARDS
   ============================================================ */
.food-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.food-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}
.food-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
}
.food-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.food-card:hover .food-card-img-wrap img { transform: scale(1.1); }
.food-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.food-card-badge.badge-veg { background: #28a745; }
.food-card-badge.badge-offer { background: var(--accent); color: var(--secondary); }
.food-card-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.food-card-wishlist:hover { background: var(--primary); color: var(--white); }
.food-card-wishlist i { font-size: 0.9rem; color: var(--text); transition: var(--transition); }
.food-card-wishlist:hover i { color: var(--white); }
.food-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.food-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}
.food-card-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.55;
  flex: 1;
}
.food-card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}
.food-card-rating .stars { color: var(--accent); font-size: 0.8rem; }
.food-card-rating .count { font-size: 0.78rem; color: var(--text-light); }
.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.food-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}
.food-price .old-price {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.3rem;
}
.btn-add-cart {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.btn-add-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255,60,0,0.4);
  color: var(--white);
}

/* ============================================================
   OFFERS SECTION
   ============================================================ */
.offers-section { background: var(--secondary); }
.offer-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  transition: var(--transition);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.offer-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-card-bg { transform: scale(1.06); }
.offer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(255,60,0,0.3) 100%);
}
.offer-card-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.offer-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.offer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.offer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 100%);
}
.why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  background: rgba(255,60,0,0.12);
  border-color: rgba(255,60,0,0.4);
  transform: translateY(-6px);
}
.why-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(255,60,0,0.35);
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ============================================================
   CHEF SPECIAL / TESTIMONIALS
   ============================================================ */
.chef-section { background: var(--bg); }
.testimonial-section {
  background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin: 1rem 0.5rem;
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.testimonial-avatar {
  width: 55px; height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin-right: 1rem;
}
.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--secondary);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-light);
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}
.testimonial-stars { color: var(--accent); font-size: 0.85rem; }

/* Swiper overrides */
.swiper-pagination-bullet-active { background: var(--primary) !important; }
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1rem !important;
  color: var(--primary);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a0a00 100%);
  padding: 80px 0;
}
.video-play-btn {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(255,60,0,0.15), 0 0 0 24px rgba(255,60,0,0.07);
  animation: videoPulse 2s ease-in-out infinite;
  transition: var(--transition);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
}
.video-play-btn:hover { transform: scale(1.1); }
@keyframes videoPulse {
  0%,100% { box-shadow: 0 0 0 12px rgba(255,60,0,0.15), 0 0 0 24px rgba(255,60,0,0.07); }
  50%      { box-shadow: 0 0 0 18px rgba(255,60,0,0.1),  0 0 0 36px rgba(255,60,0,0.04); }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,60,0,0.75), rgba(30,10,0,0.7));
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--white); }

/* ============================================================
   APP PROMO
   ============================================================ */
.app-section {
  background: linear-gradient(135deg, #ff3c00 0%, #ff6a00 40%, #ffc107 100%);
  overflow: hidden;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(0,0,0,0.2);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 14px;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.app-store-btn:hover {
  background: rgba(0,0,0,0.35);
  transform: translateY(-3px);
  color: var(--white);
}
.app-store-btn .store-icon { font-size: 1.8rem; }
.app-store-btn .store-text-sm { font-size: 0.7rem; opacity: 0.8; display: block; }
.app-store-btn .store-text-lg { font-size: 1rem; font-family: 'Poppins', sans-serif; font-weight: 700; display: block; }

/* ============================================================
   FRANCHISE SECTION
   ============================================================ */
.franchise-section { background: var(--bg); }
.franchise-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.franchise-step-num {
  width: 50px; height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: var(--white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.franchise-step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}
.franchise-step-desc { font-size: 0.85rem; color: var(--text-light); }

/* ============================================================
   MAP / LOCATIONS
   ============================================================ */
.map-section { background: var(--white); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6a00 100%);
}
.newsletter-input-wrap {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  padding: 0.8rem 1.4rem;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-input-wrap button {
  background: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  margin: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-input-wrap button:hover { background: var(--secondary); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand span { color: var(--primary); }
.footer-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  margin-right: 0.5rem;
  font-size: 0.95rem;
}
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  font-size: 0.87rem;
}
.footer-contact li i {
  color: var(--primary);
  margin-top: 3px;
  min-width: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   FLOATING BUTTONS (Call + WhatsApp)
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  position: relative;
}
.float-btn::before {
  content: attr(data-label);
  position: absolute;
  right: 68px;
  background: var(--secondary);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.float-btn:hover::before { opacity: 1; transform: translateX(0); }
.float-btn:hover { transform: scale(1.12); }
.float-btn-call { background: var(--primary); color: var(--white); animation: floatPulse 2.5s ease-in-out infinite; }
.float-btn-whatsapp { background: #25d366; color: var(--white); animation: floatPulse 2.5s ease-in-out 0.5s infinite; }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(0,0,0,0.2), 0 0 0 0 rgba(255,60,0,0.3); }
  50%      { box-shadow: 0 6px 20px rgba(0,0,0,0.2), 0 0 0 12px rgba(255,60,0,0); }
}
.float-btn-whatsapp { animation-name: floatPulseGreen; }
@keyframes floatPulseGreen {
  0%,100% { box-shadow: 0 6px 20px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 6px 20px rgba(0,0,0,0.2), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 10000;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  transition: right 0.4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
}
.cart-close:hover { background: #f5f5f5; color: var(--primary); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-light);
  font-size: 0.9rem;
}
.cart-empty i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f5f5f5;
}
.cart-item-img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--secondary); }
.cart-item-price { font-size: 0.85rem; color: var(--primary); font-weight: 700; }
.cart-item-qty {
  display: flex; align-items: center; gap: 0.5rem;
}
.cart-item-qty button {
  width: 26px; height: 26px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-item-qty button:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.cart-item-qty span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid #f0f0f0;
  background: var(--bg);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.cart-total .total-price { color: var(--primary); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1a0a00 0%, #ff3c00 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pattern.png') repeat;
  opacity: 0.05;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero-breadcrumb .breadcrumb-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.page-hero-breadcrumb .breadcrumb-item.active { color: var(--accent); }
.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   FORMS (Contact / Order / Franchise / Newsletter)
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,60,0,0.12);
  outline: none;
}
.form-control::placeholder { color: #aaa; }

/* ============================================================
   ALERT / TOAST
   ============================================================ */
.toast-notification {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--secondary);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 99999;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 300px;
}
.toast-notification.show { transform: translateY(0); opacity: 1; }
.toast-notification i { color: #4caf50; font-size: 1.1rem; }
.toast-notification.error i { color: #f44336; }

/* ============================================================
   MENU PAGE FILTERS
   ============================================================ */
.menu-filter-bar {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.filter-btn.veg { border-color: #28a745; color: #28a745; background: rgba(40,167,69,0.08); }
.filter-btn.veg:hover, .filter-btn.veg.active { background: #28a745; color: var(--white); }

/* ============================================================
   ORDER / SUMMARY
   ============================================================ */
.order-summary-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.order-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #f0f0f0;
  color: var(--text);
}
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding-top: 1rem;
  color: var(--secondary);
}
.order-total-row .price { color: var(--primary); }

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */
.glass-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 2rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion .accordion-item {
  border: 1px solid #ebebeb;
  border-radius: 12px !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--secondary);
  background: var(--white);
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(255,60,0,0.04);
}
.faq-accordion .accordion-button::after {
  filter: none;
  background-size: 14px;
}
.faq-accordion .accordion-body {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section { background: var(--white); }
.counter-card {
  text-align: center;
  padding: 2rem 1rem;
}
.counter-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.counter-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ============================================================
   ADMIN PANEL STYLES
   ============================================================ */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background: #f4f6f9;
  font-family: 'Open Sans', sans-serif;
}
.admin-sidebar {
  width: 260px;
  min-width: 260px;
  background: linear-gradient(180deg, #1a0a00 0%, #2d1200 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
}
.admin-logo {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.admin-logo span { color: var(--primary); }
.admin-nav { padding: 1rem 0; flex: 1; }
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
  color: var(--white);
  background: rgba(255,60,0,0.12);
  border-left-color: var(--primary);
}
.admin-nav-link i { font-size: 1rem; width: 18px; }
.admin-main {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}
.admin-topbar {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.admin-topbar h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 1.1rem;
}
.admin-stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
}
.admin-stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.admin-stat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.admin-stat-icon.red   { background: rgba(255,60,0,0.12);  color: var(--primary); }
.admin-stat-icon.gold  { background: rgba(255,193,7,0.12); color: var(--accent); }
.admin-stat-icon.green { background: rgba(40,167,69,0.12); color: #28a745; }
.admin-stat-icon.blue  { background: rgba(13,110,253,0.12); color: #0d6efd; }
.admin-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.admin-stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 0.2rem; }
.admin-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.admin-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.admin-table { font-size: 0.86rem; }
.admin-table th { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); border-bottom: 2px solid #f0f0f0; }
.admin-table td { vertical-align: middle; padding: 0.75rem 0.5rem; color: var(--text); }
.admin-badge { padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; font-family: 'Poppins', sans-serif; }
.admin-login-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a00 0%, #ff3c00 100%);
  display: flex; align-items: center; justify-content: center;
}
.admin-login-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-primary-grad {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-primary-grad { background: linear-gradient(135deg, var(--primary), #ff6a00); }
.font-poppins { font-family: 'Poppins', sans-serif; }
.fw-900 { font-weight: 900 !important; }
.rounded-xl { border-radius: 20px !important; }
.rounded-2xl { border-radius: 24px !important; }
.shadow-hover { transition: var(--transition); }
.shadow-hover:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.14) !important; }
.divider { width: 60px; height: 4px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 2px; margin: 0.8rem auto 1.5rem; }
.divider-left { margin-left: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-image-wrap { display: none; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .admin-sidebar { display: none; }
  .admin-wrapper { flex-direction: column; }
  .admin-main { padding: 1rem; }
}
@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .floating-buttons { bottom: 18px; right: 14px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  .cart-sidebar { width: 100%; right: -100%; }
  .hero-stats { gap: 1.2rem; }
  .form-card { padding: 1.5rem; }
}
@media (max-width: 575.98px) {
  .navbar-brand { font-size: 1.3rem; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
}
