:root{
  /* Core Colors - Updated Brand Identity */
  --bg:#050505;
  --fg:#ffffff;
  --brand:#C9A24D;        /* ذهبي داكن - Golden Dark */
  --brand-2:#D8B873;      /* بيج ذهبي - Golden Beige */
  --brand-light:#FAF7F2;  /* أبيض مكسور - Ivory */
  --text-dark:#2B2B2B;    /* بني داكن - Dark Brown */
  --muted:#9CA3AF;
  
  /* Status Colors */
  --success:#10B981;
  --error:#EF4444;
  --warning:#F59E0B;
  --info:#3B82F6;

  /* UI Elements */
  --card: rgba(255,255,255,.06);
  --card-border: rgba(255,255,255,.12);
  --card-hover: rgba(255,255,255,.10);

  --shadow: 0 16px 50px rgba(0,0,0,.45);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.25);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.60);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 76px;

  --container: 1120px;
  --pad: 18px;

  --focus: 0 0 0 3px rgba(212,175,55,.28);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

.is-hidden{ display:none !important; }

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: 'Cairo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

/* ══════════════════════════════════════════════════════════════════════════
   Font Display Optimization
   ══════════════════════════════════════════════════════════════════════════ */

/* Ensure text remains visible during font load */
@font-face {
  font-family: 'Cairo';
  font-display: swap;
  /* This will be applied to Google Fonts via link preconnect */
}

/* Fallback font metrics to reduce CLS */
@font-face {
  font-family: 'Cairo Fallback';
  src: local('Arial');
  font-display: swap;
  size-adjust: 105%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

a{ color:inherit; text-decoration:none; }
img,video{ max-width:100%; display:block; }
button{ font:inherit; }

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

.container{
  width:min(var(--container), calc(100% - (var(--pad)*2)));
  margin-inline:auto;
}

main{
  padding-top: var(--header-h);
}

.anchor{ position:relative; top: calc(-1 * var(--header-h)); height:1px; }

/* Skip Link */
.skip-link{
  position:absolute;
  inset-inline-start: 12px;
  top: 10px;
  z-index: 1000;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus{ transform: translateY(0); outline:none; box-shadow: var(--focus); }

/* Header */
.site-header{
  height: var(--header-h);
  display:flex;
  align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  position: relative;
height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Desktop nav */
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  font-weight:800;
  letter-spacing:.02em;
}
.nav a{
  opacity:.9;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .15s ease, opacity .15s ease;
  touch-action: manipulation;
}
.nav a:hover{ background: rgba(255,255,255,.06); opacity:1; }

.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 140px;
}
.logo-img{
  width: 120px;
  height: 44px;
  object-fit: contain;
}

/* Language Toggle */
.lang, .lang-toggle{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--fg);
  border-radius: 999px;
  padding: 10px 14px;
  cursor:pointer;
  font-weight:900;
  transition: all var(--transition-fast);
}
.lang:hover, .lang-toggle:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-2px);
}
.lang:focus, .lang-toggle:focus{
  outline:none;
  box-shadow: var(--focus);
}

/* Burger + drawer */
.nav-toggle{
  position:absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  position:relative;
  touch-action: manipulation;
}
.burger span{
  position:absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  opacity:.9;
}
.burger span:nth-of-type(1){ top: 16px; }
.burger span:nth-of-type(2){ top: 26px; }
.burger span:nth-of-type(3){ top: 36px; }

.mobile-drawer{
  display:none;
  position:absolute;
  top: calc(var(--header-h) - 6px);
  inset-inline-end: var(--pad);
  width: min(320px, calc(100vw - 24px));
  background: rgba(10,10,10,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 90;
}
.mobile-drawer a, .mobile-drawer button{
  display:flex;
  width:100%;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing:.01em;
  touch-action: manipulation;
}
.mobile-drawer a:hover{ background: rgba(255,255,255,.06); }
.mobile-drawer hr{
  border:0;
  border-top:1px solid rgba(255,255,255,.12);
  margin: 8px 6px;
}
.mobile-drawer button.lang{ justify-content:center; }

.nav-toggle:checked ~ .mobile-drawer{ display:block; }

@media (max-width: 980px){
  .site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4000;
    background: rgba(17,17,17,.96);
    backdrop-filter: blur(10px);
  }

  /* Ensure header controls are always above page overlays on mobile */
  .header-inner{ z-index: 4001; }
  .burger, .logo, .nav.nav-right{ position: relative; z-index: 4002; }
  .mobile-drawer{ z-index: 4010; }

  .nav.nav-left{ display:none; }
  .nav.nav-right{ 
    display: flex !important;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav.nav-right a:not(.lang-toggle){ display:none; }
  .burger{ display:block; }
}

[dir="rtl"] .nav.nav-right {
  right: auto;
  left: 70px;
}


/* ══════════════════════════════════════════════════════════════════════════
   ANIMATIONS & TRANSITIONS
   ══════════════════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes starGlow {
  0% { filter: drop-shadow(0 2px 4px rgba(201, 162, 77, 0.3)); }
  100% { filter: drop-shadow(0 2px 8px rgba(201, 162, 77, 0.6)); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations to various elements */
.card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.menu-item {
  animation: scaleIn 0.5s ease-out;
  animation-fill-mode: both;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.15s; }
.menu-item:nth-child(3) { animation-delay: 0.2s; }
.menu-item:nth-child(4) { animation-delay: 0.25s; }
.menu-item:nth-child(5) { animation-delay: 0.3s; }
.menu-item:nth-child(6) { animation-delay: 0.35s; }
.menu-item:nth-child(7) { animation-delay: 0.4s; }
.menu-item:nth-child(8) { animation-delay: 0.45s; }

.menu-item-img,
.gallery-img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .menu-item-img,
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.testimonial.card:nth-child(1) { animation-delay: 0.1s; }
.testimonial.card:nth-child(2) { animation-delay: 0.2s; }
.testimonial.card:nth-child(3) { animation-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER SOCIAL LINKS
   ══════════════════════════════════════════════════════════════════════════ */

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(15, 15, 15, 0.8));
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 24px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 147, 45, 0.15));
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .footer-social-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   MOBILE VIDEO FIX
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-video {
    display: none;
  }
  
  .hero {
    background-image: url('./assets/hero/hero-poster.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Sections */
.section{
  padding: 64px 0;
}
.section-head{
  margin-bottom: 18px;
}
.section-kicker{
  color: var(--brand);
  font-weight: 900;
  letter-spacing:.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity:.95;
}
.section-title{
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing:-.02em;
}
.section-subtitle{
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
}

/* Card */
.card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}

/* Hero */
.hero{
  min-height: calc(92vh - var(--header-h)); /* fallback */
  min-height: calc(92dvh - var(--header-h)); /* modern browsers */
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 900px at 20% 10%, rgba(212,175,55,.16), transparent 55%),
              radial-gradient(900px 700px at 80% 40%, rgba(255,255,255,.08), transparent 55%);
  pointer-events:none;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-video{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
  opacity:.55;
}
.hero-poster{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity:.9;
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(to bottom, rgba(5,5,5,.25), rgba(5,5,5,.82));
}

.hero-content{
  position:relative;
  z-index:2;
  padding: 32px 0 46px;
}

/* Hero Warning Box */
.hero-warn{
  display: inline-block;
  padding: 12px 18px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  border-inline-start: 4px solid var(--brand);
  background: rgba(212,175,55,.12);
  backdrop-filter: blur(12px);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  animation: slideInUp 0.6s ease;
}
.hero-warn strong{
  color: var(--brand);
  font-weight: 900;
  margin-inline-end: 6px;
}

/* Hero CTAs */
.hero-ctas{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  animation: slideInUp 0.8s ease;
}

/* Hero Scroll Button */
.hero-scroll{
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-base);
  animation: bounce 2s infinite;
}
.hero-scroll.is-hidden{
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
  animation: none;
}

.hero-scroll:hover{
  background: rgba(0,0,0,.55);
  transform: translateX(-50%) translateY(-3px);
}
.hero-scroll svg{
  width: 20px;
  height: 20px;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.warning{
  width: min(560px, 100%);
  margin-bottom: 18px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.warning-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 6px;
}
.warning-label{
  color: var(--brand);
  font-weight: 1000;
  letter-spacing:.08em;
}
.warning-line{
  flex:1;
  height:1px;
  background: rgba(212,175,55,.4);
}
.warning-text{
  margin:0;
  font-weight: 900;
  letter-spacing:.02em;
  opacity:.92;
}
.hero-title{
  margin: 10px 0 18px;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing:-.03em;
  text-wrap: balance;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-controls{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}
.hero-controls .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(212,175,55,.18);
}

.scroll-indicator{
  position:absolute;
  left: 50%;
  bottom: 18px;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  z-index:2;
  opacity:.35;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 1000;
  letter-spacing:.01em;
  cursor:pointer;
  transition: all var(--transition-base);
  user-select:none;
  position: relative;
  overflow: hidden;
}
.btn::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::before{
  opacity: 1;
}
.btn:focus{
  outline:none;
  box-shadow: var(--focus);
}
.btn:active{
  transform: scale(0.98);
}

.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 4px 16px rgba(212,175,55,.3);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,.45);
}
.btn-primary:active{
  transform: translateY(0);
}


.btn-gold{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 4px 16px rgba(212,175,55,.30);
}
.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,55,.45);
}
.btn-gold:active{
  transform: translateY(0);
}
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: #fff;
}
.btn-ghost:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary{
  background: transparent;
  border: 2px solid rgba(255,255,255,.24);
  color: #fff;
}
.btn-secondary:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}
.btn-ghost:hover{ background: rgba(255,255,255,.10); }

/* Story */
.story-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:stretch;
}
.story-text{ padding: 18px; }
.story-quote{
  margin: 0 0 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,.20);
  background: rgba(212,175,55,.07);
}
.story-paragraph{
  margin: 10px 0;
  color: rgba(255,255,255,.85);
}
.story-media{ padding: 14px; display:flex; }
.story-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 3/4;
}

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

/* Owner */
.owner-card{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  padding: 14px;
  align-items:stretch;
}
.owner-media{ display:flex; }
.owner-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 3/4;
}
.owner-content{ padding: 6px 8px; }
.owner-name{
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.1;
}
.owner-role{
  margin: 8px 0 12px;
  color: rgba(255,255,255,.72);
  font-weight: 900;
}
.owner-text{ margin: 10px 0; color: rgba(255,255,255,.85); }
.owner-quote{
  margin: 14px 0 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 980px){
  .owner-card{ grid-template-columns: 1fr; }
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  min-height: 220px;
}
.gallery-item img{
  width:100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transform: scale(1.02);
}
.gallery-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,0));
}
.gallery-overlay h3{
  margin:0;
  font-size: 20px;
  font-weight: 1000;
}
.gallery-price{
  margin: 6px 0 0;
  color: rgba(255,255,255,.85);
  font-weight: 900;
}
.gallery-add{
  position:absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color:#111;
  font-weight: 1000;
  font-size: 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  opacity: 1 !important;         /* important to prevent the “transparent +” bug */
  visibility: visible !important; /* same */
}
.gallery-add:focus{ outline:none; box-shadow: var(--focus); }

/* Inquiry button variant (for items with variable pricing) */
.gallery-add.gallery-inquire{
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.gallery-actions{
  margin-top: 16px;
  display:flex;
  justify-content:center;
}

@media (max-width: 1100px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .gallery-grid{ grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testimonial-card{ padding: 16px; }
.stars{ color: var(--brand); letter-spacing:.08em; font-weight: 1000; }
.testimonial-text{ margin: 10px 0 0; color: rgba(255,255,255,.86); }
.testimonial-author{ margin-top: 12px; color: rgba(255,255,255,.78); display:flex; gap:10px; align-items:baseline; }
@media (max-width: 980px){
  .testimonials-grid{ grid-template-columns: 1fr; }
}

/* Menu */
.menu-card{
  padding: 16px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.menu-note{
  width:100%;
  margin: 6px 0 0;
  color: rgba(255,255,255,.75);
  font-weight: 900;
}

/* Dynamic Menu Grid */
.menu-grid-wrap{
  margin-top: 18px;
  padding: 0;
}
.menu-grid-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.menu-grid-title{
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
}
.menu-filters{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.menu-filter{
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.menu-filter.active{
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(184, 147, 45, 0.25));
  color: var(--brand);
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.menu-filter:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.12);
}

@media (max-width: 640px) {
  .menu-filters {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .menu-filters::-webkit-scrollbar{ display:none; }

  .menu-filter {
    padding: 10px 16px;
    font-size: 0.875rem;
    flex: 0 0 auto;
  }
}

.menu-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px){
  .menu-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px){
  .menu-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .menu-grid{ grid-template-columns: 1fr; }
}

.menu-item{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.menu-item-media{
  position: relative;
  height: 170px;
  background: rgba(0,0,0,.25);
}
.menu-item-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.01);
}
.menu-item-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.60), rgba(0,0,0,.05));
}
.menu-item-action{
  position:absolute;
  top: 12px;
  left: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--brand);
  color: #121212;
  font-weight: 1000;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.menu-item-action.inquire{
  width: auto;
  padding: 0 14px;
  border-radius: 999px;
  height: 42px;
}
.menu-item-body{
  padding: 14px 14px 16px;
}
.menu-item-top{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items:baseline;
}
.menu-item-name{
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
}
.menu-item-price{
  font-weight: 1000;
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}
.menu-item-desc{
  margin: 8px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

/* FAQ */
.faq-list{ display:grid; gap: 12px; }
.faq-item{ padding: 0; overflow:hidden; }
.faq-question{
  list-style:none;
  cursor:pointer;
  padding: 16px 16px;
  font-weight: 1000;
}
.faq-question::-webkit-details-marker{ display:none; }
.faq-answer{
  margin:0;
  padding: 0 16px 16px;
  color: rgba(255,255,255,.82);
}

/* Contact */
.active-branch{ padding: 16px; }
.active-branch-head{ display:flex; justify-content:space-between; align-items:flex-end; gap: 10px; flex-wrap: wrap; }
.active-branch-kicker{ margin:0; color: var(--brand); font-weight: 1000; letter-spacing:.06em; }
.active-branch-title{ margin: 6px 0 0; font-size: 22px; font-weight: 1000; }
.active-branch-actions{ margin-top: 12px; display:flex; gap: 10px; flex-wrap:wrap; align-items:center; }
.active-chip{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.active-chip-label{ color: rgba(255,255,255,.72); font-weight: 900; }
.active-chip-value{ font-weight: 1000; }

.active-map{
  margin-top: 14px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.map-load-btn{
  width:100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 0;
  cursor:pointer;
  font-weight: 1000;
}
.active-map-frame{
  width: 100%;
  height: 260px;
  border: 0;
}

.active-branch-hint{
  margin: 12px 0 0;
  color: rgba(255,255,255,.72);
  font-weight: 900;
}

.branch-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.branch-card{ padding: 16px; }
.branch-head{ display:flex; gap: 10px; align-items:center; margin-bottom: 10px; }
.branch-title{ margin:0; font-size: 18px; font-weight: 1000; }
.branch-row{ display:flex; justify-content:space-between; gap: 10px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.10); }
.branch-row:first-of-type{ border-top: 0; }
.branch-label{ color: rgba(255,255,255,.72); font-weight: 900; }
.phone-link, .map-btn{
  color: var(--brand);
  font-weight: 1000;
}
.branch-select{
  margin-top: 10px;
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  font-weight: 1000;
}
.branch-select:hover{ background: rgba(255,255,255,.10); }

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

/* Contact footer */
.contact-footer{
  margin-top: 14px;
  padding: 14px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-chip{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.chip-label{ font-weight: 1000; }
.chip-value{ color: rgba(255,255,255,.75); font-weight: 900; }
.clock-icon{
  color: var(--brand);
  flex: 0 0 auto;
}
.contact-chip .chip-label{
  color: var(--muted);
}
.contact-chip .chip-value{
  color: rgba(255,255,255,.92);
}


/* Page Loader */
.page-loader{
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(135deg, rgba(5,5,5,.95), rgba(10,10,10,.95));
  display:flex;
  align-items:center;
  justify-content:center;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}
.page-loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-spinner{
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 4px solid rgba(255,255,255,.12);
  border-top-color: var(--brand);
  border-right-color: var(--brand);
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 20px rgba(212,175,55,.2);
}
@keyframes spin{
  to{ transform: rotate(360deg);}
}

/* Floating Buttons (WhatsApp + Cart)
   IMPORTANT: force visibility even if some RTL/JS toggles attempt to hide them */
.whatsapp-fab,
.cart-fab{
  position: fixed;
  z-index: 1200;
  display:flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.whatsapp-fab{
  bottom: 18px;
  left: 18px;
  right: auto;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(17,17,17,.86);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.whatsapp-fab:hover{ background: rgba(17,17,17,.92); }
.whatsapp-fab-text{ font-weight: 1000; }

.cart-fab{
  bottom: 18px;
  right: 18px;
  left: auto;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212,175,55,.96), rgba(184,147,45,.96));
  color: #111;
  border: 0;
  box-shadow: var(--shadow);
  cursor:pointer;
}
.cart-fab-label{ font-weight: 1000; }
.cart-count{
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.22);
  color: #111;
  font-weight: 1000;
}

/* Extra hard override if your old code uses body.is-ar or similar */
body.is-ar .whatsapp-fab,
body.is-ar .cart-fab,
html[dir="rtl"] .whatsapp-fab,
html[dir="rtl"] .cart-fab{
  display:flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Cart Modal */
.cart-modal{
  position: fixed;
  inset: 0;
  z-index: 1500;
  display:none;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.cart-modal[aria-hidden="false"]{
  display:block;
  opacity: 1;
}

.cart-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  animation: fadeIn var(--transition-base);
}

.cart-panel{
  position:absolute;
  top: 0;
  inset-inline-end: 0;
  height: 100%;
  width: min(420px, 100%);
  background: linear-gradient(135deg, rgba(10,10,10,.98), rgba(15,15,15,.98));
  border-inline-start: 1px solid rgba(255,255,255,.12);
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: slideInRight var(--transition-base);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

html[dir="rtl"] .cart-panel{
  animation: slideInLeft var(--transition-base);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.cart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
}
.cart-title{ margin:0; font-size: 20px; font-weight: 1000; }
.cart-close{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}
.cart-close:hover{ background: rgba(255,255,255,.10); }

.cart-empty{ margin:0; color: rgba(255,255,255,.75); font-weight: 900; }
.cart-items{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
  overflow:auto;
  flex:1;
}


/* Cart Items (Unified classes used by JS) */
.cart-item{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}
.cart-item-info{
  flex: 1;
  min-width: 0;
  display:flex;
  flex-direction: column;
  gap: 6px;
}
.cart-item-name{
  font-weight: 1000;
  letter-spacing: .2px;
}
.cart-item-meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 900;
}
.cart-item-price{
  color: rgba(255,255,255,.88);
  font-weight: 1000;
}
.cart-item-note{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}
.cart-item-controls{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-shrink: 0;
}
.cart-qty-btn{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  font-weight: 1000;
  transition: transform var(--transition-base), background var(--transition-base);
}
.cart-qty-btn:active{ transform: scale(.98); }
.cart-qty-value{
  min-width: 28px;
  text-align: center;
  font-weight: 1000;
}
.cart-remove-btn{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.88);
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 900;
  transition: background var(--transition-base);
}
.cart-remove-btn:hover{ background: rgba(255,255,255,.06); }

.cart-note, .cart-customer, .cart-summary{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 12px;
}
.cart-note-label, .cart-field-label{
  display:block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
  font-weight: 1000;
}
.cart-note-text, .cart-field-input, .cart-field-textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color:#fff;
  padding: 10px 12px;
  outline:none;
  transition: all var(--transition-fast);
}
.cart-note-text:focus, .cart-field-input:focus, .cart-field-textarea:focus{
  box-shadow: var(--focus);
  border-color: rgba(212,175,55,.5);
}
.cart-field-input:invalid, .cart-field-textarea:invalid{
  border-color: rgba(239,68,68,.4);
}
.cart-field-error{
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--error);
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.cart-field-input:invalid ~ .cart-field-error,
.cart-field-textarea:invalid ~ .cart-field-error{
  opacity: 1;
}

.cart-summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
}
.cart-summary-label{ color: rgba(255,255,255,.78); font-weight: 1000; }
.cart-summary-value{ font-weight: 1000; }

.cart-actions{
  display:flex;
  gap: 10px;
}
.cart-actions .btn{ flex:1; }

.cart-hint{
  margin:0;
  color: rgba(255,255,255,.70);
  font-weight: 900;
}

/* MOBILE CART — ensure the whole panel is scrollable and checkout is reachable */
@media (max-width: 768px){
  .cart-panel{
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }
  .cart-items{
    flex: 0 0 auto;
    max-height: none;
    overflow: visible;
  }
  .cart-actions{
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: rgba(8,8,8,.92);
    backdrop-filter: blur(10px);
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    margin-top: 12px;
  }
  .cart-actions .btn{ min-height: 52px; }
  .cart-hint{ margin-bottom: calc(24px + env(safe-area-inset-bottom)); }
}


/* WhatsApp Confirmation Modal (Pre-Send) — matches Cart UI look */
.wa-confirm-modal{
  position: fixed;
  inset: 0;
  z-index: 1600;
  display:none;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.wa-confirm-modal[aria-hidden="false"]{
  display:block;
  opacity: 1;
}
.wa-confirm-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  animation: fadeIn var(--transition-base);
}
.wa-confirm-panel{
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(520px, 100%);
  max-height: 90dvh;
  background: linear-gradient(135deg, rgba(10,10,10,.98), rgba(15,15,15,.98));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: waConfirmPop var(--transition-base);
}
@keyframes waConfirmPop{
  from { transform: translate(-50%,-48%) scale(.98); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.wa-confirm-body{
  display:flex;
  flex-direction: column;
  gap: 12px;
  overflow:auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.wa-confirm-actions .btn{ min-height: 48px; }

@media (max-width: 768px){
  .wa-confirm-panel{
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    max-height: 92dvh;
    border-radius: 18px 18px 0 0;
    border-left: none;
    border-right: none;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
    animation: waConfirmSheet var(--transition-base);
  }
  @keyframes waConfirmSheet{
    from { transform: translateY(12%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .wa-confirm-actions{
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: rgba(8,8,8,.92);
    backdrop-filter: blur(10px);
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    margin-top: 12px;
  }
  .wa-confirm-actions .btn{ min-height: 52px; }
}



/* Toast */
.toast-container{
  position: fixed;
  top: calc(var(--header-h) + 12px);
  inset-inline-end: 12px;
  z-index: 1700;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

/* RTL tweaks */
html[dir="rtl"] .nav a{ letter-spacing: 0; }
html[dir="rtl"] .section-kicker{ text-transform:none; }

/* Prevent accidental opacity changes on important UI */
#whatsappFab, #cartFab, .gallery-add{
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

/* Scroll to Top Button */
.scroll-top{
  position: fixed;
  bottom: 90px;
  right: 18px;
  left: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17,17,17,.92);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1100;
  box-shadow: var(--shadow);
}
.scroll-top.visible{
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover{
  background: rgba(17,17,17,1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.scroll-top svg{
  width: 24px;
  height: 24px;
  color: var(--brand);
}

/* Fixed inline styles */
.cart-fab-icon { margin-inline-end: 8px; }
.cart-wa-icon { filter: none; }

/* Hide video on mobile to improve performance */
@media (max-width: 767px) {
  .hero-video {
    display: none;
  }
}


/* --- Footer (Directions + rights) --- */
.site-footer{padding:18px 14px;border-top:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.35);backdrop-filter: blur(6px);}
.footer-inner{max-width:1100px;margin:0 auto;display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap;}
.footer-rights{margin:0;color:rgba(255,255,255,.72);font-size:.9rem;}
.footer-direction[aria-disabled="true"]{pointer-events:none;opacity:.6;}



/* Dynamic disabled state for footer direction */
.footer-direction.is-disabled{opacity:.6;pointer-events:none;}

/* ══════════════════════════════════════════════════════════════════════════
   ADDITIONAL ENHANCEMENTS - Professional Production Ready
   - Dynamic Map Container
   - Image Zoom Lightbox
   - Menu Tags (Spicy/Allergens)
   - Branch Selection Active States
   - Enhanced RTL Support
   - Mobile-Optimized Cart
   ══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
   DYNAMIC MAP SECTION
   ───────────────────────────────────────────────────────────────────────── */
.map-container {
  margin-top: 48px;
  margin-bottom: 32px;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--brand);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--card-border);
  margin-bottom: 24px;
}

.branch-map-embed {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 350px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   IMAGE ZOOM LIGHTBOX
   ───────────────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
  cursor: zoom-out;
}

.lightbox-img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--fg);
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.lightbox-close:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: rotate(90deg);
}

[dir="rtl"] .lightbox-close {
  right: auto;
  left: 20px;
}

/* Gallery/Menu images clickable cursor */
.gallery-img,
.menu-item-img {
  cursor: zoom-in;
  transition: transform var(--transition-base);
}

.gallery-img:hover,
.menu-item-img:hover {
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────────────────────
   MENU TAGS (Spicy & Allergens)
   ───────────────────────────────────────────────────────────────────────── */
.menu-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

[dir="rtl"] .menu-tags {
  left: auto;
  right: 12px;
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.menu-tag:hover {
  transform: scale(1.05);
}

.menu-tag-spicy {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
  color: #fff;
}

.menu-tag-allergen {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(245, 158, 11, 0.9));
  color: #000;
}

/* ─────────────────────────────────────────────────────────────────────────
   BRANCH SELECTION ACTIVE STATES
   ───────────────────────────────────────────────────────────────────────── */
.branch-select {
  margin-top: 16px;
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--card), var(--card-hover));
  border: 2px solid var(--card-border);
  color: var(--fg);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.branch-select::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.3;
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow), height var(--transition-slow);
}

.branch-select:hover::before {
  width: 300px;
  height: 300px;
}

.branch-select:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.branch-card.active .branch-select,
.branch-card[data-branch].active .branch-select {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-color: var(--brand);
  color: #000;
  font-weight: 700;
}

.branch-card.active,
.branch-card[data-branch].active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand), var(--shadow);
}

/* ─────────────────────────────────────────────────────────────────────────
   ENHANCED RTL SUPPORT
   ───────────────────────────────────────────────────────────────────────── */
[dir="rtl"] .hero-scroll svg,
[dir="rtl"] .scroll-top svg {
  transform: rotate(0deg);
}

[dir="rtl"] .cart-fab-icon,
[dir="rtl"] .wa-ico-new {
  margin-inline-end: 8px;
  margin-inline-start: 0;
}

[dir="rtl"] .cart-item-controls {
  flex-direction: row-reverse;
}

[dir="rtl"] .menu-item-actions {
  left: auto;
  right: 0;
}

[dir="rtl"] .active-branch-info {
  flex-wrap: wrap;
}

/* Ensure icons in RTL are properly positioned */
[dir="rtl"] .nav-icon {
  margin-inline-end: 8px;
  margin-inline-start: 0;
}

.nav-icon-svg { color: var(--brand); }


[dir="rtl"] .btn .nav-icon {

  margin-inline-end: 10px;
  margin-inline-start: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   MOBILE CART ENHANCEMENTS
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cart-panel{
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .cart-items{
    max-height: none;
    overflow: visible;
    flex: 0 0 auto;
  }

  .cart-actions{
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: rgba(8,8,8,.92);
    backdrop-filter: blur(10px);
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    margin-top: 12px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cart-item-controls {
    width: 100%;
    justify-content: space-between;
  }

  .cart-customer {
    gap: 16px;
  }

  .cart-field-input,
  .cart-field-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   TOAST ENHANCEMENTS
   ───────────────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  text-align: center;
  min-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ─────────────────────────────────────────────────────────────────────────
   PULSE ANIMATION FOR CART FAB
   ───────────────────────────────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.cart-fab.pulse {
  animation: pulse 0.5s ease;
}

/* ─────────────────────────────────────────────────────────────────────────
   FADE-IN ANIMATION
   ───────────────────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand);
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

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

/* Focus visible for better keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  box-shadow: var(--focus);
}


/* ─────────────────────────────────────────────────────────────────────────
   MAP MODAL (PERFORMANCE: LOAD IFRAME ON DEMAND)
   ───────────────────────────────────────────────────────────────────────── */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}
.modal.is-open{ display: flex; }
.modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(6px);
}
.modal-panel{
  position: relative;
  width: min(980px, 100%);
  max-height: min(86vh, 860px);
  background: rgba(14,14,16,.92);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  overflow: hidden;
  display:flex;
  flex-direction: column;
}
.modal-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.modal-title{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
}
.modal-header-actions{ display:flex; align-items:center; gap: 10px; }
.modal-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  transition: all var(--transition-base);
}
.modal-close:hover{ transform: translateY(-1px); background: rgba(255,255,255,.12); }
.modal-body{ padding: 0; flex: 1; }
.modal-iframe{
  width: 100%;
  height: 100%;
  min-height: 60vh;
  border: 0;
  display: block;
  background: rgba(0,0,0,.35);
}

/* Map callout card */
.map-callout{
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.map-callout-text{ min-width: 240px; }
.map-subtitle{ margin: 6px 0 0; color: rgba(255,255,255,.78); }

/* ─────────────────────────────────────────────────────────────────────────
   BRANCH CARDS: OPEN NOW INDICATOR + ACTIONS
   ───────────────────────────────────────────────────────────────────────── */
.branch-name{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}
.branch-status-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
}
.branch-status-text{
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
}
.branch-card.is-open .branch-status-dot{
  background: rgba(46, 204, 113, .95);
  animation: statusPulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 10px rgba(46, 204, 113, 0.0);
}
.branch-card.is-open .branch-status-text{
  border-color: rgba(46, 204, 113, .35);
  background: rgba(46, 204, 113, .14);
}
.branch-card.is-closed .branch-status-dot{
  background: rgba(231, 76, 60, .95);
}
.branch-card.is-closed .branch-status-text{
  border-color: rgba(231, 76, 60, .35);
  background: rgba(231, 76, 60, .12);
}

@keyframes statusPulse{
  0%{ box-shadow: 0 0 0 0 rgba(46, 204, 113, .40); }
  70%{ box-shadow: 0 0 0 14px rgba(46, 204, 113, 0.0); }
  100%{ box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.0); }
}

.branch-desc{
  margin: 0 0 10px;
  color: rgba(255,255,255,.80);
}

.branch-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.branch-actions::-webkit-scrollbar{
  height: 6px;
}
.branch-actions::-webkit-scrollbar-thumb{
  background: rgba(212,175,55,.25);
  border-radius: 999px;
}
.branch-actions::-webkit-scrollbar-track{
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}

/* Premium hover glow for branch actions */
.branch-actions .btn{
  flex: 0 0 auto;
  white-space: nowrap;
}
.branch-actions .btn:hover{
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 0 0 1px rgba(212,175,55,.20), 0 12px 26px rgba(212,175,55,.22);
}

.branch-map-btn{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor:pointer;
  transition: all var(--transition-base);
}
.branch-map-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

/* Active chips: allow button look */
.active-chip{
  cursor: pointer;
}
.active-chip.is-muted{
  opacity: .72;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────────────
   MENU: BADGES + INLINE STEPPER + HOVER ZOOM + SKELETON
   ───────────────────────────────────────────────────────────────────────── */
.menu-item:hover .menu-item-media img{
  transform: scale(1.06);
  transition: transform var(--transition-base);
}

.menu-tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-tag{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.menu-tag.menu-tag-spicy{ border-color: rgba(255, 99, 71, .35); }
.menu-tag.menu-tag-bestseller{ border-color: rgba(212,175,55,.35); }
.menu-tag.menu-tag-allergen{ border-color: rgba(255,255,255,.20); }

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

.menu-stepper{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
}
.menu-stepper-btn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  transition: all var(--transition-base);
}
.menu-stepper-btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }
.menu-stepper-qty{
  min-width: 18px;
  text-align:center;
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

/* Skeleton shimmer for images */
.skeleton{
  position: relative;
  overflow:hidden;
  background: rgba(255,255,255,.06);
}
.skeleton::after{
  content:"";
  position:absolute;
  inset:0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.14), rgba(255,255,255,0));
  animation: shimmer 1.2s ease-in-out infinite;
}
@keyframes shimmer{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(120%); }
}
.menu-item-media.is-loading img{ opacity: 0; }
.menu-item-media.is-loading::after{ display:none; }

/* Story card to match owner card feel */
.story-card{
  padding: 14px;
  border-radius: 22px;
}
.story-card .story-grid{
  gap: 14px;
}


/* Cart item notes */
.cart-item-note{
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.92);
  resize: vertical;
}
.cart-item-note:focus{
  outline: none;
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

/* ─────────────────────────────────────────────────────────────────────────
   PRINT STYLES
   ───────────────────────────────────────────────────────────────────────── */
@media print {
  .site-header,
  .whatsapp-fab,
  .cart-fab,
  .scroll-top,
  .cart-modal,
  .lightbox,
  .menu-item-actions {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* END OF ENHANCEMENTS */

/* ══════════════════════════════════════════════════════════════════════════
   UPDATED QUOTE STYLING - Professional Brand Identity
   ══════════════════════════════════════════════════════════════════════════ */

/* Story Quote - Closing Quote Styling */
.story-quote {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--brand);
  line-height: 1.8;
  margin-top: 32px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 2px solid rgba(201, 162, 77, 0.3);
  position: relative;
  font-weight: 600;
}

.story-quote::before {
  content: '❝';
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 2.5rem;
  color: var(--brand-2);
  opacity: 0.4;
  line-height: 1;
}

[dir="rtl"] .story-quote::before {
  left: auto;
  right: 0;
}

/* Owner Quote - Refined Styling */
.owner-quote {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--brand);
  line-height: 1.8;
  margin-top: 32px;
  margin-bottom: 0;
  padding: 24px 0;
  border-top: 2px solid rgba(201, 162, 77, 0.3);
  position: relative;
  font-weight: 600;
}

.owner-quote::before {
  content: '❝';
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 2.5rem;
  color: var(--brand-2);
  opacity: 0.4;
  line-height: 1;
}

[dir="rtl"] .owner-quote::before {
  left: auto;
  right: 0;
}

/* Owner Section - New Title & Subtitle */
.owner-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  line-height: 1.3;
}

.owner-subtitle {
  font-size: 1.125rem;
  color: var(--brand-2);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 500;
}

.owner-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-top: 24px;
  margin-bottom: 8px;
}

.owner-role {
  font-size: 1rem;
  color: var(--brand-2);
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.owner-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Responsive Quote Adjustments */
@media (max-width: 768px) {
  .story-quote,
  .owner-quote {
    font-size: 1rem;
    padding-top: 20px;
    margin-top: 24px;
  }
  
  .story-quote::before,
  .owner-quote::before {
    font-size: 2rem;
    top: -6px;
  }
  
  .owner-title {
    font-size: 1.5rem;
  }
  
  .owner-subtitle {
    font-size: 1rem;
  }
  
  .owner-name {
    font-size: 1.25rem;
  }
}

/* Light Background Sections (Optional Enhancement) */
/* ══════════════════════════════════════════════════════════════════════════
   STORY & OWNER SECTIONS - ENHANCED LUXURY DESIGN
   ══════════════════════════════════════════════════════════════════════════ */

.story-section,
.owner-section {
  position: relative;
  background: linear-gradient(180deg, rgba(5, 5, 5, 1) 0%, rgba(15, 12, 8, 1) 100%);
}

.story-section::before,
.owner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(201, 162, 77, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.story-section .container,
.owner-section .container {
  position: relative;
  z-index: 1;
}

/* Story & Owner Content Cards - Enhanced with Animations */
.story-content.card,
.owner-content.card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.95));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--brand), var(--brand-2)) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(201, 162, 77, 0.1);
  position: relative;
  overflow: hidden;
  padding: 48px;
  margin-top: 48px;
  transition: all var(--transition-base);
}

.story-content.card::before,
.owner-content.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.story-content.card:hover,
.owner-content.card:hover {
  transform: translateY(-4px);
  border-image: linear-gradient(135deg, var(--brand-2), var(--brand)) 1;
  box-shadow: 0 16px 48px rgba(201, 162, 77, 0.25),
              0 8px 32px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(201, 162, 77, 0.2);
}

/* Story & Owner Text Content */
.story-text p,
.owner-text p {
  font-size: 1.125rem;
  line-height: 2;
  color: #E5E5E5;
  margin-bottom: 28px;
  text-align: justify;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Story & Owner Quotes - Luxury Styling */
.story-quote,
.owner-quote {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--brand-2);
  font-style: italic;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 32px 0;
  text-align: center;
  position: relative;
  font-weight: 600;
  border-top: 1px solid rgba(201, 162, 77, 0.2);
  border-bottom: 1px solid rgba(201, 162, 77, 0.2);
  letter-spacing: 0.5px;
}

.story-quote::before,
.owner-quote::before {
  content: '❝';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--brand);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
  font-style: normal;
}



/* Owner Founder Image Layout (Image + Text) */
.owner-grid{
  display: grid;
  grid-template-areas: "media text";
  gap: 36px;
  align-items: start;
}
.owner-media{ grid-area: media; }
.owner-text{ grid-area: text; }

html[dir="ltr"] .owner-grid{
  grid-template-columns: minmax(260px, 360px) 1fr;
  grid-template-areas: "media text";
}

html[dir="rtl"] .owner-grid{
  grid-template-columns: 1fr minmax(260px, 360px);
  grid-template-areas: "text media";
}

.owner-photo-founder{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px){
  .owner-grid{
    grid-template-columns: 1fr !important;
    grid-template-areas: "media" "text" !important;
    gap: 22px;
  }
  .owner-photo-founder{
    max-width: 520px;
    margin-inline: auto;
  }
}
/* Owner Name & Role */
.owner-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(201, 162, 77, 0.3);
}

.owner-role {
  font-size: 1.125rem;
  color: var(--brand-2);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Decorative Background Pattern */
.story-content.card::after,
.owner-content.card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.05), transparent 70%);
  pointer-events: none;
  transition: all var(--transition-slow);
}

.story-content.card:hover::after,
.owner-content.card:hover::after {
  bottom: -30px;
  right: -30px;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .story-content.card,
  .owner-content.card {
    padding: 32px 24px;
  }
  
  .story-text p,
  .owner-text p {
    font-size: 1rem;
    line-height: 1.8;
    text-align: start;
  }
  
  .story-quote,
  .owner-quote {
    font-size: 1.25rem;
    padding: 24px 0;
    margin-top: 28px;
  }
  
  .story-quote::before,
  .owner-quote::before {
    font-size: 3rem;
    top: -16px;
  }
  
  .owner-name {
    font-size: 1.625rem;
  }
  
  .owner-role {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

/* Print Optimization */
@media print {
  .story-content.card,
  .owner-content.card {
    border: 2px solid #C9A24D;
    box-shadow: none;
    page-break-inside: avoid;
  }
  
  .story-content.card::before,
  .story-content.card::after,
  .owner-content.card::before,
  .owner-content.card::after {
    display: none;
  }
}

.story-section,
.owner-section {
  position: relative;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(201, 162, 77, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.story-section .container,
.owner-section .container {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════════════════════════
   ENHANCED TESTIMONIALS - GOLDEN BRAND IDENTITY
   ══════════════════════════════════════════════════════════════════════════ */

/* Testimonials Section Enhanced */
.testimonials-section {
  position: relative;
  background: linear-gradient(180deg, rgba(5, 5, 5, 1) 0%, rgba(15, 12, 8, 1) 100%);
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(201, 162, 77, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

/* Testimonial Cards - Enhanced */
.testimonial.card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.95));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--brand), var(--brand-2)) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(201, 162, 77, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.testimonial.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.testimonial.card:hover {
  transform: translateY(-8px);
  border-image: linear-gradient(135deg, var(--brand-2), var(--brand)) 1;
  box-shadow: 0 16px 48px rgba(201, 162, 77, 0.25),
              0 8px 32px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(201, 162, 77, 0.2);
}

/* Stars Enhanced */
.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(201, 162, 77, 0.3));
  letter-spacing: 4px;
  animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
  0% { filter: drop-shadow(0 2px 4px rgba(201, 162, 77, 0.3)); }
  100% { filter: drop-shadow(0 2px 8px rgba(201, 162, 77, 0.6)); }
}

/* Testimonial Text Enhanced */
.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #E5E5E5;
  margin-bottom: 24px;
  position: relative;
  padding: 0 8px;
  text-align: center;
  font-weight: 400;
}

.testimonial-text::before {
  content: '❝';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--brand);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}

/* Author Section Enhanced */
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 162, 77, 0.2);
  position: relative;
}

.testimonial-author::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.testimonial-author strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.5px;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--brand-2);
  font-weight: 500;
}

/* Testimonials Grid Enhanced */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* Decorative Background Pattern */
.testimonial.card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.05), transparent 70%);
  pointer-events: none;
  transition: all var(--transition-slow);
}

.testimonial.card:hover::after {
  bottom: -30px;
  right: -30px;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testimonial-stars {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonial-text::before {
    font-size: 2.5rem;
    top: -12px;
  }
  
  .testimonial-author strong {
    font-size: 1rem;
  }
}

/* Print Optimization */
@media print {
  .testimonial.card {
    border: 2px solid #C9A24D;
    box-shadow: none;
    page-break-inside: avoid;
  }
  
  .testimonial.card::before,
  .testimonial.card::after {
    display: none;
  }
}


/* ══════════════════════════════════════════════════════════════════════════
   ENHANCED ANIMATIONS - GOLDEN LUXURY EFFECTS
   Applied to: Story Section, Owner Section, Menu Items
   ══════════════════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STORY SECTION - ENHANCED (Grid Layout like Owner)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.story-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.95));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--brand), var(--brand-2)) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(201, 162, 77, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

/* Animated Golden Top Border */
.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Hover Effect */
.story-card:hover {
  transform: translateY(-8px);
  border-image: linear-gradient(135deg, var(--brand-2), var(--brand)) 1;
  box-shadow: 0 16px 48px rgba(201, 162, 77, 0.25),
              0 8px 32px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(201, 162, 77, 0.2);
}

/* Story Media */
.story-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.story-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  transition: transform var(--transition-base);
}

.story-card:hover .story-media img {
  transform: scale(1.05);
}

/* Story Content */
.story-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  line-height: 1.3;
}

.story-subtitle {
  font-size: 1.125rem;
  color: var(--brand-2);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 500;
}

.story-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Decorative Background Pattern */
.story-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.05), transparent 70%);
  pointer-events: none;
  transition: all var(--transition-slow);
}

.story-card:hover::after {
  bottom: -30px;
  right: -30px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
  .story-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .story-title {
    font-size: 1.5rem;
  }
  
  .story-subtitle {
    font-size: 1rem;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OWNER SECTION - ENHANCED
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.owner-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.95));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--brand), var(--brand-2)) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(201, 162, 77, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

/* Animated Golden Top Border */
.owner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* Hover Effect */
.owner-card:hover {
  transform: translateY(-8px);
  border-image: linear-gradient(135deg, var(--brand-2), var(--brand)) 1;
  box-shadow: 0 16px 48px rgba(201, 162, 77, 0.25),
              0 8px 32px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(201, 162, 77, 0.2);
}

/* Decorative Background Pattern */
.owner-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.05), transparent 70%);
  pointer-events: none;
  transition: all var(--transition-slow);
}

.owner-card:hover::after {
  bottom: -30px;
  left: -30px;
  opacity: 0.8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MENU ITEMS - ENHANCED
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.menu-item.card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.95));
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--brand), var(--brand-2)) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(201, 162, 77, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

/* Animated Golden Top Border */
.menu-item.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* Hover Effect */
.menu-item.card:hover {
  transform: translateY(-8px);
  border-image: linear-gradient(135deg, var(--brand-2), var(--brand)) 1;
  box-shadow: 0 16px 48px rgba(201, 162, 77, 0.25),
              0 8px 32px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(201, 162, 77, 0.2);
}

/* Decorative Background Pattern */
.menu-item.card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.05), transparent 70%);
  pointer-events: none;
  transition: all var(--transition-slow);
}

.menu-item.card:hover::after {
  bottom: -30px;
  right: -30px;
  opacity: 0.8;
}

/* Menu Image Hover */
.menu-item .menu-img-wrapper {
  position: relative;
  overflow: hidden;
}

.menu-item .menu-img {
  transition: transform var(--transition-base);
}

.menu-item:hover .menu-img {
  transform: scale(1.1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT CHIPS - ENHANCED
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 162, 77, 0.2);
}

.contact-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(15, 15, 15, 0.8));
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: var(--radius);
  transition: all var(--transition-base);
}

.contact-chip:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 8px 16px rgba(201, 162, 77, 0.2);
}

.contact-chip .chip-label {
  font-size: 0.875rem;
  color: var(--brand-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-chip .chip-value {
  font-size: 1rem;
  color: var(--fg);
  font-weight: 700;
}

.contact-chip .chip-value:hover {
  color: var(--brand);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-footer {
    flex-direction: column;
    gap: 12px;
  }
  
  .contact-chip {
    width: 100%;
    max-width: 360px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RTL ADJUSTMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

[dir="rtl"] .story-card::after,
[dir="rtl"] .owner-card::after,
[dir="rtl"] .menu-item.card::after {
  right: auto;
  left: -50px;
}

[dir="rtl"] .story-card:hover::after,
[dir="rtl"] .owner-card:hover::after,
[dir="rtl"] .menu-item.card:hover::after {
  right: auto;
  left: -30px;
}


/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION ICONS - LUXURY ENHANCEMENTS (Level 3)
   ══════════════════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BASE ICON STYLING
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(77%) sepia(18%) saturate(1234%) hue-rotate(358deg) brightness(93%) contrast(88%);
  /* Golden color filter: #C9A24D */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION LINK ENHANCEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

nav a {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Circular Background on Hover */
nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, 
    rgba(201, 162, 77, 0.15), 
    rgba(216, 184, 115, 0.08)
  );
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Shimmer Effect Background */
nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 162, 77, 0.3) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  border-radius: 50%;
  opacity: 0;
  animation: navShimmer 2s linear infinite;
  z-index: 0;
}

@keyframes navShimmer {
  0% { background-position: -200% 0; opacity: 0; }
  50% { opacity: 1; }
  100% { background-position: 200% 0; opacity: 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOVER EFFECTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

nav a:hover {
  transform: translateY(-4px);
}

nav a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(201, 162, 77, 0.4),
              0 0 40px rgba(201, 162, 77, 0.2);
}

nav a:hover::after {
  opacity: 1;
}

nav a:hover .nav-icon {
  transform: rotate(15deg) scale(1.15);
  filter: brightness(0) saturate(100%) invert(77%) sepia(18%) saturate(1234%) hue-rotate(358deg) brightness(110%) contrast(95%);
  /* Brighter golden on hover */
  drop-shadow(0 0 8px rgba(201, 162, 77, 0.8))
  drop-shadow(0 0 12px rgba(201, 162, 77, 0.4));
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PULSE ANIMATION (Subtle Breathing Effect)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1);
    filter: brightness(0) saturate(100%) invert(77%) sepia(18%) saturate(1234%) hue-rotate(358deg) brightness(93%) contrast(88%);
  }
  50% { 
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(77%) sepia(18%) saturate(1234%) hue-rotate(358deg) brightness(100%) contrast(90%);
  }
}

nav a .nav-icon {
  animation: iconPulse 3s ease-in-out infinite;
}

nav a:hover .nav-icon {
  animation: none; /* Stop pulse on hover */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACTIVE STATE (Current Page)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

nav a.active,
nav a[aria-current="page"] {
  position: relative;
}

nav a.active::before,
nav a[aria-current="page"]::before {
  opacity: 1;
  background: radial-gradient(circle, 
    rgba(201, 162, 77, 0.25), 
    rgba(216, 184, 115, 0.15)
  );
  box-shadow: 0 0 16px rgba(201, 162, 77, 0.3);
}

nav a.active .nav-icon,
nav a[aria-current="page"] .nav-icon {
  filter: brightness(0) saturate(100%) invert(77%) sepia(18%) saturate(1234%) hue-rotate(358deg) brightness(110%) contrast(95%);
  drop-shadow(0 0 6px rgba(201, 162, 77, 0.6));
  animation: none;
}

/* Active Indicator Line */
nav a.active::after,
nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--brand), 
    transparent
  );
  border-radius: 2px;
  opacity: 1;
  animation: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LANGUAGE TOGGLE BUTTON ENHANCEMENT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.lang-toggle {
  position: relative;
  padding: 8px 16px;
  background: linear-gradient(135deg, 
    rgba(20, 20, 20, 0.8), 
    rgba(15, 15, 15, 0.8)
  );
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 24px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.lang-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(201, 162, 77, 0.2), 
    transparent
  );
  transition: left 0.6s ease;
}

.lang-toggle:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 8px 16px rgba(201, 162, 77, 0.3),
              0 0 20px rgba(201, 162, 77, 0.2);
  color: var(--fg);
  background: linear-gradient(135deg, 
    rgba(201, 162, 77, 0.15), 
    rgba(216, 184, 115, 0.1)
  );
}

.lang-toggle:hover::before {
  left: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE MENU BUTTON ENHANCEMENT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.menu-toggle {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(20, 20, 20, 0.8), 
    rgba(15, 15, 15, 0.8)
  );
  border: 1px solid rgba(201, 162, 77, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 8px 16px rgba(201, 162, 77, 0.3);
  background: linear-gradient(135deg, 
    rgba(201, 162, 77, 0.15), 
    rgba(216, 184, 115, 0.1)
  );
}

.menu-toggle span {
  background-color: var(--brand);
  transition: all 0.3s ease;
}

.menu-toggle:hover span {
  background-color: var(--brand-2);
  box-shadow: 0 0 8px rgba(201, 162, 77, 0.6);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE ADJUSTMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
  nav a::before,
  nav a::after {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  nav a:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .nav-icon {
    width: 22px;
    height: 22px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RTL SUPPORT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

[dir="rtl"] nav a::before,
[dir="rtl"] nav a::after {
  left: auto;
  right: 8px;
}

[dir="rtl"] nav a:hover .nav-icon {
  transform: rotate(-15deg) scale(1.15);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACCESSIBILITY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (prefers-reduced-motion: reduce) {
  nav a .nav-icon {
    animation: none;
  }
  
  nav a::after {
    animation: none;
  }
  
  nav a,
  nav a::before,
  .nav-icon,
  .lang-toggle,
  .menu-toggle {
    transition: none;
  }
}

/* Focus Visible for Keyboard Navigation */
nav a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

nav a:focus-visible .nav-icon {
  filter: brightness(0) saturate(100%) invert(77%) sepia(18%) saturate(1234%) hue-rotate(358deg) brightness(110%) contrast(95%);
  drop-shadow(0 0 8px rgba(201, 162, 77, 0.8));
}



/* ─────────────────────────────────────────────────────────────
   CLS FIXES (Lighthouse 2025-12-21)
   Reserve space for fixed header from first paint
───────────────────────────────────────────────────────────── */
.site-header{
  height: var(--header-h);
}
main#main{
  padding-top: var(--header-h);
}
section[id]{
  scroll-margin-top: calc(var(--header-h) + 16px);
}
html{
  scrollbar-gutter: stable;
}
/* Reduce hero CTA layout shifts due to font swap / translation */
.hero-ctas{
  min-height: 56px;
}
.hero-ctas .btn,
.hero-ctas a,
.hero-ctas button{
  min-height: 52px;
}


/* ============ Menu skeleton ============ */
.menu-card.skeleton{pointer-events:none}
.skeleton-box{min-height:160px;border-radius:16px;background:rgba(255,255,255,.06)}
.skeleton-line{height:12px;border-radius:999px;background:rgba(255,255,255,.06);margin-top:10px}
.skeleton-line.w-70{width:70%}
.skeleton-line.w-40{width:40%}

/* ==========================================================================
   CART — Delivery/Pickup toggle + item notes (Vanilla, no dependencies)
   ========================================================================== */

.cart-order-type{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  margin: 0 0 10px;
  border: 1px solid rgba(255,215,0,.16);
  background: rgba(0,0,0,.35);
  border-radius: 14px;
}

.order-type-tab{
  appearance: none;
  border: 1px solid rgba(255,215,0,.22);
  background: rgba(0,0,0,.55);
  color: inherit;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1;
  min-height: 44px;
  cursor: pointer;
}

.order-type-tab.active{
  border-color: rgba(255,215,0,.55);
  background: linear-gradient(180deg, rgba(255,215,0,.18), rgba(0,0,0,.55));
  box-shadow: 0 0 0 2px rgba(255,215,0,.10) inset;
}

.cart-field[hidden],
#mapLinkField[hidden]{
  display: none !important;
}

.cart-item-note{
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,215,0,.18);
  background: rgba(0,0,0,.38);
  color: inherit;
  font-size: .92rem;
}

.cart-item-note::placeholder{
  color: rgba(255,255,255,.55);
}

/* ==========================================================================
   BRANCH STATUS — Pulsing green dot for open, grey for closed
   ========================================================================== */

.branch-status{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,215,0,.12);
  background: rgba(0,0,0,.28);
}

.status-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(160,160,160,.9);
  box-shadow: 0 0 0 3px rgba(160,160,160,.18);
}

.branch-card.is-open .status-dot{
  background: rgba(40, 210, 110, 1);
  box-shadow: 0 0 0 6px rgba(40,210,110,.18);
  animation: pulseGreen 1.3s ease-in-out infinite;
}

.branch-card.is-closed .status-dot{
  background: rgba(160,160,160,.9);
  box-shadow: 0 0 0 6px rgba(160,160,160,.14);
  animation: none;
}

.branch-status-text{
  font-weight: 700;
  font-size: .95rem;
}

@keyframes pulseGreen{
  0%   { transform: scale(1);   box-shadow: 0 0 0 6px rgba(40,210,110,.16); }
  50%  { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(40,210,110,.08); }
  100% { transform: scale(1);   box-shadow: 0 0 0 6px rgba(40,210,110,.16); }
}

/* ==========================================================================
   MENU — Skeleton loading while menu.json is loading
   ========================================================================== */

.menu-skeleton{
  position: relative;
  overflow: hidden;
}

.menu-skeleton::after{
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.08) 30%,
    rgba(255,255,255,.14) 50%,
    rgba(255,255,255,.08) 70%,
    transparent 100%
  );
  animation: shimmer 1.1s linear infinite;
}

@keyframes shimmer{
  to { transform: translateX(120%); }
}

.skeleton-block{
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}

.skeleton-media{
  height: 170px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  margin-bottom: 12px;
}

.skeleton-line{
  height: 14px;
  margin: 8px 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.skeleton-line.short{ width: 55%; }
.skeleton-line.long{ width: 85%; }

/* ==========================================================================
   MOBILE UX — Bigger tap targets + keep FAB away from Cart
   ========================================================================== */

@media (max-width: 640px){
  .btn,
  .nav-btn,
  .menu-filter,
  .branch-select,
  .cart-qty-btn,
  .cart-remove-btn,
  .order-type-tab{
    min-height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  /* لا نسمح لزر واتساب العائم أن يغطي السلة */
  body.modal-open #whatsappFab{
    display: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Mobile UX fixes
   ───────────────────────────────────────────────────────────────────────── */

/* Avoid FABs covering the last content on small screens */
@media (max-width: 768px){
  #main{
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  /* Prevent iOS Safari input zoom (must be >= 16px) */
  .cart-field-input,
  .cart-item-note,
  .cart-note-text{
    font-size: 16px;
  }
}

/* Hide floating buttons when cart is open (reduce overlap) */
body.cart-open .whatsapp-fab,
body.cart-open .cart-fab{
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(16px);
}

/* Location helper button inside cart */
.btn-locate{
  width: 100%;
  margin-top: 8px;
}
.btn-locate.is-loading{
  opacity: .75;
  cursor: progress;
}
/* Order Confirmation (Pre-WhatsApp) */
.confirm-modal{
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.confirm-modal[aria-hidden="false"]{
  display: block;
  opacity: 1;
}
.confirm-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  animation: fadeIn var(--transition-base);
}
.confirm-panel{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 24px));
  max-height: min(80dvh, 720px);
  background: rgba(20,20,20,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  display:flex;
  flex-direction: column;
  overflow: hidden;
}
.confirm-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.confirm-title{
  font-weight: 1000;
  font-size: 16px;
}
.confirm-close{
  width: 38px;
  height: 38px;
  border-radius: 14px;
}
.confirm-body{
  padding: 12px 14px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.confirm-footer{
  display:flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.confirm-footer .btn{ flex: 1; }

body.confirm-open{ overflow: hidden; }

.confirm-meta{
  display:grid;
  gap: 10px;
  margin-bottom: 12px;
}
.confirm-row{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}
.confirm-row .label{
  color: rgba(255,255,255,.72);
  font-weight: 900;
}
.confirm-row .value{
  font-weight: 1000;
  text-align: end;
}
.confirm-items{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.confirm-total{
  margin-top: 12px;
}

.confirm-hint{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

@media (max-width: 720px){
  .confirm-panel{
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    max-height: 92dvh;
    border-radius: 18px 18px 0 0;
  }
  .confirm-footer{
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
}



/* ─────────────────────────────────────────────────────────────────────────
   Launch Candidate UI additions (no inline styles; brand vars only)
   ───────────────────────────────────────────────────────────────────────── */
.hero-trust{
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}
.branch-actions{
  display:flex;
  gap:10px;
  margin: 12px 0 10px;
  flex-wrap: wrap;
}
.branch-actions .btn{
  flex:1 1 160px;
  justify-content:center;
}
.branch-address{
  color: var(--muted);
  margin-top: 8px;
}
.branch-address strong{
  color: var(--fg);
  font-weight: 700;
}
.branch-modal-actions{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.branch-modal-actions .btn{
  flex: 1 1 220px;
  justify-content: center;
}
.wa-success-message{
  width: 100%;
  min-height: 140px;
  resize: none;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--fg);
  border-radius: 12px;
  padding: 12px;
  line-height: 1.5;
}
.wa-success-footer{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}
.wa-success-footer .btn{
  flex: 1 1 180px;
  justify-content:center;
}
.menu-item-media{
  aspect-ratio: 4 / 3;
}


.offline-card{
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
}
.offline-card h1{ margin-top: 0; }
.offline-card h2{ margin-bottom: 6px; }
.offline-actions{
  margin-top: 16px;
  display:flex;
  justify-content:center;
}

/* Branch select CTA */
.branch-select.btn{
  width: 100%;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════
   🆕 INTENT-BASED ORDER HEADER (Pills: توصيل / استلام)
   ═══════════════════════════════════════════════════════════════════════ */
.order-intent-section {
  padding: 0;
  margin: 0;
  background: var(--bg);
}

.order-intent-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 20px var(--pad);
  margin-bottom: -12px;
}

.order-intent-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition-base);
  touch-action: manipulation;
}

.order-intent-pill:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.order-intent-pill.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.35);
}

.order-intent-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

@media (max-width: 640px) {
  .order-intent-pills {
    flex-direction: column;
    padding: 16px var(--pad);
  }
  
  .order-intent-pill {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   🆕 FLOATING ACTION CART (FAC)
   ═══════════════════════════════════════════════════════════════════════ */
.floating-cart {
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + 90px);
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  padding-left: 12px;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid var(--brand);
  border-radius: 999px;
  box-shadow: 0 12px 48px rgba(201, 162, 77, 0.3), 0 0 0 1px rgba(201, 162, 77, 0.2);
  backdrop-filter: blur(20px);
  max-width: calc(100vw - 32px);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: all;
}

.floating-cart[aria-hidden="false"] {
  transform: translateX(-50%) translateY(0);
  animation: floatingCartSlideUp 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes floatingCartSlideUp {
  from {
    transform: translateX(-50%) translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.floating-cart-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fg);
}

.floating-cart-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: var(--brand);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  animation: floatingCartPulse 500ms ease;
}

@keyframes floatingCartPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.floating-cart-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}

.floating-cart-total {
  font-weight: 900;
  font-size: 18px;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.floating-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--brand);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-fast);
  touch-action: manipulation;
  white-space: nowrap;
}

.floating-cart-btn:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.4);
}

.floating-cart-btn:active {
  transform: translateY(0);
}

/* Desktop adjustments */
@media (min-width: 981px) {
  .floating-cart {
    bottom: 32px;
  }
}

/* Hide on Desktop if bottom nav is not shown */
@media (min-width: 981px) {
  .floating-cart {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   🆕 PREMIUM BOTTOM NAVIGATION (Mobile Only)
   ═══════════════════════════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  display: none;
  background: rgba(5, 5, 5, 0.88);
  border-top: 1px solid var(--brand);
  backdrop-filter: blur(20px);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

.bottom-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brand) 50%, 
    transparent 100%
  );
}

@media (max-width: 980px) {
  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Adjust main content to account for bottom nav */
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
}

.bottom-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
  touch-action: manipulation;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
}

.bottom-nav-item:active {
  background: rgba(255, 255, 255, 0.06);
  transform: scale(0.95);
}

.bottom-nav-item:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(201, 162, 77, 0.3);
}

.bottom-nav-icon {
  width: 24px;
  height: 24px;
  stroke: var(--muted);
  transition: all var(--transition-fast);
}

.bottom-nav-item:active .bottom-nav-icon {
  stroke: var(--brand);
  transform: translateY(-2px);
}

.bottom-nav-badge {
  position: absolute;
  top: 6px;
  right: 50%;
  transform: translateX(16px);
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.4);
  animation: bottomNavBadgePulse 2s ease-in-out infinite;
}

@keyframes bottomNavBadgePulse {
  0%, 100% {
    transform: translateX(16px) scale(1);
  }
  50% {
    transform: translateX(16px) scale(1.1);
  }
}

/* RTL adjustments */
[dir="rtl"] .bottom-nav-badge {
  right: auto;
  left: 50%;
  transform: translateX(-16px);
}

@keyframes bottomNavBadgePulseRTL {
  0%, 100% {
    transform: translateX(-16px) scale(1);
  }
  50% {
    transform: translateX(-16px) scale(1.1);
  }
}

[dir="rtl"] .bottom-nav-badge {
  animation: bottomNavBadgePulseRTL 2s ease-in-out infinite;
}

/* Hide bottom nav on desktop */
@media (min-width: 981px) {
  .bottom-nav {
    display: none !important;
  }
  
  body {
    padding-bottom: 0 !important;
  }
}

/* Ensure footer is visible above bottom nav */
.site-footer {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-footer {
    margin-bottom: calc(70px + env(safe-area-inset-bottom));
  }
}

/* Fix cart drawer z-index to appear above bottom nav */
.cart-drawer {
  z-index: 5000;
}

.cart-panel {
  z-index: 5001;
}

/* Modals should be above everything */
.confirm-modal,
.wa-confirm-modal {
  z-index: 6000;
}

.confirm-panel,
.wa-confirm-panel {
  z-index: 6001;
}


/* Badge visibility control */
.bottom-nav-badge.is-hidden {
  display: none !important;
}
/* ═══════════════════════════════════════════════════════════════════════
   🎬 CINEMATIC PREMIUM UX - كهرمانة بغداد
   ═══════════════════════════════════════════════════════════════════════ */

/* Hero Cinematic */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  transform: scale(1.05);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero:hover .hero-video {
  transform: scale(1.1);
}

.hero-overlay {
  background: linear-gradient(
    0deg,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.5) 40%,
    rgba(5, 5, 5, 0.2) 70%,
    transparent 100%
  );
}

.hero-cta .btn-gold {
  background: var(--brand);
  color: var(--bg);
  box-shadow: 0 8px 32px rgba(201, 162, 77, 0.3);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-cta .btn-gold:hover {
  box-shadow: 0 12px 48px rgba(201, 162, 77, 0.5);
  transform: translateY(-4px);
}

.hero-cta .btn-secondary {
  border: 2px solid var(--brand);
  background: transparent;
  color: var(--brand);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-cta .btn-secondary:hover {
  background: rgba(201, 162, 77, 0.1);
  box-shadow: 0 0 32px rgba(201, 162, 77, 0.3);
}

/* Premium Cards */
.card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 77, 0.3);
  box-shadow: 0 16px 48px rgba(201, 162, 77, 0.2);
  transform: translateY(-8px);
}

/* Menu Item Cards */
.menu-item {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 162, 77, 0.3);
  box-shadow: 0 12px 40px rgba(201, 162, 77, 0.25);
  transform: translateY(-6px);
}

.menu-item-img {
  border-radius: 16px;
  transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-item:hover .menu-item-img {
  transform: scale(1.05);
}

/* 🔲 Premium Bottom Navigation */
.bottom-nav {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(201, 162, 77, 0.2);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

.bottom-nav::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 162, 77, 0.6) 50%,
    transparent 100%
  );
  height: 2px;
}

.bottom-nav-item {
  position: relative;
}

.bottom-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 16px rgba(201, 162, 77, 0.8);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bottom-nav-item:active::after {
  transform: translateX(-50%) scaleX(1);
}

.bottom-nav-icon {
  stroke: rgba(255, 255, 255, 0.6);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bottom-nav-item:active .bottom-nav-icon {
  stroke: var(--brand);
  filter: drop-shadow(0 0 8px rgba(201, 162, 77, 0.6));
  transform: translateY(-4px) scale(1.1);
}

/* 🛒 CART DRAWER - CRITICAL FIX */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.cart-drawer[aria-hidden="false"] {
  pointer-events: all;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  z-index: 1;
}

.cart-drawer[aria-hidden="false"] .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: relative;
  width: min(480px, 100vw);
  height: 100%;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(24px);
  box-shadow: -8px 0 64px rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  z-index: 2;
  border-left: 1px solid rgba(201, 162, 77, 0.2);
}

.cart-drawer[aria-hidden="false"] .cart-panel {
  transform: translateX(0);
}

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

.cart-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand);
  margin: 0;
}

.cart-close {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--fg);
  font-size: 28px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.cart-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #EF4444;
  transform: rotate(90deg) scale(1.1);
}

.cart-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Cart Body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-summary {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart-summary-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--muted);
}

.cart-summary-value {
  font-weight: 900;
  font-size: 24px;
  color: var(--brand);
}

.cart-actions {
  padding: 16px 24px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cart-hint {
  padding: 0 24px 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* 📋 Bottom Sheet for Menu */
.menu-sheet {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.menu-sheet[aria-hidden="false"] {
  pointer-events: all;
}

.menu-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 400ms ease;
  cursor: pointer;
}

.menu-sheet[aria-hidden="false"] .menu-sheet-backdrop {
  opacity: 1;
}

.menu-sheet-panel {
  position: relative;
  width: 100%;
  max-height: 85vh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(24px);
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-bottom: none;
  box-shadow: 0 -8px 64px rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.menu-sheet[aria-hidden="false"] .menu-sheet-panel {
  transform: translateY(0);
}

.menu-sheet-handle {
  width: 48px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  margin: 12px auto 8px;
  flex-shrink: 0;
}

.menu-sheet-header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.menu-sheet-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--brand);
  margin: 0;
  text-align: center;
}

.menu-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
}

/* Google Maps Enhancement */
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.branch-map-embed {
  filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

/* Glassmorphism Elements */
.order-intent-pill {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-intent-pill.active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(201, 162, 77, 0.4);
}

.floating-cart {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(201, 162, 77, 0.3);
  box-shadow: 0 16px 64px rgba(201, 162, 77, 0.35);
}

/* Enhanced Buttons */
.btn-primary {
  background: var(--brand);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.3);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(201, 162, 77, 0.5);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--brand);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 12px 40px rgba(201, 162, 77, 0.5);
  transform: translateY(-2px);
}

/* RTL Support for Cart */
[dir="rtl"] .cart-panel {
  border-left: none;
  border-right: 1px solid rgba(201, 162, 77, 0.2);
  transform: translateX(-100%);
  box-shadow: 8px 0 64px rgba(0, 0, 0, 0.8);
}

[dir="rtl"] .cart-drawer[aria-hidden="false"] .cart-panel {
  transform: translateX(0);
}

/* Mobile Optimizations */
@media (max-width: 640px) {
  .cart-panel {
    width: 100vw;
  }
  
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* CINEMATIC PREMIUM OVERRIDES */
/* Design System */
:root{
  --bg:#050505;
  --fg:#F5F5F5;
  --muted:rgba(255,255,255,.68);
  --muted-2:rgba(255,255,255,.45);

  --gold-grad:linear-gradient(45deg,#BF953F,#FCF6BA,#B38728,#FBF5B7,#AA771C);
  --gold: #C9A24D;
  --gold-soft: rgba(201,162,77,.22);

  --glass-bg: rgba(10,10,10,.55);
  --glass-border: rgba(252,246,186,.22);
  --glass-blur: 20px;

  --radius-xl: 24px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.4,0,0.2,1);

  --shadow-1: 0 16px 50px rgba(0,0,0,.55);
  --shadow-glow: 0 0 0 1px rgba(252,246,186,.08), 0 14px 40px rgba(0,0,0,.58);
}

html{
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body{
  background:
    radial-gradient(circle at 20% -10%, rgba(191,149,63,.12), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(252,246,186,.08), transparent 55%),
    radial-gradient(circle at 45% 120%, rgba(179,135,40,.10), transparent 55%),
    var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-rendering: geometricPrecision;
}

html[lang="ar"] body,
[dir="rtl"] body{
  font-family: "Cairo","Inter",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

body.scroll-lock{ overflow: hidden; }

h1,h2,h3{
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Glass cards */
.card{
  background: var(--glass-bg) !important;
  border: 0.5px solid var(--glass-border) !important;
  border-radius: var(--radius-xl) !important;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-45%;
  background:
    radial-gradient(circle at 30% 18%, rgba(252,246,186,.12), transparent 42%),
    radial-gradient(circle at 78% 120%, rgba(191,149,63,.14), transparent 48%);
  transform: rotate(8deg);
  opacity:.9;
  pointer-events:none;
}

.card > *{ position: relative; z-index: 1; }

/* Buttons */
.btn{
  min-height: 48px;
  min-width: 48px;
  border-radius: 16px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.btn:active{ transform: translateY(1px) scale(.99); }

.btn-gold{
  background: var(--gold-grad) !important;
  color: #111 !important;
  box-shadow: 0 10px 30px rgba(201,162,77,.18);
  border: 0.5px solid rgba(252,246,186,.35) !important;
}

.btn-gold:hover{
  box-shadow: 0 14px 46px rgba(201,162,77,.22), 0 0 0 1px rgba(252,246,186,.10);
}

.btn-secondary{
  background: rgba(10,10,10,.35) !important;
  border: 0.5px solid rgba(252,246,186,.35) !important;
  color: var(--fg) !important;
  box-shadow: 0 0 0 1px rgba(252,246,186,.06), 0 10px 26px rgba(0,0,0,.45);
}

.btn-secondary:hover{
  box-shadow: 0 0 0 1px rgba(252,246,186,.14), 0 0 28px rgba(201,162,77,.18), 0 18px 40px rgba(0,0,0,.55);
  transform: translateY(-1px);
}

/* Hero */
.hero{
  height: 100svh;
  min-height: 620px;
  border-bottom: 0.5px solid rgba(252,246,186,.10);
}

.hero-video{
  transform: translate3d(0,0,0) scale(1.05);
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay{
  background: linear-gradient(to bottom,
    rgba(5,5,5,.55) 0%,
    rgba(5,5,5,.28) 42%,
    rgba(5,5,5,.92) 100%) !important;
}

/* Premium menu cards */
.menu-item{
  border-radius: var(--radius-xl) !important;
}

.menu-item:hover{
  box-shadow: var(--shadow-glow), 0 0 28px rgba(201,162,77,.18);
  transform: translateY(-2px) scale(1.01);
}

/* Bottom Nav */
.bottom-nav{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 1700;
  border-radius: 24px;
  background: rgba(10,10,10,.55) !important;
  border: 0.5px solid rgba(252,246,186,.20) !important;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 20px 60px rgba(0,0,0,.65);
}

.bottom-nav-item{
  min-height: 48px;
  min-width: 48px;
  border-radius: 18px;
  position: relative;
  transition: transform 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease);
}

.bottom-nav-item.active{
  color: rgba(252,246,186,.98) !important;
}

.bottom-nav-item.active::after{
  content:"";
  position:absolute;
  left: 16%;
  right: 16%;
  bottom: 6px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(252,246,186,.55), rgba(201,162,77,.15), transparent 70%);
  filter: blur(2px);
  pointer-events:none;
}

/* Menu Bottom Sheet */
.menu-sheet{
  position: fixed;
  inset: 0;
  z-index: 1650;
  display: none;
}

.menu-sheet[aria-hidden="false"]{
  display:block;
}

.sheet-backdrop,
.menu-sheet-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.sheet-panel,
.menu-sheet-panel{
  position:absolute;
  left: 50%;
  bottom: calc(10px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(30px);
  width: min(720px, calc(100% - 24px));
  max-height: min(78svh, 720px);
  background: rgba(12,12,12,.62);
  border: 0.5px solid rgba(252,246,186,.22);
  border-radius: 28px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 28px 90px rgba(0,0,0,.72);
  overflow: hidden;
  opacity: 0;
  transition: transform 320ms var(--ease), opacity 320ms var(--ease);
}

.menu-sheet[aria-hidden="false"] .sheet-panel,
.menu-sheet[aria-hidden="false"] .menu-sheet-panel{
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.sheet-handle{
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  margin: 10px auto 0;
}

.sheet-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 0.5px solid rgba(252,246,186,.12);
}

.sheet-title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.sheet-close,
.menu-sheet-close{
  min-width: 48px;
  min-height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 0.5px solid rgba(252,246,186,.18);
  color: var(--fg);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.sheet-close:hover,
.menu-sheet-close:hover{
  box-shadow: 0 0 28px rgba(201,162,77,.16);
  transform: translateY(-1px);
}

.sheet-body{
  padding: 14px 16px 18px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

.sheet-label{
  color: rgba(252,246,186,.86);
  font-weight: 800;
  margin: 6px 0 10px;
}

.sheet-chips{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sheet-chip{
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 0.5px solid rgba(252,246,186,.18);
  color: var(--fg);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.sheet-chip:hover{ transform: translateY(-1px); box-shadow: 0 0 28px rgba(201,162,77,.14); }

.sheet-chip.active{
  background: var(--gold-grad);
  color: #111;
  border-color: rgba(252,246,186,.35);
}

/* Dark Map Integration */
.branch-map iframe,
#activeBranchMap iframe,
.map-embed iframe{
  filter: grayscale(1) invert(1) contrast(1.05) brightness(.95);
  border-radius: 18px;
}

/* Reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease), filter 650ms var(--ease);
}
.reveal.reveal-in{ opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal.d1{ transition-delay: 60ms; }
.reveal.d2{ transition-delay: 120ms; }
.reveal.d3{ transition-delay: 180ms; }
.reveal.d4{ transition-delay: 240ms; }
.reveal.d5{ transition-delay: 300ms; }
.reveal.d6{ transition-delay: 360ms; }
.reveal.d7{ transition-delay: 420ms; }

/* Scroll-driven parallax (CSP-safe, progressive enhancement) */
@supports (animation-timeline: scroll()) and (view-timeline-name: --t){
  .hero{ view-timeline-name: --hero; view-timeline-axis: block; }
  .hero-video{
    animation: heroParallax 1s linear both;
    animation-timeline: --hero;
    animation-range: entry 0% exit 100%;
  }
  @keyframes heroParallax{
    from{ transform: translateY(0) scale(1.05); }
    to{ transform: translateY(18px) scale(1.05); }
  }
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
