: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; }
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{
  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;
}
.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{ display: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;
}
.burger span[aria-hidden="true"]{
  position:absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  opacity:.9;
}
.burger span[aria-hidden="true"]:nth-of-type(2){ top: 16px; }
.burger span[aria-hidden="true"]:nth-of-type(3){ top: 26px; }

.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;
}
.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){
  .nav.nav-left, .nav.nav-right{ display:none; }
  .burger{ display:block; }
}

/* 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: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-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;
}
.menu-filter{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  font-weight: 1000;
}
.menu-filter.is-active{
  border-color: rgba(212,175,55,.55);
  background: rgba(212,175,55,.14);
}

.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; }

/* 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;
  inset-inline-start: 18px;
  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;
  inset-inline-end: 18px;
  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-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;
}

/* 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;
  inset-inline-end: 18px;
  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,
[dir="rtl"] .whatsapp-fab {
  right: auto;
  left: 20px;
}

[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: 100vh;
  }

  .cart-items {
    max-height: calc(100vh - 520px);
  }

  .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: wrap;
}
.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-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%}

