/* ═══════════════════════════════════════════
   مطعم أهل اليمن — Professional Stylesheet
   ═══════════════════════════════════════════ */

:root {
  /* Color palette — extracted from logo */
  --gold:         #C9A84C;
  --gold-light:   #E8D49A;
  --gold-muted:   #D4B76A;
  --gold-dark:    #9A7828;
  --gold-bg:      #F8F2E3;
  --gold-bg-2:    #F0E4C0;

  --navy:         #1A2B54;
  --navy-mid:     #223070;
  --navy-light:   #2C3F7A;
  --navy-dark:    #0F1A38;

  --maroon:       #7B1930;
  --maroon-light: #9E2440;

  --cream:        #FAF6EE;
  --white:        #FFFFFF;
  --dark:         #0D1117;
  --text:         #252525;
  --text-2:       #4A4A4A;
  --text-muted:   #7A7A7A;
  --border:       rgba(201,168,76,0.20);
  --border-2:     rgba(0,0,0,0.08);

  /* Typography */
  --font: 'Poppins', 'Cairo', sans-serif;

  /* Spacing */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;
  --sp-4: 16px; --sp-5: 20px;  --sp-6: 24px;
  --sp-8: 32px; --sp-10: 40px; --sp-12: 48px;
  --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Radii */
  --r-sm: 8px;  --r-md: 12px;  --r-lg: 16px;
  --r-xl: 20px; --r-2xl: 28px; --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.16);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.22);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.35);

  /* Transition */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t:    0.25s var(--ease);
  --t-slow: 0.45s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Arabic mode override */
html[dir="rtl"] body {
  font-family: 'Cairo', sans-serif;
}
img { max-width: 100%; display: block; }
video { display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
button, input, textarea, select {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
ul { list-style: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Container ── */
.container { width: min(1200px, 100% - 40px); margin-inline: auto; }

/* ── Section structure ── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 28px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}
.section-header { text-align: center; margin-bottom: var(--sp-12); }
.section-header .section-sub { margin-inline: auto; }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.25; margin-bottom: 14px;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 30px; border-radius: var(--r-full);
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  white-space: nowrap; transition: var(--t); line-height: 1;
}
.btn svg { flex-shrink: 0; }

.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold:active { transform: translateY(0); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white); transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ─────────────────────────────────────
   HEADER
───────────────────────────────────── */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 800;
  padding: 18px 0;
  transition: background var(--t-slow), box-shadow var(--t-slow), padding var(--t-slow);
}
.header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 11px 0;
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-img {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; object-position: center;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1rem; font-weight: 900; color: var(--gold); }
.logo-tagline { font-size: 0.67rem; color: rgba(255,255,255,0.55); font-weight: 400; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 2px; margin-inline-start: auto; }
.nav a {
  padding: 8px 16px; border-radius: var(--r-full);
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600;
  transition: var(--t);
}
.nav a:hover, .nav a.active {
  color: var(--gold); background: rgba(201,168,76,0.1);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 700; font-size: 0.88rem;
  direction: ltr;
}
.header-phone svg { width: 15px; height: 15px; }

/* Cart button — header */
.btn-cart {
  position: relative; display: flex; align-items: center;
  gap: 7px; padding: 9px 18px; border-radius: var(--r-full);
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-weight: 700; font-size: 0.88rem;
  transition: var(--t);
}
.btn-cart:hover { background: var(--gold); color: var(--navy); }
.btn-cart svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute; top: -6px; left: -6px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: var(--r-full); background: var(--maroon);
  color: var(--white); font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy-dark);
  transition: transform var(--t);
}
.cart-badge[hidden] { display: none; }
.cart-badge.pop { animation: cartPop 0.3s var(--ease); }
@keyframes cartPop {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}
@keyframes tgSpin {
  to { transform: rotate(360deg); }
}

/* Mobile toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; margin-inline-start: auto; flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: var(--t);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 890; opacity: 0; pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(3px);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(300px, 82vw);
  height: 100dvh; background: var(--navy-dark); z-index: 891;
  display: flex; flex-direction: column; padding: 0;
  transition: right var(--t-slow);
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(201,168,76,0.1);
}
.mobile-drawer-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: var(--t);
}
.mobile-drawer-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.mobile-drawer-nav { display: flex; flex-direction: column; gap: 4px; padding: 20px 16px; flex: 1; }
.mobile-drawer-nav a {
  padding: 14px 16px; border-radius: var(--r-md);
  color: rgba(255,255,255,0.8); font-size: 1.05rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--t);
}
.mobile-drawer-nav a:hover, .mobile-drawer-nav a.active {
  color: var(--gold); background: rgba(201,168,76,0.08);
}
.mobile-drawer-foot {
  padding: 20px 24px; border-top: 1px solid rgba(201,168,76,0.1);
  display: flex; flex-direction: column; gap: 10px;
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative; height: 100dvh; min-height: 620px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  max-width: none; min-width: 100%; min-height: 100%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,20,50,0.88) 0%,
    rgba(26,43,84,0.70) 40%,
    rgba(123,25,48,0.60) 70%,
    rgba(10,20,50,0.85) 100%
  );
}
/* Film grain texture */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); padding: 100px 20px 60px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); padding: 7px 20px; border-radius: var(--r-full);
  font-size: 0.82rem; font-weight: 700; margin-bottom: 22px;
  backdrop-filter: blur(8px); letter-spacing: 1px;
}
.hero-eyebrow svg { width: 14px; height: 14px; }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.12;
  color: var(--white); margin-bottom: 10px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.82); margin-bottom: 6px; font-weight: 500;
}
.hero-tagline {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--gold-muted); font-weight: 600;
  margin-bottom: var(--sp-10); font-style: italic;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 16px; border-radius: var(--r-full); margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.hero-rating .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.hero-rating .num { color: var(--white); font-weight: 800; font-size: 0.9rem; }
.hero-rating .count { color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 6px; color: rgba(255,255,255,0.45);
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  animation: heroScroll 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes heroScroll {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 1; }
}
.video-ctrl {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: var(--t);
  backdrop-filter: blur(6px);
}
.video-ctrl:hover { background: rgba(201,168,76,0.3); color: var(--white); }
.video-ctrl svg { width: 18px; height: 18px; }

/* ─────────────────────────────────────
   STATS BAR
───────────────────────────────────── */
.stats-bar { background: var(--navy-dark); }
.stats-inner {
  display: flex; align-items: stretch;
}
.stat-item {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 20px 16px; border-inline-end: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t);
}
.stat-item:last-child { border-inline-end: none; }
.stat-item:hover { background: rgba(201,168,76,0.06); }
.stat-ico {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: rgba(201,168,76,0.1); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.stat-ico svg { width: 18px; height: 18px; }
.stat-val { font-size: 0.95rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.stat-lbl { font-size: 0.73rem; color: rgba(255,255,255,0.45); font-weight: 400; margin-top: 1px; }

/* ─────────────────────────────────────
   DISH PHOTO PLACEHOLDER
───────────────────────────────────── */
.dish-photo {
  position: relative; overflow: hidden;
  background: var(--navy-dark);
}
.dish-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s var(--ease);
}
.dish-photo-holder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.dish-photo-pattern {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,43,84,0.9) 0%, rgba(15,26,56,0.95) 100%),
    repeating-linear-gradient(
      60deg, transparent, transparent 20px,
      rgba(201,168,76,0.025) 20px, rgba(201,168,76,0.025) 21px
    );
}
.dish-photo-holder svg {
  width: 36px; height: 36px; color: rgba(201,168,76,0.25); z-index: 1;
}
.dish-photo-holder span {
  font-size: 0.68rem; color: rgba(255,255,255,0.2);
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; z-index: 1;
}
.dish-photo-badge {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: rgba(15,26,56,0.75); color: var(--gold-light);
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: 0.7rem; font-weight: 700; backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ─────────────────────────────────────
   DISH CARD
───────────────────────────────────── */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.dish-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--border-2); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.35);
}
.dish-card:hover .dish-photo img { transform: scale(1.05); }
.dish-card .dish-photo { aspect-ratio: 16/10; }
.dish-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.dish-cat {
  font-size: 0.7rem; font-weight: 700; color: var(--gold-dark);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px;
}
.dish-name {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  margin-bottom: 6px; line-height: 1.3;
}
.dish-desc {
  font-size: 0.83rem; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 14px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.dish-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--border-2);
}
.dish-price {
  font-size: 1.15rem; font-weight: 900; color: var(--maroon);
  white-space: nowrap;
}
.dish-price small { font-size: 0.72rem; font-weight: 600; opacity: 0.75; }
.dish-price-var { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }

.btn-add {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 16px; border-radius: var(--r-full);
  background: var(--gold-bg); color: var(--navy);
  font-size: 0.82rem; font-weight: 700;
  border: 1px solid var(--border); transition: var(--t);
  flex-shrink: 0; white-space: nowrap;
}
.btn-add svg { width: 14px; height: 14px; }
.btn-add:hover { background: var(--gold); box-shadow: var(--shadow-gold); }
.btn-add.added {
  background: var(--navy); color: var(--gold);
  animation: btnAdded 0.4s var(--ease);
}
@keyframes btnAdded {
  0%,100% { transform: scale(1); }
  50% { transform: scale(0.95); }
}

/* ─────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────── */
.about-section { padding: var(--sp-24) 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-video-wrap {
  border-radius: var(--r-2xl); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-xl);
}
.about-video-wrap video { width: 100%; height: 100%; object-fit: cover; max-width: none; min-width: 100%; }
.about-stat-card {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gold); color: var(--navy);
  padding: 18px 22px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); text-align: center;
  min-width: 100px;
}
.about-stat-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-stat-lbl { font-size: 0.75rem; font-weight: 700; margin-top: 3px; }

.about-content { padding-top: 20px; }
.about-text { color: var(--text-2); font-size: 1.02rem; margin-bottom: 14px; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feat-ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--gold-bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-dark);
}
.about-feat-ico svg { width: 20px; height: 20px; }
.about-feat-title { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.about-feat-desc { font-size: 0.83rem; color: var(--text-muted); }

/* ─────────────────────────────────────
   MENU PREVIEW SECTION
───────────────────────────────────── */
.menu-preview { padding: var(--sp-24) 0; background: var(--white); }
.cat-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: var(--sp-10);
}
.cat-pill {
  padding: 9px 22px; border-radius: var(--r-full);
  font-size: 0.88rem; font-weight: 700; color: var(--text-muted);
  background: var(--cream); border: 1.5px solid transparent;
  transition: var(--t);
}
.cat-pill:hover { color: var(--navy); border-color: var(--border); }
.cat-pill.active {
  color: var(--navy); background: var(--gold-bg);
  border-color: var(--gold);
}

/* ─────────────────────────────────────
   HOME PAGE — 6-COLUMN COMPACT DISH GRID
───────────────────────────────────── */
.menu-preview .dish-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.menu-preview .dish-card .dish-photo { aspect-ratio: 1/1; }
.menu-preview .dish-body { padding: 10px 10px 12px; }
.menu-preview .dish-cat { display: none; }
.menu-preview .dish-name {
  font-size: 0.76rem; font-weight: 700;
  margin-bottom: 4px;
  -webkit-line-clamp: 2;
}
.menu-preview .dish-desc { display: none; }
.menu-preview .dish-footer { padding-top: 8px; }
.menu-preview .dish-price { font-size: 0.88rem; }
.menu-preview .btn-add { padding: 6px 8px; }
.menu-preview .btn-add-text { display: none; }

@media (max-width: 1024px) {
  .menu-preview .dish-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .menu-preview .dish-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .menu-preview .dish-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────
   LANGUAGE TOGGLE BUTTON
───────────────────────────────────── */
.lang-toggle {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: var(--r-full);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: var(--t); white-space: nowrap;
  letter-spacing: 0.5px;
}
.lang-toggle:hover { background: var(--gold); color: var(--navy); }
.lang-toggle svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─────────────────────────────────────
   AMBIANCE STRIP
───────────────────────────────────── */
.ambiance-strip {
  position: relative; height: 440px; overflow: hidden;
}
.ambiance-strip video { width: 100%; height: 100%; object-fit: cover; max-width: none; min-width: 100%; }
.ambiance-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,50,0.4), rgba(10,20,50,0.75));
  display: flex; align-items: center; justify-content: center;
}
.ambiance-text {
  text-align: center; color: var(--white); padding: 0 var(--sp-6);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 900; line-height: 1.4;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.ambiance-text .gold { color: var(--gold); }

/* ─────────────────────────────────────
   TRUST NUMBERS
───────────────────────────────────── */
.trust-row {
  padding: var(--sp-12) 0; background: var(--white);
  border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--sp-5) var(--sp-12); text-align: center;
  border-inline-end: 1px solid var(--border-2);
}
.trust-item:last-child { border-inline-end: none; }
.trust-num {
  font-size: 2.2rem; font-weight: 900; color: var(--navy); line-height: 1;
}
.trust-num .accent { color: var(--gold); }
.trust-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 600; }

/* ─────────────────────────────────────
   REVIEWS
───────────────────────────────────── */
.reviews-section {
  padding: var(--sp-24) 0; background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.reviews-section::before {
  content: '"'; position: absolute; top: -80px; right: 0;
  font-size: 36rem; color: rgba(201,168,76,0.03);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.reviews-section .section-title { color: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--r-xl); padding: 26px;
  backdrop-filter: blur(8px); transition: var(--t);
}
.review-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.4); transform: translateY(-3px);
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-text {
  font-size: 0.93rem; color: rgba(255,255,255,0.82);
  line-height: 1.75; margin-bottom: 18px; font-style: italic;
}
.review-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.review-tag {
  padding: 4px 12px; border-radius: var(--r-full);
  background: rgba(201,168,76,0.1); color: var(--gold-light);
  font-size: 0.72rem; font-weight: 700; border: 1px solid rgba(201,168,76,0.15);
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07);
}
.review-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
}
.review-name { font-weight: 700; color: var(--white); font-size: 0.88rem; }
.review-via { font-size: 0.73rem; color: rgba(255,255,255,0.4); margin-top: 1px; }

/* ─────────────────────────────────────
   BRANCH SECTION (home)
───────────────────────────────────── */
.branches-section { padding: var(--sp-24) 0; background: var(--cream); }
.branch-card {
  max-width: 520px; margin-inline: auto;
  background: var(--white); border-radius: var(--r-2xl);
  overflow: hidden; border: 1px solid var(--border-2);
  box-shadow: var(--shadow-md); transition: var(--t);
}
.branch-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.35); }
.branch-map-head {
  height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; position: relative;
}
.branch-pin {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
}
.branch-pin svg { width: 24px; height: 24px; color: var(--navy); }
.branch-area { font-size: 1rem; font-weight: 700; color: var(--gold); }
.branch-map-link {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.45); color: var(--white);
  padding: 5px 14px; border-radius: var(--r-full);
  font-size: 0.75rem; font-weight: 600;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; gap: 5px; transition: var(--t);
}
.branch-map-link:hover { background: var(--gold); color: var(--navy); }
.branch-map-link svg { width: 12px; height: 12px; }
.branch-body { padding: 24px; }
.branch-title {
  font-size: 1.2rem; font-weight: 800; color: var(--navy);
  margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
}
.branch-badge {
  font-size: 0.68rem; font-weight: 700;
  background: var(--gold); color: var(--navy);
  padding: 3px 10px; border-radius: var(--r-full); flex-shrink: 0;
}
.branch-info-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.branch-info {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-2);
}
.branch-info svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.branch-open { color: #16a34a; font-weight: 700; }
.branch-services { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.branch-svc {
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: 0.73rem; font-weight: 700;
  background: var(--gold-bg); color: var(--gold-dark);
  border: 1px solid var(--border);
}
.branch-btns { display: flex; gap: 10px; }
.branch-btn {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 6px;
  padding: 11px 14px; border-radius: var(--r-md);
  font-size: 0.88rem; font-weight: 700; transition: var(--t);
  font-family: var(--font);
}
.branch-btn svg { width: 15px; height: 15px; }
.branch-btn-call { background: var(--navy); color: var(--white); }
.branch-btn-call:hover { background: var(--navy-light); }
.branch-btn-map { background: var(--gold); color: var(--navy); }
.branch-btn-map:hover { background: var(--gold-dark); color: var(--white); }

/* ─────────────────────────────────────
   SOCIAL SECTION
───────────────────────────────────── */
.social-section {
  padding: var(--sp-20) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1832 45%, #4a0f1e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.social-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(123,25,48,0.2) 0%, transparent 55%);
}
.social-section::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 50px,
    rgba(255,255,255,0.01) 50px, rgba(255,255,255,0.01) 51px
  );
}
.social-section .section-label { color: rgba(255,255,255,0.6); }
.social-section .section-title { color: var(--white); }
.social-section .section-sub { color: rgba(255,255,255,0.65); margin-inline: auto; }

/* Social Cards Grid */
.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--sp-10);
}

.social-card {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 24px; border-radius: var(--r-xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.35s var(--ease);
  text-align: start;
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.social-card:hover::before { opacity: 1; }

.social-card-icon {
  width: 64px; height: 64px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.35s var(--ease);
}
.social-card:hover .social-card-icon { transform: scale(1.1) rotate(-3deg); }
.social-card-icon svg { width: 30px; height: 30px; }

.social-card-body { flex: 1; min-width: 0; }
.social-card-platform {
  font-size: 1.2rem; font-weight: 900; color: var(--white);
  margin-bottom: 5px; line-height: 1.2;
}
.social-card-count {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  margin-bottom: 12px; font-weight: 500;
}
.social-card-cta {
  display: inline-flex; align-items: center;
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-full);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

/* Facebook card */
.social-card-fb .social-card-icon { background: rgba(24,119,242,0.18); color: #6aabff; }
.social-card-fb::before { background: linear-gradient(135deg, rgba(24,119,242,0.12) 0%, transparent 60%); }
.social-card-fb:hover { border-color: rgba(24,119,242,0.5); }
.social-card-fb .social-card-cta { background: rgba(24,119,242,0.18); color: #90c2ff; border: 1px solid rgba(24,119,242,0.3); }
.social-card-fb:hover .social-card-cta { background: #1877F2; color: #fff; border-color: #1877F2; }

/* Instagram card */
.social-card-ig .social-card-icon { background: rgba(221,42,123,0.15); color: #f09bc6; }
.social-card-ig::before { background: linear-gradient(135deg, rgba(221,42,123,0.1) 0%, rgba(245,133,41,0.05) 60%, transparent 80%); }
.social-card-ig:hover { border-color: rgba(221,42,123,0.45); }
.social-card-ig .social-card-cta { background: rgba(221,42,123,0.15); color: #f4b0d0; border: 1px solid rgba(221,42,123,0.25); }
.social-card-ig:hover .social-card-cta { background: linear-gradient(135deg, #F58529, #DD2A7B); color: #fff; border-color: transparent; }

/* Phone card */
.social-card-phone .social-card-icon { background: rgba(201,168,76,0.18); color: var(--gold); }
.social-card-phone::before { background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%); }
.social-card-phone:hover { border-color: rgba(201,168,76,0.5); }
.social-card-phone .social-card-count { direction: ltr; text-align: start; font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; }
.social-card-phone .social-card-cta { background: rgba(201,168,76,0.15); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.25); }
.social-card-phone:hover .social-card-cta { background: var(--gold); color: var(--navy); border-color: var(--gold); }

@media (max-width: 900px) {
  .social-cards { grid-template-columns: 1fr; gap: 14px; }
  .social-card { padding: 22px 20px; gap: 16px; }
}
@media (max-width: 480px) {
  .social-card-icon { width: 52px; height: 52px; }
  .social-card-icon svg { width: 24px; height: 24px; }
  .social-card-platform { font-size: 1.05rem; }
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer { background: var(--dark); padding: var(--sp-16) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12); padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 12px 0 18px; }
.footer-social-row { display: flex; gap: 8px; }
.footer-social-ico {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--t);
}
.footer-social-ico svg { width: 17px; height: 17px; }
.footer-social-ico:hover { background: var(--gold); color: var(--navy); }
.footer-col-title {
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-contact-row svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  padding: 18px 0; text-align: center;
  color: rgba(255,255,255,0.3); font-size: 0.78rem;
}

/* ─────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────── */
.page-hero {
  height: 300px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--maroon) 100%);
  display: flex; align-items: flex-end; padding-bottom: var(--sp-12);
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,0.012) 30px, rgba(255,255,255,0.012) 31px
  );
}
.page-hero-content { position: relative; z-index: 1; color: var(--white); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 10px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero-title { font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--white); }
.page-hero-sub { color: rgba(255,255,255,0.65); margin-top: 8px; font-size: 1rem; }

/* ─────────────────────────────────────
   FULL MENU PAGE
───────────────────────────────────── */
.menu-sticky-nav {
  position: sticky; top: 68px; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.menu-tabs-scroll {
  overflow-x: auto; scrollbar-width: none;
  display: flex; gap: 0;
}
.menu-tabs-scroll::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: 15px 22px; font-size: 0.87rem; font-weight: 700;
  color: var(--text-muted); white-space: nowrap;
  border-bottom: 3px solid transparent; transition: var(--t);
  flex-shrink: 0; font-family: var(--font);
}
.menu-tab:hover { color: var(--navy); }
.menu-tab.active { color: var(--maroon); border-bottom-color: var(--maroon); }

.menu-page-body { padding: var(--sp-8) 0 var(--sp-24); }
.menu-cat-section { padding-top: var(--sp-12); scroll-margin-top: 140px; }
.menu-cat-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--border-2);
}
.menu-cat-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: var(--gold-bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.menu-cat-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.menu-cat-title { font-size: 1.35rem; font-weight: 800; color: var(--navy); }
.menu-cat-count { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

/* Menu item card (compact, for full menu page) */
.menu-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.menu-item-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border-2); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.menu-item-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.menu-item-card .dish-photo { aspect-ratio: 3/2; }
.menu-item-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.menu-item-name {
  font-size: 0.97rem; font-weight: 800; color: var(--navy);
  margin-bottom: 4px; line-height: 1.3;
}
.menu-item-desc {
  font-size: 0.79rem; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 12px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.menu-item-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding-top: 12px; border-top: 1px solid var(--border-2);
}

/* ─────────────────────────────────────
   BRANCHES PAGE
───────────────────────────────────── */
.branches-page { padding: var(--sp-16) 0 var(--sp-24); }
.br-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.br-card {
  background: var(--white); border-radius: var(--r-2xl);
  overflow: hidden; border: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm); transition: var(--t);
}
.br-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.35); }
.br-map-head {
  height: 190px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; position: relative;
}
.br-map-pin {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
}
.br-map-pin svg { width: 26px; height: 26px; color: var(--navy); }
.br-area-label { font-size: 1.05rem; font-weight: 700; color: var(--gold); }
.br-map-open-btn {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.4); color: var(--white);
  padding: 5px 14px; border-radius: var(--r-full);
  font-size: 0.73rem; font-weight: 600;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; gap: 5px; transition: var(--t);
  font-family: var(--font);
}
.br-map-open-btn:hover { background: var(--gold); color: var(--navy); }
.br-map-open-btn svg { width: 12px; height: 12px; }
.br-body { padding: 22px; }
.br-title {
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
}
.br-badge {
  font-size: 0.67rem; font-weight: 700;
  background: var(--gold); color: var(--navy);
  padding: 3px 10px; border-radius: var(--r-full);
}
.br-info-list { display: flex; flex-direction: column; gap: 9px; margin: 14px 0; }
.br-info-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.86rem; color: var(--text-2);
}
.br-info-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.br-open { color: #16a34a; font-weight: 700; }
.br-svcs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.br-svc {
  padding: 3px 11px; border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 700;
  background: var(--gold-bg); color: var(--gold-dark);
  border: 1px solid var(--border);
}
.br-btns { display: flex; gap: 9px; }
.br-btn {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 6px; padding: 10px 12px;
  border-radius: var(--r-md); font-size: 0.86rem; font-weight: 700;
  transition: var(--t); font-family: var(--font);
}
.br-btn svg { width: 14px; height: 14px; }
.br-btn-call { background: var(--navy); color: var(--white); }
.br-btn-call:hover { background: var(--navy-light); }
.br-btn-map { background: var(--gold); color: var(--navy); }
.br-btn-map:hover { background: var(--gold-dark); color: var(--white); }
.coming-soon-card {
  background: var(--white); border: 2px dashed rgba(201,168,76,0.3);
  border-radius: var(--r-2xl); min-height: 320px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; padding: var(--sp-10); text-align: center;
}
.coming-soon-ico {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold-bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.coming-soon-ico svg { width: 26px; height: 26px; }
.coming-soon-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.coming-soon-sub { font-size: 0.85rem; color: var(--text-muted); }

/* ─────────────────────────────────────
   CART DRAWER
───────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 900; opacity: 0; pointer-events: none;
  transition: opacity var(--t); backdrop-filter: blur(3px);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; left: -100%;
  width: min(420px, 95vw); height: 100dvh;
  background: var(--white); z-index: 901;
  display: flex; flex-direction: column;
  transition: left var(--t-slow);
  box-shadow: 8px 0 40px rgba(0,0,0,0.25);
}
.cart-drawer.open { left: 0; }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border-2);
  background: var(--navy-dark);
}
.cart-head-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
}
.cart-head-title svg { width: 20px; height: 20px; color: var(--gold); }
.cart-head-count {
  background: var(--gold); color: var(--navy);
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800;
}
.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: var(--t);
}
.cart-close:hover { background: rgba(255,255,255,0.16); color: var(--white); }
.cart-close svg { width: 18px; height: 18px; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; height: 100%;
  text-align: center; color: var(--text-muted);
  padding: var(--sp-12) var(--sp-6);
}
.cart-empty-ico {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold-bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cart-empty-ico svg { width: 30px; height: 30px; }
.cart-empty h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.cart-empty p { font-size: 0.85rem; }
.cart-items-list { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; background: var(--cream);
  border-radius: var(--r-lg); border: 1px solid var(--border-2);
  transition: var(--t);
}
.cart-item:hover { border-color: rgba(201,168,76,0.3); }
.cart-item-thumb {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--navy-dark); flex-shrink: 0; overflow: hidden;
  position: relative;
}
.cart-item-ph {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.cart-item-ph::after {
  content: '';
  width: 22px; height: 22px;
  background: rgba(201,168,76,0.25);
  border-radius: 50%;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.9rem; font-weight: 700; color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}
.cart-item-sub { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { font-size: 0.92rem; font-weight: 800; color: var(--maroon); margin-top: 3px; }
.cart-item-ctrl {
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.75rem; font-weight: 700;
  transition: var(--t);
}
.qty-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.qty-btn svg { width: 13px; height: 13px; }
.qty-del {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(123,25,48,0.06); border: 1px solid rgba(123,25,48,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon); transition: var(--t);
}
.qty-del:hover { background: var(--maroon); color: var(--white); }
.qty-del svg { width: 13px; height: 13px; }
.qty-num {
  min-width: 24px; text-align: center;
  font-size: 0.9rem; font-weight: 800; color: var(--navy);
}
.cart-footer {
  padding: 16px 20px 20px; border-top: 1px solid var(--border-2);
  background: var(--white);
}
.cart-total-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cart-total-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.cart-total-amount { font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.cart-checkout-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: center; gap: 10px;
  padding: 15px; background: var(--gold); color: var(--navy);
  border-radius: var(--r-full); font-size: 1rem; font-weight: 800;
  font-family: var(--font); transition: var(--t);
  box-shadow: var(--shadow-gold);
}
.cart-checkout-btn:hover { background: var(--gold-dark); }
.cart-checkout-btn svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────
   CHECKOUT MODAL
───────────────────────────────────── */
.checkout-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 910; opacity: 0; pointer-events: none;
  transition: opacity var(--t); backdrop-filter: blur(5px);
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }
.checkout-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(560px, 96vw); max-height: 90dvh;
  background: var(--white); border-radius: var(--r-2xl);
  z-index: 911; display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform var(--t), opacity var(--t);
  opacity: 0; pointer-events: none;
  box-shadow: var(--shadow-xl);
}
.checkout-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1; pointer-events: auto;
}
.checkout-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: var(--navy-dark);
  flex-shrink: 0;
}
.checkout-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 800; color: var(--white);
}
.checkout-title svg { width: 20px; height: 20px; color: var(--gold); }
.checkout-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); transition: var(--t);
}
.checkout-close:hover { background: rgba(255,255,255,0.16); color: var(--white); }
.checkout-close svg { width: 17px; height: 17px; }
.checkout-body { overflow-y: auto; padding: 24px; flex: 1; }
.checkout-section-title {
  font-size: 0.75rem; font-weight: 700; color: var(--gold-dark);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.checkout-section-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border-2);
}
.co-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.co-field label {
  display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.co-field label .req { color: var(--maroon); }
.co-field label .opt { color: var(--text-muted); font-weight: 400; }
.co-input {
  width: 100%; padding: 12px 14px; background: var(--cream);
  border: 1.5px solid var(--border-2); border-radius: var(--r-md);
  font-family: var(--font); font-size: 0.92rem; color: var(--text);
  transition: border-color var(--t);
}
.co-input:focus { border-color: var(--gold); background: var(--white); outline: none; }
.co-input.error { border-color: var(--maroon); }
textarea.co-input { resize: vertical; min-height: 80px; }
.co-order-summary { margin-bottom: 16px; }
.co-order-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border-2);
  font-size: 0.87rem;
}
.co-order-item:last-child { border-bottom: none; }
.co-order-item-name { color: var(--text); font-weight: 600; }
.co-order-item-price { color: var(--maroon); font-weight: 700; }
.co-total-box {
  background: var(--gold-bg); border-radius: var(--r-md);
  padding: 14px 16px; border: 1px solid var(--border);
  margin-bottom: 16px;
}
.co-total-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.co-total-row:last-child { margin-bottom: 0; }
.co-total-label { font-size: 0.85rem; color: var(--text-muted); }
.co-total-val { font-size: 1.1rem; font-weight: 900; color: var(--navy); }
.co-total-note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }
.co-telegram-note {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; background: rgba(26,43,84,0.06);
  border: 1px solid rgba(26,43,84,0.15); border-radius: var(--r-md);
  font-size: 0.83rem; color: var(--navy); font-weight: 600;
}
.co-telegram-note svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }
.checkout-foot {
  padding: 16px 24px 20px; border-top: 1px solid var(--border-2);
  background: var(--white); flex-shrink: 0;
}
.checkout-submit {
  width: 100%; display: flex; align-items: center;
  justify-content: center; gap: 10px; padding: 15px;
  background: var(--navy); color: var(--white); border-radius: var(--r-full);
  font-size: 1rem; font-weight: 800; font-family: var(--font);
  transition: var(--t); box-shadow: 0 6px 20px rgba(26,43,84,0.3);
}
.checkout-submit:hover { background: var(--navy-dark); transform: translateY(-1px); }
.checkout-submit svg { width: 22px; height: 22px; }
.field-error {
  font-size: 0.75rem; color: var(--maroon); margin-top: 4px; display: none;
}
.field-error.show { display: block; }

/* ─────────────────────────────────────
   TOAST NOTIFICATION (corner — non-intrusive)
───────────────────────────────────── */
.toast {
  position: fixed; top: 72px; right: 20px;
  transform: translateY(-8px);
  z-index: 920; background: var(--navy-dark); color: var(--white);
  padding: 9px 16px; border-radius: var(--r-full);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; gap: 7px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  box-shadow: var(--shadow-md); border: 1px solid rgba(201,168,76,0.25);
  white-space: nowrap; max-width: 260px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
html[dir="rtl"] .toast { right: auto; left: 20px; }

/* Floating cart button (mobile) */
.float-cart {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  display: none;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  box-shadow: var(--shadow-gold);
  align-items: center; justify-content: center;
  transition: var(--t);
}
.float-cart:hover { background: var(--gold-dark); transform: scale(1.05); }
.float-cart svg { width: 22px; height: 22px; }
.float-cart .cart-badge {
  top: -4px; right: -4px; left: auto;
  border-color: var(--cream);
}

/* ─────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ─────────────────────────────────────
   CTA SECTION
───────────────────────────────────── */
.cta-section {
  background: var(--navy-dark); padding: var(--sp-16) 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 10px; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: var(--sp-8); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about-video-wrap { aspect-ratio: 16/9; max-width: 600px; margin-inline: auto; }
  .about-stat-card { bottom: -16px; left: -8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
}

@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .float-cart { display: flex; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item {
    flex: 1 1 50%; border-inline-end: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .trust-item { flex: 1 1 50%; }
  .trust-item:nth-child(4n) { border-inline-end: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .ambiance-strip { height: 300px; }
}

@media (max-width: 480px) {
  .stat-item { flex: 1 1 100%; }
  .trust-item { flex: 1 1 100%; border-inline-end: none; border-bottom: 1px solid var(--border-2); }
  .trust-item:last-child { border-bottom: none; }
  .br-grid { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: 1fr; }
  .menu-item-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   ADDITIONS — Menu page classes + improvements
   ═══════════════════════════════════════════ */

/* Extra CSS variables for inner pages */
:root {
  --text-body: #4A4A4A;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to left, var(--gold), var(--maroon), var(--gold));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 999;
  will-change: transform;
}

/* ── Menu Page Hero ── */
.menu-page-hero, .branches-page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--maroon) 100%);
  padding: 130px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.menu-page-hero::before, .branches-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(201,168,76,0.025) 40px, rgba(201,168,76,0.025) 41px
  );
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); padding: 6px 18px; border-radius: var(--r-full);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  margin-bottom: 20px; backdrop-filter: blur(6px);
}
.page-hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--gold);
  margin-bottom: 12px; line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.page-hero-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ── Menu Sticky Nav ── */
/* (already defined, just ensure tab SVG size) */
.menu-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.menu-tab { display: flex; align-items: center; gap: 6px; }

/* ── Menu Section ── */
.menu-section {
  padding: 70px 0 16px;
  scroll-margin-top: 140px;
}
.menu-section-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px; padding-bottom: 18px;
  border-bottom: 2px solid var(--border-2);
}
.menu-section-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.menu-section-icon svg { width: 26px; height: 26px; }
.menu-section-title { font-size: 1.55rem; font-weight: 900; color: var(--navy); }
.menu-section-count {
  margin-inline-start: auto;
  background: var(--cream); border: 1px solid var(--border-2);
  color: var(--text-muted); font-size: 0.78rem; font-weight: 700;
  padding: 4px 14px; border-radius: var(--r-full);
}

/* ── Menu Grid ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ── Item Card (dish-photo alias classes) ── */
.item-photo {
  position: relative; overflow: hidden;
  background: var(--navy-dark); aspect-ratio: 4/3;
}
.item-photo-holder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.item-photo-pattern {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,43,84,0.92) 0%, rgba(15,26,56,0.97) 100%),
    repeating-linear-gradient(60deg, transparent, transparent 20px,
      rgba(201,168,76,0.03) 20px, rgba(201,168,76,0.03) 21px);
}
.item-photo-icon {
  width: 44px; height: 44px;
  color: rgba(201,168,76,0.45); z-index: 1; position: relative;
}
.item-photo-label {
  font-size: 0.65rem; color: rgba(255,255,255,0.25);
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; z-index: 1; position: relative;
}
.item-photo-badge {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: rgba(15,26,56,0.75); color: var(--gold-light);
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: 0.7rem; font-weight: 700; backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.2);
}
.menu-item-card:hover .item-photo .item-photo-pattern {
  background: linear-gradient(135deg, rgba(26,43,84,0.82) 0%, rgba(15,26,56,0.88) 100%),
    repeating-linear-gradient(60deg, transparent, transparent 20px,
      rgba(201,168,76,0.05) 20px, rgba(201,168,76,0.05) 21px);
  transition: background 0.4s;
}

.item-body { padding: 15px; display: flex; flex-direction: column; flex: 1; }
.item-name {
  font-size: 1rem; font-weight: 800; color: var(--navy);
  margin-bottom: 5px; line-height: 1.35;
}
.item-desc {
  font-size: 0.81rem; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 12px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.item-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding-top: 12px; border-top: 1px solid var(--border-2);
}
.item-price { font-size: 1.1rem; font-weight: 900; color: var(--maroon); white-space: nowrap; }
.item-price small { font-size: 0.7rem; font-weight: 600; opacity: 0.8; }
.item-price-flex { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }

/* ── List Items (bread, drinks, salads) ── */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}
.menu-list-item {
  background: var(--white); border: 1px solid var(--border-2);
  border-radius: var(--r-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.menu-list-item:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: rgba(201,168,76,0.3);
}
.list-item-info { flex: 1; min-width: 0; }
.list-item-name {
  font-size: 0.93rem; font-weight: 700; color: var(--navy); margin-bottom: 2px;
}
.list-item-desc { font-size: 0.78rem; color: var(--text-muted); }
.list-item-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.list-item-price {
  font-size: 0.98rem; font-weight: 900; color: var(--maroon); white-space: nowrap;
}
.list-item-price small { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; }

/* ── Inquire Button ── */
.btn-inquire {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--r-full);
  border: 1.5px solid var(--navy); color: var(--navy);
  background: transparent; font-family: var(--font);
  font-size: 0.8rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: var(--t);
  white-space: nowrap; flex-shrink: 0;
}
.btn-inquire:hover { background: var(--navy); color: var(--white); }
.btn-inquire svg { width: 13px; height: 13px; }

/* ── Branches Page Stats ── */
.br-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0;
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: var(--shadow-xl);
}
.br-stat {
  padding: 28px 20px; text-align: center;
  border-inline-end: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t);
}
.br-stat:last-child { border-inline-end: none; }
.br-stat:hover { background: rgba(201,168,76,0.08); }
.br-stat-num {
  font-size: 2rem; font-weight: 900; color: var(--gold);
  line-height: 1; margin-bottom: 6px;
}
.br-stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 600; }

/* ── Branches CTA ── */
.br-cta {
  text-align: center; margin-top: 56px;
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--cream) 0%, #f0e8d6 100%);
  border-radius: var(--r-2xl); border: 1px solid var(--border-2);
}
.br-cta h2 { font-size: 1.7rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.br-cta p { color: var(--text-muted); margin-bottom: 28px; }
.br-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Counter animation ── */
@keyframes countUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.counter-animating { animation: countUp 0.5s var(--ease) both; }

/* ── Menu page responsive ── */
@media (max-width: 768px) {
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
  .menu-list { grid-template-columns: 1fr; }
  .br-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .br-cta { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .br-stats-grid { grid-template-columns: 1fr 1fr; }
  .menu-section { scroll-margin-top: 120px; }
}
