@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Noto+Kufi+Arabic:wght@400;600;700&display=swap');

:root {
  --red: #C41E24;
  --red-dark: #8B1519;
  --gold: #D4A853;
  --gold-light: #F0D48A;
  --cream: #FFF8EF;
  --dark: #1A1108;
  --dark-surface: #2A1F12;
  --dark-card: #352818;
  --text-light: #F5E6D0;
  --text-muted: #B8A68E;
  --orange: #E8742A;
  --maroon: #4A1012;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-arabic: 'Noto Kufi Arabic', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scroll margin so fixed navbar doesn't overlap section titles on anchor jump */
section, .section, #hero, #about, #menu, #gallery, #contact {
  scroll-margin-top: 85px;
}

/* Language Visibility */
html[lang="en"] .lang-ar { display: none !important; }
html[lang="ar"] .lang-en { display: none !important; }

/* RTL Adjustments & Typography Line-Height to Prevent Vertical Overlaps */
html[lang="ar"] { direction: rtl; }
html[lang="ar"] body, 
html[lang="ar"] h1, 
html[lang="ar"] h2, 
html[lang="ar"] h3, 
html[lang="ar"] h4,
html[lang="ar"] .btn-primary,
html[lang="ar"] .btn-whatsapp,
html[lang="ar"] .nav-links a { 
  font-family: var(--font-arabic) !important; 
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 {
  line-height: 1.4 !important;
}
html[lang="ar"] .hero h1 {
  line-height: 1.45 !important;
}
html[lang="ar"] .nav-cta svg,
html[lang="ar"] .btn-primary svg,
html[lang="ar"] .btn-whatsapp svg { 
  margin-left: 8px; margin-right: 0 !important; 
}
html[lang="ar"] .contact-card { align-items: center; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem; transition: all 0.4s; background: transparent;
}
.navbar.scrolled {
  background: rgba(26, 17, 8, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.6rem 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.nav-logo-badge,
.nav-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1.5px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), 0 0 6px rgba(212, 168, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.nav-logo:hover .nav-logo-badge,
.nav-logo:hover .nav-logo-circle {
  transform: scale(1.06);
  border-color: var(--gold-light);
  box-shadow: 0 4px 14px rgba(212, 168, 83, 0.45);
}
.nav-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}
.logo-icon {
  width: 50px; height: 50px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; border: 2px solid var(--gold);
  color: var(--gold); font-family: var(--font-display);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text span:first-child {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-text span:last-child { font-family: var(--font-arabic); font-size: 0.75rem; color: var(--text-muted); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-light); text-decoration: none; font-weight: 500;
  font-size: 0.95rem; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); padding: 6px 14px; border-radius: 20px;
  cursor: pointer; font-weight: 600; font-size: 0.85rem;
  transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.lang-switch:hover { background: var(--gold); color: var(--dark); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }

.nav-cta {
  background: #FF5A00; color: white; padding: 9px 20px;
  border: none; border-radius: 50px; font-weight: 600; cursor: pointer;
  text-decoration: none; font-size: 0.88rem; transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 90, 0, 0.35);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255, 90, 0, 0.55); }
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; cursor: pointer; background: none; border: none; padding: 6px;
  width: 38px; height: 38px; border-radius: 8px; transition: background 0.3s;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(212, 168, 83, 0.1); }
.hamburger span {
  width: 24px; height: 2px; background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center;
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  padding: 120px 0 60px;
}
.hero-bg { position: absolute; inset: 0; background: url('images/hero-image.png') center/cover no-repeat; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,17,8,0.7) 0%, rgba(26,17,8,0.35) 40%, rgba(26,17,8,0.9) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 2rem; margin-top: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,83,0.15); border: 1px solid rgba(212,168,83,0.3);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 1.5rem;
  font-size: 0.85rem; color: var(--gold); animation: fadeInDown 1s ease;
}
.hero-badge .dot { width: 6px; height: 6px; background: #25D366; border-radius: 50%; animation: pulse 2s infinite; }
.hero-subtitle {
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
  animation: fadeInDown 1s ease 0.1s both;
}
html[lang="ar"] .hero-subtitle {
  font-family: var(--font-arabic) !important;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1rem; animation: fadeInUp 1s ease 0.2s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-arabic {
  font-family: var(--font-arabic); font-size: 1.3rem; color: var(--gold);
  margin-bottom: 1rem; direction: rtl; animation: fadeInUp 1s ease 0.4s both;
}
.hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 550px; margin: 0 auto 2rem; animation: fadeInUp 1s ease 0.6s both; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease 0.8s both; }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white; padding: 14px 36px; border: none; border-radius: 50px;
  font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s;
  text-decoration: none; box-shadow: 0 4px 20px rgba(196,30,36,0.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(196,30,36,0.6); }
.btn-whatsapp {
  background: #25D366; color: white; padding: 14px 36px; border: none; border-radius: 50px;
  font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.btn-talabat {
  background: #FF5A00; color: white; padding: 14px 36px; border: none; border-radius: 50px;
  font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s;
  text-decoration: none; box-shadow: 0 4px 20px rgba(255,90,0,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-talabat:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,90,0,0.5); }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; animation: bounce 2s infinite;
}
.scroll-indicator .arrow { width: 24px; height: 24px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 0.5rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.section-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); margin: 0 auto 1rem; border-radius: 2px; }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== ABOUT ===== */
.about { background: var(--dark-surface); }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after { content: ''; position: absolute; inset: 0; border: 2px solid rgba(212,168,83,0.2); border-radius: 20px; }
.about-accent { position: absolute; bottom: -10px; right: -10px; width: 120px; height: 120px; border: 3px solid var(--gold); border-radius: 20px; z-index: -1; }
.about-text h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.about-text h3 span { color: var(--gold); }
.about-text p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat { text-align: center; padding: 1.5rem; background: rgba(212,168,83,0.05); border: 1px solid rgba(212,168,83,0.1); border-radius: 16px; }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ===== MENU ===== */
.menu-section { 
  background: radial-gradient(circle at 50% 10%, rgba(196, 30, 36, 0.08) 0%, transparent 60%), var(--dark); 
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.menu-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

/* Menu Controls: Search & Tabs */
.menu-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Search Bar */
.menu-search-wrapper {
  width: 100%;
  max-width: 540px;
  position: relative;
  box-sizing: border-box;
}
.menu-search-input {
  width: 100%;
  background: rgba(42, 31, 18, 0.85);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--text-light);
  padding: 14px 20px 14px 48px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  outline: none;
  box-sizing: border-box;
}
html[lang="ar"] .menu-search-input {
  padding: 14px 48px 14px 20px;
  font-family: var(--font-arabic);
}
.menu-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.25), inset 0 0 10px rgba(212, 168, 83, 0.05);
  background: rgba(53, 40, 24, 0.95);
}
.menu-search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.75;
}
.menu-search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  display: flex;
  align-items: center;
}
html[lang="ar"] .menu-search-icon {
  left: auto;
  right: 18px;
}
.menu-search-clear {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
  display: none;
}
html[lang="ar"] .menu-search-clear {
  right: auto;
  left: 16px;
}
.menu-search-clear:hover { color: var(--gold); }

/* Menu Tabs */
.menu-tabs { 
  display: flex; 
  justify-content: center; 
  gap: 0.75rem; 
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.menu-tab {
  padding: 10px 20px; 
  border-radius: 50px;
  border: 1px solid rgba(212, 168, 83, 0.25); 
  background: rgba(42, 31, 18, 0.6);
  backdrop-filter: blur(8px);
  color: var(--text-muted); 
  cursor: pointer; 
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  font-size: 0.9rem; 
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
html[lang="ar"] .menu-tab {
  font-family: var(--font-arabic);
}
.menu-tab .tab-icon {
  font-size: 1.1rem;
}
.menu-tab .tab-count {
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 700;
  transition: all 0.3s;
}
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--text-light);
  transform: translateY(-2px);
  background: rgba(53, 40, 24, 0.9);
}
.menu-tab.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--gold);
  color: #FFF;
  box-shadow: 0 4px 18px rgba(196, 30, 36, 0.45);
  transform: translateY(-2px);
}
.menu-tab.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFF;
}

/* Category Notice Banner (e.g. Samoon bread) */
.category-notice-banner {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.12), rgba(196, 30, 36, 0.12));
  border: 1px dashed rgba(212, 168, 83, 0.4);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

/* Category Header */
.menu-category { margin-bottom: 3.5rem; }
.menu-category-header {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  margin-bottom: 1.8rem; 
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}
.menu-cat-title-group {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.menu-category-header h3 {
  font-family: var(--font-display); 
  font-size: 1.8rem; 
  color: var(--gold);
  font-weight: 700;
}
.menu-category-header .ar {
  font-family: var(--font-arabic); 
  font-size: 1.25rem; 
  color: var(--text-muted);
}
.menu-category-badge {
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.25);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Menu Grid */
.menu-list { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); 
  gap: 1.5rem; 
}

/* Menu Card Item */
.menu-card-item {
  background: linear-gradient(145deg, rgba(42, 31, 18, 0.92) 0%, rgba(30, 22, 12, 0.95) 100%);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 18px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.menu-card-item::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 4px; 
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--red));
  opacity: 0; 
  transition: opacity 0.3s;
}
html[lang="ar"] .menu-card-item::before {
  left: auto;
  right: 0;
}
.menu-card-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 83, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 168, 83, 0.1);
}
.menu-card-item:hover::before { opacity: 1; }

.menu-card-header {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start; 
  gap: 0.8rem;
}
.menu-card-info { flex: 1; }
.menu-card-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.menu-item-name { 
  font-family: var(--font-display);
  font-weight: 700; 
  font-size: 1.2rem; 
  color: var(--text-light);
  line-height: 1.3;
}
.menu-item-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(212, 168, 83, 0.3);
}
.menu-item-badge.badge-special {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #FFF;
  box-shadow: 0 2px 8px rgba(196, 30, 36, 0.3);
}
.menu-item-name-ar { 
  font-family: var(--font-arabic); 
  font-size: 1rem; 
  color: var(--gold-light); 
  display: block; 
  margin-top: 6px;
  line-height: 1.4;
}

/* Card Pricing Presentation */
.menu-card-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  flex-wrap: wrap;
}

/* Multi-Price Pills (S / M / L or Custom) */
.price-pills-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 100%;
}
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26, 17, 8, 0.7);
  border: 1px solid rgba(212, 168, 83, 0.25);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}
.price-pill:hover {
  border-color: var(--gold);
  background: rgba(42, 31, 18, 0.9);
}
.price-pill-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(212, 168, 83, 0.12);
  padding: 1px 5px;
  border-radius: 4px;
}
.price-pill-val {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.price-pill-cur {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Single Price Tag */
.single-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 6px 14px;
  border-radius: 10px;
}
.single-price-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
}
.single-price-cur {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Quick WhatsApp Order Button */
.btn-quick-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-left: auto;
}
html[lang="ar"] .btn-quick-order {
  margin-left: 0;
  margin-right: auto;
  font-family: var(--font-arabic);
}
.btn-quick-order:hover {
  background: #25D366;
  color: #FFF;
  border-color: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}
.btn-quick-order svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* No Search Results */
.menu-no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}
.menu-no-results h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Featured Cards Grid */
.featured-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem; margin-bottom: 3rem;
}
.featured-card {
  background: var(--dark-card); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(212,168,83,0.08); transition: all 0.4s;
}
.featured-card:hover {
  transform: translateY(-8px); border-color: rgba(212,168,83,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.featured-card-img { position: relative; height: 220px; overflow: hidden; }
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.featured-card:hover .featured-card-img img { transform: scale(1.1); }
.featured-card-badge {
  position: absolute; top: 12px; right: 12px; background: var(--red);
  color: white; padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.featured-card-body { padding: 1.5rem; }
.featured-card-body h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.3rem; }
.featured-card-body .arabic-name { font-family: var(--font-arabic); color: var(--gold); font-size: 0.85rem; direction: rtl; margin-bottom: 0.5rem; }
.featured-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== SPECIALS BANNER ===== */
.specials {
  position: relative; padding: 80px 2rem;
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--orange)); overflow: hidden;
}
.specials::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.specials-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.specials h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.specials p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 0.5rem; }
.specials .hours { font-size: 1.3rem; font-weight: 700; margin: 1.5rem 0; }
.specials .hours span { color: var(--gold-light); }

/* ===== GALLERY ===== */
.gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(196,30,36,0.7);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
  opacity: 0; transition: opacity 0.3s; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
}
.gallery-overlay small { font-family: var(--font-arabic); font-weight: 400; font-size: 0.8rem; opacity: 0.8; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== CONTACT ===== */
.contact { background: var(--dark-surface); }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem;
  background: rgba(212,168,83,0.05); border: 1px solid rgba(212,168,83,0.1);
  border-radius: 16px; transition: all 0.3s; text-decoration: none; color: inherit;
}
.contact-card:hover { border-color: rgba(212,168,83,0.3); transform: translateX(8px); }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-icon.wa { background: #25D366; }
.contact-icon.loc { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.contact-icon.ig { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.contact-icon.hours { background: var(--gold); color: var(--dark); }
.contact-icon.delivery { background: var(--orange); }
.contact-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; }
.contact-card a { color: var(--gold); text-decoration: none; }
.map-container { border-radius: 20px; overflow: hidden; border: 2px solid rgba(212,168,83,0.15); height: 100%; min-height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
.footer { padding: 3rem 2rem; border-top: 1px solid rgba(212,168,83,0.1); text-align: center; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.social-link {
  width: 44px; height: 44px; background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none; font-size: 1.1rem; transition: all 0.3s;
}
.social-link:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-3px); }
.footer p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; animation: fabPulse 2s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-fab svg { width: 32px; height: 32px; fill: white; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes fabPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */

/* Tablets / Medium Screens (<=968px) */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions { gap: 0.6rem; }
  .nav-actions .nav-cta { padding: 8px 16px; font-size: 0.85rem; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26,17,8,0.98); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem; gap: 1.2rem;
    border-bottom: 1px solid rgba(212,168,83,0.2);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-list { grid-template-columns: 1fr; }
  .hero { padding-top: 120px !important; padding-bottom: 60px; min-height: auto; align-items: center; }
  .hero-content { margin-top: 0 !important; }
}

/* Tablets Portrait & Small Screens (<=768px) */
@media (max-width: 768px) {
  /* Persistent frosted dark navbar: never overlaps transparently */
  .navbar {
    background: rgba(26, 17, 8, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }
  .navbar.scrolled {
    background: rgba(26, 17, 8, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    padding: 0.4rem 1rem;
  }

  .nav-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    box-sizing: border-box;
  }
  .nav-logo {
    flex-shrink: 0;
  }
  .nav-logo-badge,
  .nav-logo-circle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    padding: 1.5px;
    border-width: 1.5px;
  }
  .nav-logo-img {
    border-radius: 7px;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }
  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  section, .section, #hero, #about, #menu, #gallery, #contact {
    scroll-margin-top: 75px;
  }

  /* Hero Section: start from top, NO vertical centering into navbar */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px !important;
    padding-bottom: 45px;
    min-height: auto;
  }
  .hero-content {
    margin-top: 16px !important;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    margin-top: 4px;
    margin-bottom: 1.1rem;
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 6px 4px 12px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
    box-sizing: border-box;
  }
  .menu-tabs::-webkit-scrollbar {
    display: none;
  }
  .menu-tab {
    flex-shrink: 0;
  }
  .menu-card-pricing-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .btn-quick-order {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    box-sizing: border-box;
  }
}

/* Mobile Screens (<=600px) */
@media (max-width: 600px) {
  /* Layout & Spacing */
  section { padding: 40px 1rem; }
  section, .section, #hero, #about, #menu, #gallery, #contact {
    scroll-margin-top: 65px;
  }
  .section-header { margin-bottom: 1.6rem; }
  .section-tag { font-size: 0.72rem; letter-spacing: 2px; }
  .section-title { font-size: clamp(1.45rem, 5.5vw, 1.95rem); margin-bottom: 0.5rem; }
  .section-line { margin-bottom: 0.5rem; }
  .section-desc { font-size: 0.88rem; }

  /* Navbar */
  .navbar {
    padding: 0.45rem 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .navbar.scrolled { padding: 0.35rem 0.75rem; }
  .nav-container {
    width: 100%;
    max-width: 100%;
    gap: 0.35rem;
    box-sizing: border-box;
  }
  .nav-logo-badge,
  .nav-logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border-width: 1.5px;
    padding: 1.5px;
  }
  .nav-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
  .lang-switch {
    padding: 5px 8px;
    font-size: 0.76rem;
  }
  .nav-actions .nav-cta {
    padding: 5px 10px;
    font-size: 0.74rem;
    gap: 4px;
  }
  .hamburger {
    width: 34px;
    height: 34px;
    padding: 4px;
    flex-shrink: 0;
  }
  .hamburger span { width: 22px; height: 2px; }
  .nav-links.open {
    padding: 1.25rem 1rem;
    gap: 0.9rem;
    max-height: calc(100vh - 55px);
    overflow-y: auto;
    text-align: center;
  }
  .nav-links.open a {
    font-size: 1.05rem;
    padding: 6px 0;
  }

  /* Hero Section: generous top clearance so navbar NEVER overlaps "Open Now" */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 90px !important;
    padding-bottom: 35px;
    min-height: auto;
  }
  .hero-content {
    margin-top: 15px !important;
    padding: 0 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    margin-top: 4px;
    margin-bottom: 0.85rem;
    padding: 5px 12px;
    font-size: 0.75rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 6.8vw, 2.1rem);
    line-height: 1.22;
    margin-bottom: 0.65rem;
    word-break: break-word;
  }
  html[lang="ar"] .hero h1 {
    line-height: 1.42 !important;
  }
  .hero-arabic {
    font-size: 1.08rem;
    line-height: 1.4;
    margin-bottom: 0.65rem;
  }
  .hero p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 0.6rem;
    align-items: center;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-talabat,
  .hero-buttons .btn-whatsapp {
    width: 100%;
    max-width: min(320px, 100%);
    justify-content: center;
    padding: 11px 18px;
    font-size: 0.88rem;
    box-sizing: border-box;
  }
  .scroll-indicator { display: none; }

  /* About */
  .about-image { border-radius: 14px; }
  .about-accent { display: none; }
  .about-text h3 {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  html[lang="ar"] .about-text h3 {
    line-height: 1.45 !important;
  }
  .about-text p { font-size: 0.88rem; margin-bottom: 1rem; }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-top: 1.2rem;
    width: 100%;
    box-sizing: border-box;
  }
  .stat {
    padding: 0.75rem 0.35rem;
    border-radius: 12px;
  }
  .stat-number { font-size: 1.25rem; }
  .stat-label { font-size: 0.68rem; }

  /* Menu Controls */
  .menu-controls {
    gap: 0.9rem;
    margin-bottom: 1.6rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .menu-search-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .menu-search-input {
    padding: 11px 38px 11px 40px;
    font-size: 0.85rem;
    box-sizing: border-box;
    width: 100%;
  }
  html[lang="ar"] .menu-search-input {
    padding: 11px 40px 11px 38px;
  }
  .menu-tab {
    padding: 7px 13px;
    font-size: 0.8rem;
    gap: 5px;
  }
  .menu-tab .tab-icon { font-size: 0.95rem; }
  .menu-tab .tab-count {
    font-size: 0.68rem;
    padding: 2px 5px;
  }

  /* Menu Cards & Headers */
  .menu-category { margin-bottom: 2rem; }
  .menu-category-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  .menu-cat-title-group {
    display: flex;
    align-items: center;
    gap: 0.4rem 0.6rem;
    flex-wrap: wrap;
    flex: 1 1 auto;
    min-width: 0;
  }
  .menu-category-header h3 {
    font-size: 1.25rem;
    word-break: break-word;
  }
  .menu-category-header .ar {
    font-size: 0.92rem;
    opacity: 0.85;
  }
  .menu-category-badge {
    font-size: 0.72rem;
    padding: 2px 9px;
    flex-shrink: 0;
  }
  .category-notice-banner {
    font-size: 0.82rem;
    padding: 8px 12px;
    margin-bottom: 1rem;
    border-radius: 10px;
    line-height: 1.4;
  }
  .menu-card-item {
    padding: 1rem 0.9rem;
    border-radius: 14px;
    gap: 0.8rem;
    box-sizing: border-box;
  }
  .menu-item-name { font-size: 1.02rem; word-break: break-word; }
  .menu-item-name-ar { font-size: 0.9rem; margin-top: 2px; }
  .menu-item-badge {
    font-size: 0.62rem;
    padding: 2px 7px;
  }

  /* Responsive Price Pills Group - never overflows */
  .price-pills-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
  }
  .price-pill {
    flex: 1 1 calc(33.333% - 6px);
    min-width: calc(33.333% - 6px);
    max-width: 100%;
    padding: 5px 6px;
    font-size: 0.78rem;
    gap: 4px;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
  }
  .price-pill-label { font-size: 0.65rem; padding: 1px 4px; }
  .price-pill-val { font-size: 0.9rem; }
  .price-pill-cur { font-size: 0.6rem; }
  .single-price-tag { padding: 5px 12px; align-self: flex-start; }
  .single-price-val { font-size: 1.12rem; }
  .btn-quick-order {
    padding: 9px 14px;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Specials */
  .specials { padding: 40px 1rem; }
  .specials-content { padding: 0 0.5rem; }
  .specials h2 {
    font-size: clamp(1.4rem, 5.2vw, 1.9rem);
    line-height: 1.3;
  }
  html[lang="ar"] .specials h2 {
    line-height: 1.45 !important;
  }
  .specials p { font-size: 0.88rem; }
  .specials .hours { font-size: 1.05rem; margin: 0.85rem 0; }
  .specials .btn-whatsapp {
    width: 100%;
    max-width: 290px;
    margin: 1rem auto 0 !important;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Gallery Grid - 2 columns on mobile with permanent titles */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  .gallery-item {
    border-radius: 10px;
  }
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(26, 17, 8, 0.92) 0%, rgba(26, 17, 8, 0.35) 60%, transparent 100%);
    justify-content: flex-end;
    padding: 7px 5px;
    font-size: 0.78rem;
    text-align: center;
  }
  .gallery-overlay span {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  /* Contact Section */
  .contact-grid {
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-info { gap: 0.85rem; }
  .contact-card {
    padding: 0.9rem;
    gap: 0.75rem;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .contact-card h4 { font-size: 0.92rem; }
  .contact-card p {
    font-size: 0.82rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .map-container {
    min-height: 240px;
    height: 240px;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem calc(2rem + 40px); /* extra clearance for WhatsApp FAB */
    width: 100%;
    box-sizing: border-box;
  }
  .footer-content {
    width: 100%;
    box-sizing: border-box;
  }
  .footer-social { gap: 0.75rem; margin-bottom: 1rem; }
  .social-link { width: 38px; height: 38px; font-size: 0.95rem; }
  .footer p { font-size: 0.78rem; line-height: 1.5; }

  /* WhatsApp FAB on mobile */
  .whatsapp-fab {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    width: 48px;
    height: 48px;
  }
  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
  html[lang="ar"] .whatsapp-fab {
    right: auto;
    left: calc(1rem + env(safe-area-inset-left, 0px));
  }
}

/* Extra Small Devices (<=380px, e.g. iPhone SE, 360px phones) */
@media (max-width: 380px) {
  .navbar { padding: 0.4rem 0.5rem; }
  .navbar.scrolled { padding: 0.3rem 0.5rem; }
  .nav-container { gap: 0.25rem; }
  .nav-logo-badge,
  .nav-logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    border-width: 1px;
    padding: 1px;
  }
  .nav-logo-img {
    border-radius: 5px;
  }
  .nav-actions { gap: 0.25rem; }
  .nav-actions .nav-cta {
    padding: 4px 7px;
    font-size: 0.7rem;
  }
  .lang-switch {
    padding: 4px 6px;
    font-size: 0.7rem;
  }
  .hamburger {
    width: 30px;
    height: 30px;
  }
  .hamburger span { width: 19px; }

  .hero {
    padding-top: 85px !important;
  }
  .hero-content {
    margin-top: 12px !important;
    padding: 0 0.5rem;
  }
  .hero h1 { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.8rem; letter-spacing: 1px; }
  .hero-arabic { font-size: 0.98rem; }

  .stat { padding: 0.6rem 0.2rem; }
  .stat-number { font-size: 1.1rem; }
  .stat-label { font-size: 0.62rem; }

  .menu-card-item {
    padding: 0.85rem 0.7rem;
  }
  /* 2 equal columns on small screens instead of rigid overflowing 80px minmax */
  .price-pills-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
  }
  .price-pill {
    flex: 1 1 calc(50% - 5px);
    min-width: calc(50% - 5px);
    justify-content: center;
    padding: 4px 4px;
    font-size: 0.75rem;
  }
}

/* Ultra Narrow Devices (<=330px) */
@media (max-width: 330px) {
  .about-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .price-pill {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

