﻿/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
  --primary: #4A0F0F;    /* Deep Burgundy */
  --accent: #E0B24A;     /* Gold */
  --bg-light: #F9F9F9;
  --text-dark: #2b2b2b;
  --text-light: #555555;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 25px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
  --success: #28a745;    /* Green for Open */
  --danger: #dc3545;     /* Red for Closed */
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =========================================
   2. LOADING SPINNER
   ========================================= */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

/* =========================================
   3. ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   4. NAVBAR & BADGE
   ========================================= */
nav {
  background: var(--primary);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-logo {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  color: white;
  background: #555;
  white-space: nowrap;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 5px;
}

nav a:hover, nav a.active {
  color: var(--accent);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

#mobileBtn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
}

/* =========================================
   5. HERO (PARALLAX EFFECT)
   ========================================= */
.hero {
  /* Fixed background attachment creates the Parallax effect */
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url("images/hero-bg.jpeg") center/cover no-repeat;
  background-attachment: fixed; /* <--- KEY CHANGE */
  background-color: #222;
  color: white;
  text-align: center;
  padding: 160px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0px 4px 10px rgba(0,0,0,0.6);
  line-height: 1.2;
}

.hero .since {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--accent);
  letter-spacing: 1px;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

section h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  text-transform: uppercase;
}

section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.trust-strip {
  padding-top: 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  background: #fff;
  border: 1px solid #efe6d5;
  border-top: 4px solid var(--accent);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.trust-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.trust-card p {
  color: #5f5b56;
  font-size: 0.94rem;
}

/* =========================================
   6. GALLERY & LIGHTBOX
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  cursor: pointer; /* Indicates clickable */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* =========================================
   7. MENU CONTROLS (SEARCH & FILTER)
   ========================================= */
.menu-controls {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.search-bar {
  width: 100%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.search-bar:focus {
  border-color: var(--accent);
}

.filter-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: white;
  border: 1px solid #ccc;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  color: var(--text-dark);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* =========================================
   8. MENU SECTIONS & ITEMS
   ========================================= */
.menu-page {
  max-width: 900px;
  margin: auto;
}

.menu-section {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--primary);
  transition: transform 0.3s ease;
}

/* Hide empty sections when filtering */
.menu-section.hidden-section {
  display: none;
}

.menu-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
  background: #fcfcfc;
  padding: 12px;
  border-radius: 6px;
  border-left: 3px solid var(--accent);
  text-align: center;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

/* Hide specific items when filtering */
.menu-list li.hidden {
  display: none !important;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list li span:first-child {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding-right: 20px;
}

.menu-list li span small {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: #777;
  margin-top: 5px;
  font-style: normal;
}

.menu-list li span:last-child {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary); 
  background: transparent;
  padding: 0;
  white-space: nowrap;
  text-align: right;
  min-width: 80px;
}

/* =========================================
   9. BUNDLE CARDS
   ========================================= */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.bundle-card {
  background: var(--white);
  border-radius: 16px;
  overflow: visible;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 15px;
}

.bundle-card.hidden {
  display: none;
}

.bundle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.best-value-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
  border: 2px solid white;
}

.bundle-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}

/* =========================================
   14. ORDER PRICE LAYOUT
   ========================================= */
.price-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-action-multi {
  max-width: 55%;
}

.price-breakdown {
  display: block;
  text-align: right;
  font-size: 0.86rem;
  line-height: 1.35;
  color: #5f4d43;
}
.bundle-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.bundle-header {
  background: var(--primary);
  padding: 30px 20px 20px;
  text-align: center;
  border-radius: 16px 16px 0 0;
}

.bundle-header h4 {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bundle-price {
  background: #fff;
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.bundle-items {
  padding: 25px 30px;
  list-style: none;
  flex-grow: 1;
}

.bundle-items li {
  padding: 10px 0;
  border-bottom: 1px solid #f4f4f4;
  color: #555;
  font-size: 1rem;
  text-align: center;
}

.bundle-items li:last-child {
  border-bottom: none;
}

/* =========================================
   10. INFO PANELS
   ========================================= */
.order-panel, .contact-panel {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border-top: 5px solid var(--primary);
}

.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* =========================================
   11. COMPACT FOOTER
   ========================================= */
footer {
  background: #1a0505;
  color: #ccc;
  padding: 40px 5% 20px;
  margin-top: auto;
  border-top: 4px solid var(--accent);
  font-size: 0.85rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  text-align: left;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.hygiene-badge-wrapper {
  transform: scale(0.85); 
  transform-origin: top left;
  margin-top: -5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.8rem;
}

.allergy-note {
  margin-top: 10px;
  color: #555;
  font-style: italic;
  font-size: 0.75rem;
}

/* =========================================
   12. FLOATING BUTTONS
   ========================================= */
.sticky-call-btn {
  display: none;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #333;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  text-decoration: none;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 0.7;
  pointer-events: all;
}

.back-to-top:hover {
  opacity: 1;
  background: var(--primary);
}

/* =========================================
   13. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  nav { padding: 15px 20px; }

  nav ul {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: 0.4s ease-in-out;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  nav ul.show { right: 0; }
  
  nav a { font-size: 1.5rem; font-weight: 300; }
  
  #mobileBtn { display: block; }

  .hero h1 { font-size: 2.5rem; }
  
  .menu-list li {
    flex-direction: row; 
    align-items: center;
  }
  
  .menu-list li span:last-child {
    font-size: 1rem;
    color: var(--primary);
  }
  
  .bundle-card.featured { transform: scale(1); }
  .bundle-card.featured:hover { transform: translateY(-5px); }

  .footer-content { text-align: center; }
  
  .hygiene-badge-wrapper {
    transform-origin: top center;
    margin: 0 auto;
    display: inline-block;
  }

  .sticky-call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--accent);
    color: var(--primary);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 9999;
    text-decoration: none;
    font-size: 28px;
    border: 3px solid white;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 178, 74, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(224, 178, 74, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 178, 74, 0); }
  }
}
/* =========================================
   15. ORDER PAGE REDESIGN
   ========================================= */
.order-page .menu-page {
  max-width: 1100px;
  position: relative;
}

.order-page .menu-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 12%, rgba(224,178,74,0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(74,15,15,0.13), transparent 28%),
    radial-gradient(circle at 75% 82%, rgba(143,59,46,0.12), transparent 25%),
    linear-gradient(160deg, #fffaf0 0%, #fff 45%, #f8f5ef 100%);
}

.order-intro {
  margin: -34px auto 30px;
  text-align: center;
  color: #6a5248;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.order-cta-wrap {
  text-align: center;
  margin: 0 auto 24px;
}

.order-epos-note {
  text-align: center;
  color: #6f6259;
  font-size: 0.95rem;
  margin: -10px auto 26px;
}

.order-urgent-note {
  text-align: center;
  color: #6b4b44;
  font-size: 0.9rem;
  margin: -18px auto 20px;
}

.order-urgent-note a {
  color: var(--primary);
  font-weight: 700;
}

.order-last-updated {
  text-align: center;
  color: #7a6f67;
  font-size: 0.86rem;
  margin: -18px auto 22px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(95%, 720px);
  background: #fffdf8;
  border: 1px solid #ead7b2;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
  padding: 14px;
  z-index: 12000;
}

.cookie-banner p {
  margin: 0;
  color: #4d443f;
  font-size: 0.92rem;
}

.cookie-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn.primary {
  background: var(--primary);
  color: #fff;
}

.cookie-btn.secondary {
  background: #ece8df;
  color: #3b302b;
}

.order-online-link {
  min-width: 240px;
  text-align: center;
}

.order-online-link.is-disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.order-steps {
  margin: 0 auto 28px;
  max-width: 860px;
  background: #fffdf8;
  border: 1px solid #f0e1c4;
  border-radius: 12px;
  padding: 16px 18px;
}

.order-steps h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.order-steps ol {
  margin: 0;
  padding-left: 20px;
  color: #5f4d43;
}

.order-steps li {
  margin-bottom: 6px;
}

.order-page .menu-controls {
  position: relative;
  top: auto;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,252,245,0.96));
  border: 1px solid rgba(224,178,74,0.35);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(38,18,14,0.12);
  padding: 18px;
  margin-bottom: 24px;
}

.order-page .filter-btns {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.order-page .filter-btn {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border: 1px solid rgba(74,15,15,0.16);
  background: #fff;
  color: #5e4038;
}

.order-page .filter-btn:hover {
  transform: translateY(-1px);
}

.order-page .filter-btn.active {
  background: linear-gradient(135deg, #4A0F0F, #7b2626);
  border-color: #4A0F0F;
  color: #fff;
}

.order-page .menu-section {
  position: relative;
  border-top: 0;
  padding: 22px 22px 20px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffdf9);
  box-shadow: 0 10px 24px rgba(31,15,10,0.09);
  border-left: 4px solid rgba(74, 15, 15, 0.24);
  overflow: hidden;
}

.order-page .menu-section::before {
  content: none;
}

.order-page .menu-section[data-category="starters"] { border-left-color: #d17a22; }
.order-page .menu-section[data-category="tandoori"] { border-left-color: #b33f2f; }
.order-page .menu-section[data-category="rolls"] { border-left-color: #2a7f62; }
.order-page .menu-section[data-category="biryani"] { border-left-color: #a678c2; }
.order-page .menu-section[data-category="curries"] { border-left-color: #c14c4c; }
.order-page .menu-section[data-category="extras"] { border-left-color: #4f6db8; }
.order-page .menu-section[data-category="desserts"] { border-left-color: #8a5d47; }
.order-page .menu-section[data-category="bundles"] { border-left-color: #c49a2c; }

.order-page .menu-section h3 {
  text-align: center;
  margin: 0;
  padding: 0 0 12px;
  border-bottom: 1px dashed rgba(74,15,15,0.22);
  letter-spacing: 1.5px;
}

.order-page .menu-section .menu-note {
  margin-top: 14px;
  text-align: center;
  border-left: 0;
  background: #fff9ed;
  border: 1px solid rgba(224,178,74,0.36);
}

.order-page .menu-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.order-page .menu-list li {
  background: #fff;
  border: 1px solid rgba(74,15,15,0.10);
  border-radius: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(74,15,15,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-page .menu-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(31,15,10,0.08);
}

.order-page .menu-list li:last-child {
  border-bottom: 1px solid rgba(74,15,15,0.10);
}

.order-page .menu-list li span:first-child {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .order-page .menu-controls {
    padding: 12px;
  }

  .order-page .filter-btns {
    gap: 6px;
  }

  .order-page .menu-section {
    padding: 18px 16px 16px;
  }

  .price-action-multi {
    max-width: 60%;
  }

  .price-breakdown {
    font-size: 0.78rem;
  }

  .order-intro {
    margin: -36px auto 22px;
    font-size: 0.95rem;
  }

  .order-online-link {
    min-width: 200px;
    padding: 12px 28px;
  }

  .order-epos-note {
    font-size: 0.9rem;
    margin: -6px auto 20px;
  }

  .order-urgent-note {
    font-size: 0.84rem;
    margin: -12px auto 16px;
  }

  .order-last-updated {
    font-size: 0.8rem;
    margin: -12px auto 18px;
  }

  .order-steps {
    padding: 14px;
    margin-bottom: 22px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }
}

/* =========================================
   16. ORDER PAGE SPLIT LAYOUT
   ========================================= */
.order-page .menu-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.order-page .menu-controls {
  position: sticky;
  top: 90px;
  margin-bottom: 0;
  border-radius: 20px;
  border: 1px solid rgba(74, 15, 15, 0.14);
  border-left: 4px solid rgba(74, 15, 15, 0.24);
  background: linear-gradient(180deg, #ffffff, #fffdf9);
  box-shadow: 0 14px 30px rgba(38, 18, 14, 0.12);
}

.order-page .menu-controls-title {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  font-size: 0.85rem;
}

.order-page .search-bar {
  border-radius: 12px;
  border-color: rgba(74, 15, 15, 0.2);
  background: #fff;
  margin-bottom: 12px;
}

.order-page .filter-btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  overflow: visible;
}

.order-page .filter-btn {
  width: 100%;
  text-align: left;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  border: 1px solid rgba(74, 15, 15, 0.16);
  border-left-width: 4px;
  border-left-color: rgba(74, 15, 15, 0.24);
  background: linear-gradient(180deg, #ffffff, #fffdf9);
}

.order-page .filter-btn[data-filter="starters"] { border-left-color: #d17a22; }
.order-page .filter-btn[data-filter="tandoori"] { border-left-color: #b33f2f; }
.order-page .filter-btn[data-filter="rolls"] { border-left-color: #2a7f62; }
.order-page .filter-btn[data-filter="biryani"] { border-left-color: #a678c2; }
.order-page .filter-btn[data-filter="curries"] { border-left-color: #c14c4c; }
.order-page .filter-btn[data-filter="extras"] { border-left-color: #4f6db8; }
.order-page .filter-btn[data-filter="desserts"] { border-left-color: #8a5d47; }
.order-page .filter-btn[data-filter="bundles"] { border-left-color: #c49a2c; }

.order-page .filter-btn.active[data-filter="starters"] { background: linear-gradient(135deg, #d17a22, #e19a48); border-color: #d17a22; }
.order-page .filter-btn.active[data-filter="tandoori"] { background: linear-gradient(135deg, #b33f2f, #cb5f4e); border-color: #b33f2f; }
.order-page .filter-btn.active[data-filter="rolls"] { background: linear-gradient(135deg, #2a7f62, #3e9a79); border-color: #2a7f62; }
.order-page .filter-btn.active[data-filter="biryani"] { background: linear-gradient(135deg, #8f67ab, #a678c2); border-color: #8f67ab; }
.order-page .filter-btn.active[data-filter="curries"] { background: linear-gradient(135deg, #b33a3a, #c14c4c); border-color: #b33a3a; }
.order-page .filter-btn.active[data-filter="extras"] { background: linear-gradient(135deg, #3f5da8, #4f6db8); border-color: #3f5da8; }
.order-page .filter-btn.active[data-filter="desserts"] { background: linear-gradient(135deg, #7a4f38, #8a5d47); border-color: #7a4f38; }
.order-page .filter-btn.active[data-filter="bundles"] { background: linear-gradient(135deg, #b58920, #c49a2c); border-color: #b58920; }

.order-page .filter-btn.active {
  color: #fff;
}

.order-page .menu-content {
  min-width: 0;
}

.order-page .menu-section {
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(31, 15, 10, 0.08);
}

.order-page .menu-section h3 {
  font-size: 1.45rem;
}

.order-page .menu-list li {
  border-radius: 14px;
  padding: 14px 16px;
}

.order-page .bundles-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.order-page .bundle-card {
  border-radius: 14px;
  margin-top: 8px;
  box-shadow: 0 8px 16px rgba(31, 15, 10, 0.08);
}

.order-page .bundle-card:hover {
  transform: translateY(-3px);
}

.order-page .bundle-card.featured {
  transform: none;
}

.order-page .bundle-card.featured:hover {
  transform: translateY(-3px);
}

.order-page .best-value-badge {
  top: -8px;
  font-size: 0.6rem;
  padding: 4px 9px;
  letter-spacing: 0.5px;
  border-width: 1px;
}

.order-page .bundle-header {
  padding: 16px 12px 12px;
  border-radius: 14px 14px 0 0;
}

.order-page .bundle-header h4 {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.order-page .bundle-price {
  font-size: 1.35rem;
  padding: 10px 0;
}

.order-page .bundle-items {
  padding: 12px 14px;
}

.order-page .bundle-items li {
  padding: 7px 0;
  font-size: 0.9rem;
  text-align: left;
}

@media (max-width: 980px) {
  .order-page .menu-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .order-page .menu-controls {
    position: relative;
    top: auto;
  }

  .order-page .menu-controls-title {
    text-align: center;
  }

  .order-page .filter-btns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-page .filter-btn {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .order-page .filter-btns {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   17. MOBILE NAV SPACING TWEAKS
   ========================================= */
@media (max-width: 768px) {
  nav > div {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 4px !important;
    padding-right: 10px;
    max-width: calc(100% - 58px);
  }

  #mobileBtn {
    margin-left: 12px;
  }

  .status-badge {
    font-size: 0.72rem;
    padding: 3px 7px;
    align-self: flex-start;
  }

  .order-page .sticky-call-btn {
    display: none !important;
  }
}

