/* ==========================================================================
   KIMLING HALAL HAKKA — MAIN STYLESHEET
   Aesthetic: Luxury Forest Emerald Green, Warm Sand Beige & Spiced Gold
   Inspired by: hakkaandco.com, bawarahakkaexpress.ca, zauq.ca
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Green Palette */
  --bg-forest-950: #07130D;
  --bg-forest-900: #0E2218;
  --bg-forest-850: #132D20;
  --bg-forest-800: #193828;
  --bg-forest-700: #224C37;
  --bg-forest-600: #2F644A;

  /* Warm Sand & Beige Palette */
  --sand-50: #FAF7F0;
  --sand-100: #F3ECE0;
  --sand-200: #E7DAC7;
  --sand-300: #D8C4A9;
  --sand-400: #C2A782;
  --sand-500: #9E815A;

  /* Warm Luxury Accents */
  --gold-300: #F3DE8A;
  --gold-400: #E5C358;
  --gold-500: #D4AF37;
  --gold-600: #B38E22;
  --chilli-red: #D13E2E;
  --chilli-red-dark: #A5281B;

  /* Text & Surfaces */
  --text-dark: #1A241E;
  --text-muted: #6B7A70;
  --text-light: #FAF7F0;
  --text-light-muted: #B8C7BE;
  
  /* Borders & Shadows */
  --border-light: rgba(212, 175, 55, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-sand: rgba(194, 167, 130, 0.35);
  --shadow-sm: 0 4px 12px rgba(7, 19, 13, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 19, 13, 0.16);
  --shadow-lg: 0 16px 40px rgba(7, 19, 13, 0.28);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.22);

  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark light;
}

body {
  font-family: var(--font-sans);
  background-color: var(--sand-50);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

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

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==========================================================================
   TOP BAR & BANNER
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--bg-forest-950), var(--bg-forest-850), var(--bg-forest-950));
  color: var(--sand-100);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 110;
}

.announcement-bar .badge-halal {
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.announcement-bar .promo-pill {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-contact-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light-muted);
}

.top-contact-links a:hover {
  color: var(--gold-400);
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14, 34, 24, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 100;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-crest {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg-forest-700), var(--bg-forest-950));
  border: 2px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  color: var(--gold-400);
  font-size: 1.5rem;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--sand-50);
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.brand-title span {
  color: var(--gold-400);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--sand-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
}

.nav-link {
  color: var(--sand-100);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Primary and Secondary Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-forest-950);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--sand-50);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--bg-forest-800);
  color: var(--sand-50);
  border: 1px solid var(--bg-forest-600);
}

.btn-forest:hover {
  background: var(--bg-forest-700);
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.cart-toggle-btn {
  position: relative;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-500);
  color: var(--sand-50);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.cart-badge {
  background: var(--chilli-red);
  color: #fff;
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--sand-50);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(180deg, var(--bg-forest-950) 0%, var(--bg-forest-900) 50%, var(--bg-forest-850) 100%);
  color: var(--sand-50);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 40%, rgba(34, 76, 55, 0.35) 0%, transparent 65%),
              linear-gradient(to right, rgba(7, 19, 13, 0.96) 35%, rgba(7, 19, 13, 0.5) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sand-200);
}

.tag-pill.gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  border-color: var(--gold-500);
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.12;
  margin-bottom: 1.4rem;
  color: var(--sand-50);
}

.hero-title .highlight {
  color: var(--gold-400);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--sand-200);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-400);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hero Visual Showcase */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), rgba(18, 43, 32, 0.6));
  box-shadow: var(--shadow-lg), 0 0 50px rgba(212, 175, 55, 0.15);
}

.hero-image-wrap {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background-color: var(--bg-forest-950);
}

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

.hero-visual-card:hover .hero-image-wrap img {
  transform: scale(1.04);
}

.floating-dish-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(14, 34, 24, 0.95);
  border: 1px solid var(--gold-500);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--sand-50);
}

.floating-dish-badge .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-forest-700);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.floating-dish-badge .badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sand-100);
}

.floating-dish-badge .badge-meta {
  font-size: 0.8rem;
  color: var(--gold-400);
  font-weight: 600;
}

/* ==========================================================================
   TRUST & PILLARS BAR
   ========================================================================== */
.pillars-section {
  background: var(--sand-100);
  border-bottom: 1px solid var(--border-sand);
  padding: 2.2rem 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-forest-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.pillar-content h4 {
  font-size: 1rem;
  color: var(--bg-forest-900);
  margin-bottom: 0.15rem;
}

.pillar-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   ORDERING & MENU HUB SECTION
   ========================================================================== */
.menu-section {
  padding: 5.5rem 0;
  background: var(--sand-50);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-subtitle-tag {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg-forest-700);
  background: rgba(34, 76, 55, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.75rem;
  color: var(--bg-forest-950);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Fulfillment & Search Control Bar */
.ordering-controls-bar {
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.fulfillment-switch {
  display: inline-flex;
  background: var(--sand-100);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-sand);
}

.switch-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.switch-btn.active {
  background: var(--bg-forest-850);
  color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}

.menu-search-box {
  position: relative;
  flex: 1;
  max-width: 420px;
}

.menu-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-sand);
  background: var(--sand-50);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--bg-forest-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34, 76, 55, 0.12);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Category Filter Tabs */
.category-filter-scroll {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: thin;
}

.category-tab-btn {
  white-space: nowrap;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid var(--border-sand);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.category-tab-btn:hover {
  border-color: var(--bg-forest-600);
  color: var(--bg-forest-700);
  transform: translateY(-1px);
}

.category-tab-btn.active {
  background: var(--bg-forest-850);
  border-color: var(--bg-forest-850);
  color: var(--sand-50);
  box-shadow: var(--shadow-sm);
}

.category-tab-btn.active .tab-icon {
  filter: brightness(1.2);
}

/* Dietary Quick Filters */
.dietary-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.dietary-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}

.diet-filter-pill {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--sand-100);
  border: 1px solid var(--border-sand);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.diet-filter-pill:hover, .diet-filter-pill.active {
  background: var(--bg-forest-700);
  color: var(--gold-300);
  border-color: var(--bg-forest-700);
}

/* Dish Grid & Cards */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.8rem;
}

.dish-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-sand);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand-400);
}

.dish-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--bg-forest-900);
}

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

.dish-card:hover .dish-image-wrap img {
  transform: scale(1.06);
}

.dish-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.dish-pill {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(14, 34, 24, 0.9);
  color: var(--sand-50);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
}

.dish-pill.signature {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--bg-forest-950);
  border: none;
}

.dish-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dish-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.dish-title {
  font-size: 1.22rem;
  color: var(--bg-forest-950);
  font-weight: 700;
  line-height: 1.25;
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bg-forest-700);
  white-space: nowrap;
}

.dish-spice-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  color: var(--chilli-red);
  font-weight: 700;
}

.dish-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.dish-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-sand);
  margin-top: auto;
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.dish-tag-item {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--sand-100);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.btn-add-order {
  background: var(--bg-forest-850);
  color: var(--gold-400);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border-light);
}

.btn-add-order:hover {
  background: var(--gold-500);
  color: var(--bg-forest-950);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   DIGITAL MENU BROCHURE VIEWER (Zauq & Hakka & Co Inspired)
   ========================================================================== */
.brochure-section {
  background: linear-gradient(180deg, var(--bg-forest-950) 0%, var(--bg-forest-900) 100%);
  color: var(--sand-50);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.brochure-section .section-title {
  color: var(--sand-50);
}

.brochure-section .section-desc {
  color: var(--sand-200);
}

.brochure-container {
  background: rgba(19, 45, 32, 0.7);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(12px);
}

.brochure-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.brochure-page-indicator {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-400);
  font-weight: 700;
}

.brochure-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brochure-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--sand-100);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.brochure-btn:hover {
  background: var(--gold-500);
  color: var(--bg-forest-950);
  border-color: var(--gold-500);
}

/* Digital Brochure Page Paper Sheet */
.brochure-sheet {
  background: #FCFAF6;
  color: #1A241E;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  padding: 3rem;
  min-height: 580px;
  position: relative;
  border: 1px solid var(--sand-300);
  background-image: radial-gradient(var(--sand-200) 1px, transparent 1px);
  background-size: 24px 24px;
}

.sheet-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gold-500);
  margin-bottom: 2rem;
}

.sheet-header h3 {
  font-size: 1.85rem;
  color: var(--bg-forest-900);
  margin-bottom: 0.25rem;
}

.sheet-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.sheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.sheet-category-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--bg-forest-800);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--sand-300);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sheet-dish-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sheet-dish-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sheet-dish-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.sheet-dish-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--bg-forest-950);
}

.sheet-dish-price {
  font-weight: 800;
  color: var(--bg-forest-700);
  font-family: var(--font-display);
}

.sheet-dish-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.brochure-page-jump-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.page-jump-pill {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--sand-200);
  font-size: 0.85rem;
  font-weight: 700;
}

.page-jump-pill.active {
  background: var(--gold-500);
  color: var(--bg-forest-950);
  border-color: var(--gold-500);
}

/* ==========================================================================
   TANGRA HERITAGE & 100% HALAL PROMISE
   ========================================================================== */
.heritage-section {
  padding: 5.5rem 0;
  background: var(--sand-100);
  border-bottom: 1px solid var(--border-sand);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.heritage-image-stack {
  position: relative;
}

.heritage-main-img {
  border-radius: var(--radius-lg);
  border: 3px solid #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.heritage-seal-badge {
  position: absolute;
  bottom: -25px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg-forest-800), var(--bg-forest-950));
  border: 3px solid var(--gold-500);
  color: var(--gold-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: var(--shadow-gold);
}

.heritage-seal-badge .seal-icon {
  font-size: 1.8rem;
}

.heritage-seal-badge .seal-text {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sand-50);
}

.heritage-content .section-title {
  text-align: left;
}

.heritage-story-p {
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.heritage-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.heritage-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-check-icon {
  color: var(--bg-forest-600);
  background: rgba(34, 76, 55, 0.15);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   BANQUET & CATERING CALCULATOR (Bawara & Zauq Inspired)
   ========================================================================== */
.catering-section {
  padding: 5.5rem 0;
  background: var(--sand-50);
}

.catering-calculator-card {
  background: #fff;
  border: 2px solid var(--border-sand);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

.calc-form-wrap h3 {
  font-size: 1.8rem;
  color: var(--bg-forest-950);
  margin-bottom: 0.5rem;
}

.calc-form-wrap p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.slider-group {
  margin-bottom: 2rem;
}

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

.slider-label {
  font-weight: 700;
  color: var(--bg-forest-900);
}

.slider-val-badge {
  background: var(--bg-forest-850);
  color: var(--gold-400);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
}

.guest-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--sand-200);
  accent-color: var(--bg-forest-700);
  cursor: pointer;
}

.package-selection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pkg-card-opt {
  border: 2px solid var(--border-sand);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--sand-50);
}

.pkg-card-opt.active, .pkg-card-opt:hover {
  border-color: var(--bg-forest-700);
  background: rgba(34, 76, 55, 0.06);
}

.pkg-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--bg-forest-900);
}

.pkg-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bg-forest-700);
  font-family: var(--font-display);
}

/* Calculator Summary Box */
.calc-summary-box {
  background: linear-gradient(160deg, var(--bg-forest-950), var(--bg-forest-850));
  color: var(--sand-50);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-header h4 {
  font-size: 1.35rem;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

.tray-estimate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
}

.tray-estimate-list li {
  display: flex;
  justify-content: space-between;
  color: var(--sand-100);
}

.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.calc-total-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sand-200);
}

.calc-total-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-400);
}

/* ==========================================================================
   TABLE RESERVATION SECTION
   ========================================================================== */
.reservation-section {
  padding: 5.5rem 0;
  background: linear-gradient(rgba(7, 19, 13, 0.88), rgba(7, 19, 13, 0.95)), 
              url('../assets/images/halal_restaurant_interior_1786647342276.jpg') center/cover no-repeat;
  color: var(--sand-50);
}

.reservation-card {
  background: rgba(14, 34, 24, 0.95);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 860px;
  margin: 0 auto;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.reservation-card .section-title {
  color: var(--sand-50);
}

.reservation-grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sand-200);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--sand-50);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.14);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 5.5rem 0;
  background: var(--sand-100);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--gold-500);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-forest-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.author-name {
  font-weight: 700;
  color: var(--bg-forest-950);
  font-size: 0.92rem;
}

.author-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: var(--bg-forest-950);
  color: var(--sand-200);
  padding: 5rem 0 2rem;
  border-top: 2px solid var(--gold-500);
}

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

.footer-col h4 {
  font-size: 1.15rem;
  color: var(--sand-50);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-500);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}

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

/* ==========================================================================
   INTERACTIVE CART DRAWER (SLIDE-OUT)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 13, 0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -520px;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #fff;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.25);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  background: var(--bg-forest-900);
  color: var(--sand-50);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--sand-50);
}

.btn-close-drawer {
  font-size: 1.5rem;
  color: var(--sand-200);
  padding: 4px;
}

.btn-close-drawer:hover {
  color: var(--gold-400);
}

.cart-items-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-empty-state {
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--text-muted);
}

.cart-empty-state .icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.cart-item-card {
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: var(--sand-50);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item-name {
  font-weight: 700;
  color: var(--bg-forest-950);
  font-size: 0.95rem;
}

.cart-item-price {
  font-weight: 800;
  color: var(--bg-forest-800);
  font-family: var(--font-display);
}

.cart-item-modifiers {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-full);
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bg-forest-800);
}

.qty-val {
  padding: 0 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.btn-remove-item {
  color: var(--chilli-red);
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-remove-item:hover {
  text-decoration: underline;
}

/* Cart Footer & Checkout Breakdown */
.cart-drawer-footer {
  background: var(--sand-100);
  border-top: 1px solid var(--border-sand);
  padding: 1.25rem 1.5rem;
}

.promo-input-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.promo-input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.cart-breakdown-table {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
}

.breakdown-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg-forest-950);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-sand);
  margin-top: 0.25rem;
}

/* ==========================================================================
   ITEM CUSTOMIZATION MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 13, 0.75);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .custom-modal-card {
  transform: scale(1);
}

.modal-hero-header {
  position: relative;
  background: var(--bg-forest-900);
  color: var(--sand-50);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.btn-close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--sand-50);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.modal-scroll-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mod-group-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--bg-forest-950);
  margin-bottom: 0.65rem;
}

.radio-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.radio-opt-box {
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--sand-50);
}

.radio-opt-box.selected {
  border-color: var(--bg-forest-700);
  background: rgba(34, 76, 55, 0.08);
  color: var(--bg-forest-900);
  font-weight: 700;
}

.modal-footer {
  padding: 1.25rem 1.5rem;
  background: var(--sand-100);
  border-top: 1px solid var(--border-sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   LIVE ORDER CONFIRMATION & TRACKER MODAL
   ========================================================================== */
.tracker-card {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-500);
}

.order-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-forest-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold);
}

.order-tracker-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
  position: relative;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.track-step.active {
  color: var(--bg-forest-800);
}

.track-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

.track-step.active .track-dot {
  background: var(--bg-forest-700);
  color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(34, 76, 55, 0.18);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast-msg {
  background: var(--bg-forest-950);
  color: var(--sand-50);
  border-left: 4px solid var(--gold-500);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: slideInToast 0.3s ease;
}

@keyframes slideInToast {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-subtitle {
    margin: 0 auto 2rem;
  }
  .hero-cta-group, .hero-badge-row {
    justify-content: center;
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catering-calculator-card {
    grid-template-columns: 1fr;
  }
  .heritage-grid {
    grid-template-columns: 1fr;
  }
  .sheet-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .top-contact-links {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reservation-grid-form {
    grid-template-columns: 1fr;
  }
  .package-selection-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PRINT STYLESHEET (FOR MENU BROCHURE DOWNLOAD / PRINT)
   ========================================================================== */
@media print {
  body * {
    visibility: hidden;
  }
  #brochureSheetContent, #brochureSheetContent * {
    visibility: visible;
  }
  #brochureSheetContent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
    border: none;
  }
}
