:root {
  --bg-dark: #070503;
  --bg-card: rgba(20, 13, 9, 0.78);
  --gold: #D4AF37;
  --gold-gradient: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  --gold-soft: rgba(212, 175, 55, 0.20);
  --glass-bg: rgba(10, 10, 10, 0.9);
  --glass-border: rgba(212, 175, 55, 0.3);
  --text-light: #f5f5f5;
  --earth: #3A2414;
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Cairo', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-ar);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
}

body.lang-en {
  font-family: var(--font-en);
  direction: ltr;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: #000;
  padding: 12px 20px;
  z-index: 10000;
  transition: top 0.2s;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

/* Utilities */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.gold-bg {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(212, 175, 55, 0.72));
  border-color: rgba(212, 175, 55, 0.32);
  color: #0b0705;
  font-weight: 800;
  border: none;
}

.gold-bg:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 0.5px solid var(--glass-border);
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.full-width {
  width: 100%;
}

/* Loader */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gold-loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Layout Sections */
.section-pad {
  padding: clamp(48px, 6vw, 96px) 5%;
}

.section-title {
  font-size: clamp(26px, 3.6vw, 40px);
  margin: 0 0 10px 0;
  letter-spacing: 0.2px;
}

.section-subtitle {
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 90px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.86)),
              linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.15;
  margin: 0 0 14px 0;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
  margin: 0 auto 22px;
  max-width: 56ch;
  font-size: clamp(16px, 2.3vw, 20px);
  color: rgba(255, 255, 255, 0.86);
}

.hero-cta {
  display: flex;
  justify-content: center;
}

.hero-cta-btn {
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s var(--ease);
}

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.7s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.12s;
}

.fade-up.delay-2 {
  animation-delay: 0.22s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background: transparent;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.glass-nav.scrolled {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.38);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.brand-logo {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-sep {
  opacity: 0.55;
}

.brand-ar {
  font-weight: 700;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.glass-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  font-family: inherit;
  font-size: 0.95rem;
}

.glass-btn:hover {
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.glass-btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-btn.outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.icon-btn {
  padding: 10px 12px;
}

/* Split Sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  height: auto;
  background: var(--bg-dark);
  align-items: stretch;
  overflow: hidden;
}

.split-section.reverse {
  direction: ltr;
}

.split-section.reverse .owner-text {
  direction: rtl;
  text-align: right;
}

body.lang-en .split-section.reverse .owner-text {
  direction: ltr;
  text-align: left;
}

.story-text,
.owner-text {
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-paragraph,
.owner-paragraph {
  font-size: 1.15rem;
  line-height: 2;
  color: #ccc;
  margin-bottom: 30px;
}

.quote-footer {
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  border-right: 4px solid var(--gold);
  padding: 5px 25px;
  margin-top: 20px;
}

body.lang-en .quote-footer {
  border-right: none;
  border-left: 4px solid var(--gold);
  padding: 5px 5px 5px 25px;
}

.parallax-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  min-height: 500px;
}

.parallax-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.95);
}

.owner-photo {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
}

.media-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* Menu Container */
.menu-container {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  margin-bottom: 30px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  font-family: inherit;
  font-size: 0.95rem;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.category-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.menu-card {
  background: rgba(20, 20, 20, 0.7);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.2rem;
  margin: 0 0 8px 0;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tag-bestseller {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
}

.tag-spicy {
  background: rgba(255, 69, 58, 0.2);
  color: #ff453a;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 0.9rem;
}

.add-to-cart-btn {
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.add-to-cart-btn.added {
  background: rgba(76, 217, 100, 0.3);
  border-color: #4cd964;
  color: #4cd964;
}

/* Branches Section */
.branches-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06), rgba(0, 0, 0, 0));
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.map-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.map-title {
  margin: 0 0 12px 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.map-container {
  position: relative;
  width: 100%;
  padding-top: 66%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.luxury-footer {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.65)), var(--bg-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 44px 5% 18px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.footer-title {
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: rgba(212, 175, 55, 0.95);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  text-align: center;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1400;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  z-index: 2000;
  transform: translateX(100%);
  transition: 0.5s var(--ease);
  visibility: hidden;
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--glass-border);
}

.cart-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

body.lang-en .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  border-left: none;
  border-right: 1px solid var(--glass-border);
}

body.lang-en .cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 30px 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-step {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.cart-step.active {
  display: flex;
}

.step-header {
  padding: 20px 30px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-header h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.step-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.cart-items,
.review-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.item-name {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.item-price {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.qty-display {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
}

.remove-btn {
  color: #ff453a;
  background: rgba(255, 69, 58, 0.1);
  border: 1px solid rgba(255, 69, 58, 0.3);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
}

.remove-btn:hover {
  background: rgba(255, 69, 58, 0.2);
}

.note-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  margin-top: 8px;
  resize: vertical;
  min-height: 60px;
}

.note-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cart-footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.empty-cart {
  padding: 60px 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

/* Form Styles */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-input.error {
  border-color: #ff453a;
}

.error-msg {
  display: block;
  color: #ff453a;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 18px;
}

.hint {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 4px;
}

.hint-message {
  background: rgba(255, 206, 84, 0.15);
  border: 1px solid rgba(255, 206, 84, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  color: #ffce54;
  font-size: 0.85rem;
  margin-top: 10px;
}

.button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

/* WhatsApp Preview */
.wa-preview {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  max-height: 400px;
  overflow-y: auto;
  font-family: monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Review List */
.review-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-item:last-child {
  border-bottom: none;
}

.review-name {
  font-weight: 600;
}

.review-qty {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.review-price {
  color: var(--gold);
  font-weight: 700;
}

/* Floating Cart Pill */
.fac-pill {
  position: fixed;
  bottom: 110px;
  right: 30px;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  display: none;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.fac-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
}

.fac-pill:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.fac-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body.lang-en .fac-pill {
  right: auto;
  left: 30px;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 5%;
  right: 5%;
  height: 75px;
  border-radius: 40px;
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 1500;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  transition: color 0.2s;
  position: relative;
}

.mobile-bottom-nav .nav-item:hover {
  color: var(--gold);
}

.mobile-bottom-nav .nav-item i {
  font-size: 1.3rem;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: 50%;
  transform: translateX(50%);
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--glass-bg);
  color: var(--text-light);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  text-align: center;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Language toggles */
.lang-en {
  display: none;
}

body.lang-en .lang-en {
  display: inline;
}

body.lang-en .lang-ar {
  display: none;
}

/* Error State */
.error-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.6);
}

.error-state i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.error-state h3 {
  margin-bottom: 10px;
  color: #fff;
}

.error-state button {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    min-height: 100svh;
  }

  .split-section {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    overflow: visible !important;
    height: auto !important;
  }

  .split-section.reverse {
    direction: unset !important;
  }

  .story-image,
  .owner-image {
    order: -1 !important;
    height: 280px !important;
    min-height: 0 !important;
  }

  .parallax-img {
    min-height: 0 !important;
  }

  .story-text,
  .owner-text {
    padding: 28px 6% 36px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: start !important;
  }

  .nav-links {
    display: none;
  }

  .maps-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  .fac-pill {
    bottom: 110px;
  }
}

@media (min-width: 992px) {
  .story-text,
  .owner-text {
    text-align: justify;
  }

  .story-paragraph,
  .owner-paragraph {
    text-align: justify;
  }
}

@media (max-width: 360px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    width: 100%;
    min-width: 0;
  }

  .card-info {
    min-width: 0;
  }

  .card-info h3,
  .card-info p {
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .button-group {
    grid-template-columns: 1fr;
  }
}

/* ============ Mobile Header ============ */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hamburger-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.hamburger-btn:hover,
.hamburger-btn:focus {
  color: var(--gold);
}

.hamburger-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-logo {
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.mobile-cta {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* ============ Mobile Menu Overlay ============ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-menu-btn {
  position: absolute;
  top: 8px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

body.lang-en .close-menu-btn {
  right: auto;
  left: 20px;
}

.close-menu-btn:hover,
.close-menu-btn:focus {
  color: var(--gold);
}

.close-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 80px 30px 40px;
  gap: 8px;
}

.mobile-menu-link {
  width: 100%;
  max-width: 400px;
  padding: 20px 30px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  display: block;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold);
  transform: translateY(-2px);
}

.mobile-menu-link.lang-switch {
  margin-top: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold);
}

/* ============ Branch Selection Modal ============ */
.branch-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.branch-modal.active {
  opacity: 1;
  visibility: visible;
}

.branch-modal-content {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.branch-modal.active .branch-modal-content {
  transform: scale(1);
}

.branch-modal-title {
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.branch-modal-subtitle {
  margin: 0 0 30px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.branch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.branch-option {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  color: #fff;
  text-align: center;
  width: 100%;
}

.branch-option:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.branch-option.selected {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.branch-option-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.branch-option-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.branch-option-info i {
  color: var(--gold);
}

/* ============ Desktop Header Adjustments ============ */
@media (max-width: 992px) {
  .glass-nav {
    display: none;
  }
  
  .mobile-header {
    display: flex;
  }
  
  .hero-section {
    padding-top: calc(var(--header-height) + 40px);
  }
  
  body {
    padding-top: var(--header-height);
  }
}

@media (min-width: 993px) {
  .mobile-header,
  .mobile-menu-overlay {
    display: none;
  }
}

/* ============ Responsive Branch Modal ============ */
@media (max-width: 480px) {
  .branch-modal-content {
    padding: 30px 20px;
  }
  
  .branch-modal-title {
    font-size: 1.3rem;
  }
  
  .branch-option {
    padding: 16px;
  }
  
  .branch-option-name {
    font-size: 1rem;
  }
}

/* ============ Adjust existing hero for mobile header ============ */
@media (max-width: 992px) {
  .hero-section {
    min-height: calc(100vh - var(--header-height));
  }
  
  .menu-container {
    padding-top: 80px;
  }
}

/* ============ Fix header variable reference ============ */
:root {
  --header-height: 60px;
}
