/* ===== CSS VARIABLES – LIGHT THEME ===== */
:root {
  --primary: #e01c1c;
  --primary-dark: #c01010;
  --primary-light: #fff0f0;
  --accent: #d4820a;
  --accent-light: #fff8ee;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --bg: #f7f7f7;
  --bg2: #ffffff;
  --bg3: #f0f0f0;
  --card-bg: #ffffff;
  --border: #e8e8e8;
  --border2: #d0d0d0;
  --text: #222222;
  --text2: #444444;
  --text-muted: #888888;
  --text-light: #aaaaaa;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --shadow-red: 0 4px 16px rgba(224,28,28,0.25);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Dancing Script', cursive;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand img { height: 52px; }
.navbar-nav .nav-link {
  color: var(--text2) !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  padding: 7px 13px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--primary) !important; background: var(--primary-light); }
.navbar-nav .nav-link.active { color: var(--primary) !important; background: var(--primary-light); }
.navbar-toggler { border: 1.5px solid var(--border2); }

/* Cart button in nav */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 25px;
  padding: 7px 16px !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--primary-dark) !important; color: #fff !important; transform: translateY(-1px); box-shadow: var(--shadow-red); }
.cart-count {
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  width: 19px; height: 19px;
  font-size: 0.7rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); color: #fff; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-accent:hover { background: #b56b08; transform: translateY(-2px); color: #fff; }

.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: #fff; }

/* Legacy aliases so existing HTML still works */
.btn-red { background: var(--primary); color: #fff; border: none; padding: 11px 26px; border-radius: 50px; font-weight: 800; font-size: 0.92rem; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.btn-red:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); color: #fff; }
.btn-gold { background: var(--accent); color: #fff; border: none; padding: 11px 26px; border-radius: 50px; font-weight: 800; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.btn-gold:hover { background: #b56b08; color: #fff; transform: translateY(-2px); }
.btn-outline-red { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 9px 22px; border-radius: 50px; font-weight: 800; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.btn-outline-red:hover { background: var(--primary); color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 50%, #fff8ee 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,28,28,0.06) 0%, transparent 60%);
}
.hero-badge {
  background: var(--primary-light);
  border: 1.5px solid rgba(224,28,28,0.3);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 480px; margin-bottom: 30px; }

.hero-stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.hero-stat .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

.hero-img { animation: floatAnim 4s ease-in-out infinite; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

/* ===== SECTION TITLES ===== */
.section-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; color: var(--text); margin-bottom: 6px; }
.section-title span { color: var(--primary); }
.section-subtitle { font-family: var(--font-accent); font-size: 1.2rem; color: var(--accent); margin-bottom: 16px; }
.divider { width: 52px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 10px auto 26px; }
.divider.left { margin-left: 0; }

/* ===== SECTIONS ===== */
.section-pad { padding: 72px 0; }
.section-white { background: #fff; }
.section-light { background: var(--bg); }
.section-light2 { background: #f0f4ff; }
/* Legacy dark → now light */
.section-dark { background: #fff; }
.section-darker { background: var(--bg); }
.section-dark2 { background: var(--bg); }

/* ===== FOOD CARD – HORIZONTAL (like image) ===== */
.food-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  position: relative;
  min-height: 130px;
}
.food-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,28,28,0.25);
}

/* Left: food image — static <img> tag, no icon fonts */
.food-card-img {
  width: 120px;
  min-width: 120px;
  position: relative;
  overflow: hidden;
  background: #f9f4f0;          /* fallback while image loads */
  flex-shrink: 0;
  align-self: stretch;          /* fill full card height */
}
.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Small badge (top-left corner ribbon) */
.card-ribbon {
  position: absolute;
  top: 0; left: 0;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 2px 6px;
  border-bottom-right-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-ribbon.green { background: var(--green); }

/* Veg / Non-veg dot */
.veg-dot, .nonveg-dot {
  position: absolute;
  top: 8px; right: 8px;
  width: 18px; height: 18px;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.veg-dot { border: 2px solid var(--green); }
.veg-dot::after { content:''; width:8px; height:8px; border-radius:50%; background:var(--green); }
.nonveg-dot { border: 2px solid var(--primary); }
.nonveg-dot::after { content:''; width:8px; height:8px; border-radius:50%; background:var(--primary); }

/* Right: body */
.food-card-body {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}

.food-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2px;
}
.food-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.food-readmore {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.food-readmore:hover { text-decoration: underline; }

/* Meal tags */
.meal-tags { display: flex; gap: 6px; margin-top: 2px; }
.meal-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
}
.meal-tag i { font-size: 0.7rem; }

/* Price row */
.food-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}
.food-price-block { display: flex; align-items: baseline; gap: 6px; }
.food-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent);
}
.food-price-old {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 600;
}

/* Add to Cart button (compact) */
.add-to-cart-btn {
  background: #fff;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.add-to-cart-btn:hover { background: var(--accent); color: #fff; }
.add-to-cart-btn.out-of-stock { border-color: var(--text-light); color: var(--text-light); cursor: not-allowed; }

/* Qty control (like image: − 1 +) */
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  background: #fff;
  color: var(--accent);
  border: none;
  width: 32px; height: 32px;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.qty-btn:hover { background: var(--accent); color: #fff; }
.qty-num { font-weight: 800; font-size: 0.92rem; color: var(--text); padding: 0 10px; min-width: 28px; text-align: center; }

/* ===== FILTER BUTTONS ===== */
.menu-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  background: #fff;
  border: 1.5px solid var(--border2);
  color: var(--text2);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: var(--shadow-red); }
.filter-btn.veg-btn.active { background: var(--green); border-color: var(--green); }

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 16px; */
    font-size: 1.6rem;
}
.feature-card h5 { font-family: var(--font-heading); font-weight: 800; margin-bottom: 6px; color: var(--text); font-size: 1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.stars { color: var(--accent); margin-bottom: 10px; font-size: 1rem; }
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-author { font-weight: 800; font-size: 0.88rem; color: var(--text); }
.testimonial-author span { color: var(--text-muted); font-weight: 400; }

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: linear-gradient(135deg, #fff5f5, #fff8ee);
  border: 1.5px solid rgba(224,28,28,0.2);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.offer-banner::before {
  content: '10%';
  position: absolute;
  right: -20px; top: -20px;
  font-size: 8rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: rgba(224,28,28,0.06);
  line-height: 1;
}
.offer-tag {
  background: var(--primary);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 14px;
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  border-top: 3px solid var(--primary);
  padding: 56px 0 0;
}
.footer-logo img { height: 56px; margin-bottom: 14px; }
.footer-about { color: #aaa; font-size: 0.88rem; line-height: 1.8; }
.footer-heading { font-family: var(--font-heading); font-weight: 800; margin-bottom: 18px; color: var(--accent); font-size: 1rem; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #aaa; font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-icon { color: var(--primary); font-size: 1rem; margin-top: 3px; }
.footer-contact-text { color: #aaa; font-size: 0.88rem; }
.footer-contact-text strong { color: #ddd; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; margin-top: 36px; text-align: center; color: #777; font-size: 0.82rem; }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #aaa;
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== FLOATING CART BAR ===== */
.floating-cart {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: #fff;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 -3px 16px rgba(224,28,28,0.35);
}
.floating-cart.hidden { transform: translateY(100%); }
.floating-cart-left { display: flex; align-items: center; gap: 10px; }
.floating-cart-count { background: rgba(255,255,255,0.25); border-radius: 50px; padding: 3px 10px; font-size: 0.82rem; font-weight: 800; }
.floating-cart-name { font-weight: 600; font-size: 0.92rem; }
.floating-cart-amount { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 900; }
.floating-cart-btn { background: #fff; color: var(--primary); border: none; padding: 7px 18px; border-radius: 50px; font-weight: 900; cursor: pointer; transition: var(--transition); font-size: 0.88rem; }
.floating-cart-btn:hover { background: #ffe; }

/* ===== CART PAGE ===== */
.cart-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cart-item:hover { border-color: rgba(224,28,28,0.2); box-shadow: var(--shadow-md); }
.cart-item-emoji { font-size: 2.2rem; width: 52px; text-align: center; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 800; color: var(--text); margin-bottom: 2px; font-size: 0.95rem; }
.cart-item-price { color: var(--accent); font-weight: 800; font-size: 0.9rem; }
.cart-item-remove { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 1.1rem; transition: var(--transition); padding: 4px; }
.cart-item-remove:hover { color: var(--primary); }

.order-summary {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 76px;
  box-shadow: var(--shadow-sm);
}
.order-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text2); }
.order-row:last-child { border-bottom: none; }
.order-total { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 900; color: var(--accent); }

/* ===== QR MODAL ===== */
.qr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.qr-modal-overlay.show { opacity: 1; pointer-events: all; }
.qr-modal {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s;
  box-shadow: var(--shadow-lg);
}
.qr-modal-overlay.show .qr-modal { transform: scale(1); }
.qr-code { width: 200px; height: 200px; background: #fff; border-radius: 10px; margin: 16px auto; padding: 10px; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; }
.qr-code img { width: 100%; }
.qr-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.qr-amount { font-size: 1.8rem; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.qr-upi { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }

/* ===== AUTH FORMS ===== */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff5f5, #fff, #fff8ee);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
.auth-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-logo img { height: 64px; }
.auth-title { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 900; text-align: center; margin-bottom: 4px; color: var(--text); }
.auth-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 24px; font-size: 0.88rem; }

.form-group { margin-bottom: 16px; }
.form-label { font-size: 0.82rem; font-weight: 800; margin-bottom: 5px; display: block; color: var(--text2); text-transform: uppercase; letter-spacing: 0.4px; }
.form-control-dark {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  font-family: var(--font-body);
}
.form-control-dark:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(224,28,28,0.1); background: #fff; }
.form-control-dark::placeholder { color: var(--text-light); }
select.form-control-dark { cursor: pointer; }

/* ===== CONTACT PAGE ===== */
.contact-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: auto;
  box-shadow: var(--shadow-sm);
}

/* ===== PAGE HERO ===== */
.page-hero{
    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("images/banner/banner1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 70px 0 44px;
    text-align: center;
    border-bottom: 2px solid var(--border);

    position: relative;
}
.page-hero h1 { font-family: var(--font-heading); font-size: 2.3rem; font-weight: 900; color: var(--text); }
.page-hero p { color: var(--text-muted); margin-top: 6px; }
.breadcrumb-dark { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 10px; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb-dark a { color: var(--primary); font-weight: 700; }

/* ===== TOAST ===== */
.toast-container-custom {
  position: fixed;
  top: 76px; right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast-custom {
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.5s forwards;
  min-width: 240px;
}
.toast-custom.success { border-left-color: var(--green); }
@keyframes slideIn { from{transform:translateX(110%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes fadeOut { from{opacity:1} to{opacity:0;transform:translateX(16px)} }

/* ===== MY ORDERS ===== */
.order-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.order-card:hover { border-color: rgba(224,28,28,0.2); box-shadow: var(--shadow-md); }
.order-status { padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 800; }
.status-delivered { background: var(--green-light); color: var(--green); }
.status-preparing { background: #fff8e1; color: #f57f17; }
.status-cancelled { background: var(--primary-light); color: var(--primary); }

/* ===== PROFILE ===== */
.profile-sidebar {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.profile-avatar {
  width: 84px; height: 84px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 14px;
}
.profile-nav { margin-top: 16px; }
.profile-nav-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 0.88rem;
}
.profile-nav-link:hover, .profile-nav-link.active { background: var(--primary-light); color: var(--primary); }

/* ===== POLICY PAGES ===== */
.policy-content {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.policy-content h3 { font-family: var(--font-heading); color: var(--primary); margin: 26px 0 10px; font-size: 1.15rem; }
.policy-content p, .policy-content li { color: var(--text2); line-height: 1.85; font-size: 0.92rem; }
.policy-content ul { padding-left: 18px; }
.policy-content ul li { list-style: disc; margin-bottom: 7px; }

/* ===== CART ORDER FORM ===== */
.order-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
}
.payment-option:hover, .payment-option.selected { border-color: var(--primary); background: var(--primary-light); }
.payment-option input[type=radio] { accent-color: var(--primary); width: 17px; height: 17px; }

.step-indicator { display: flex; gap: 0; margin-bottom: 28px; }
.step { flex: 1; text-align: center; position: relative; }
.step::after { content:''; position:absolute; top:17px; left:50%; width:100%; height:2px; background:var(--border); z-index:0; }
.step:last-child::after { display:none; }
.step-circle { width:34px; height:34px; border-radius:50%; background:var(--bg3); border:2px solid var(--border2); display:inline-flex; align-items:center; justify-content:center; font-size:0.82rem; font-weight:800; position:relative; z-index:1; color:var(--text-muted); }
.step.active .step-circle { background:var(--primary); border-color:var(--primary); color:#fff; }
.step.done .step-circle { background:var(--green); border-color:var(--green); color:#fff; }
.step-label { font-size:0.72rem; color:var(--text-muted); margin-top:5px; font-weight:700; }
.step.active .step-label { color:var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 90px 0 50px; }
  .food-card { flex-direction: column; }
  .food-card-img { width: 100%; min-width: unset; height: 160px; }
  .floating-cart { padding: 11px 14px; }
  .floating-cart-name { display: none; }
  .auth-card { padding: 28px 20px; }
  .policy-content { padding: 20px; }
}
@media (max-width: 480px) {
  .food-card { flex-direction: row; }
  .food-card-img { width: 100px; min-width: 100px; height: auto; }
}

/* ===== MISC ===== */
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
[data-aos] { will-change: transform, opacity; }

/* ===== MENU SECTION HEADER ===== */
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.menu-section-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0;
  color: var(--text);
}
.menu-section-header span { font-size: 1.6rem; }

/* ===== SEARCH BAR ===== */
.menu-search {
  position: relative;
  max-width: 400px;
  margin-bottom: 24px;
}
.menu-search input {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 11px 18px 11px 44px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.menu-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(224,28,28,0.1); }
.menu-search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1rem; }

.page-hero h1,
.page-hero p,
.page-hero .breadcrumb-dark{
    color:#fff;
}