/*
Theme Name: Dr.Fattat
Theme URI: https://dr.fattat.vip
Author: Dr.Fattat
Description: قالب ووردبريس الرسمي لمطعم Dr.Fattat — أناقة ريفية وحِرَفية مذهّبة بهوية دافئة من الذهبي والعسلي. يدعم العربية والإنجليزية، مع قائمة طعام متكاملة وحجز الطاولات.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
License: Private
Text Domain: drfattat
Tags: restaurant, rtl, gold, luxury, bilingual
*/

/* ================================================================
   DR.FATTAT — MASTER STYLESHEET (Brand Book v2)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700;900&family=Cairo:wght@300;400;600;700;900&display=swap');

/* ── TOKENS — Brand Book palette ── */
:root {
  /* Brand Book base colors */
  --apricot: #F6E6C3;  /* Pastel Apricot */
  --gold:    #CCAC5F;  /* Warm Gold */
  --sienna:  #9C782F;  /* Raw Sienna */
  --onyx:    #2E2E32;  /* Onyx Black */

  --black-primary:  #2E2E32;
  --black-rich:     #26262A;
  --charcoal:       #38383D;
  --charcoal-light: #434349;
  --marble-dark:    #303034;

  --gold-primary:   #CCAC5F;
  --gold-light:     #DCC280;
  --gold-deep:      #9C782F;
  --gold-cream:     #F6E6C3;

  --white-pure:     #F6E6C3;
  --white-warm:     #F6E6C3;
  --white-text:     #F6E6C3;
  --white-muted:    rgba(246,230,195,0.6);

  --font-en-display: 'Lora', serif;
  --font-en-body:    'Lora', serif;
  --font-ar-display: 'Cairo', sans-serif;
  --font-ar-body:    'Cairo', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 30px rgba(204,172,95,0.2);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.7);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--black-primary);
  color: var(--white-warm);
  font-family: var(--font-ar-body);
  line-height: 1.75;
  direction: rtl;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── PRELOADER ── */
#drfattat-preloader {
  position: fixed;
  inset: 0;
  background: var(--black-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#drfattat-preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo-img {
  width: 96px;
  height: auto;
}
.preloader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  animation: preloaderLine 1.2s ease forwards 0.3s;
}
@keyframes preloaderLine { to { width: 120px; } }

/* ── NAVBAR ── */
.drfattat-navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.drfattat-navbar.scrolled {
  background: rgba(46,46,50,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-color: rgba(204,172,95,0.12);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.navbar-logo-img {
  width: 84px;
  height: auto;
  padding: 15px;
  box-sizing: content-box;
}
.footer-logo-img {
  width: 96px;
  height: auto;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-links a {
  font-family: var(--font-ar-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold-primary);
  background: rgba(204,172,95,0.06);
}
.lang-switcher {
  font-family: var(--font-en-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-cream);
  border: 1px solid rgba(204,172,95,0.3);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  transition: all var(--transition);
}
.lang-switcher:hover { background: rgba(204,172,95,0.1); }
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--black-primary) !important;
  font-family: var(--font-ar-display);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(204,172,95,0.25);
}
.navbar-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(204,172,95,0.4);
  transform: translateY(-1px);
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-primary);
  transition: all var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(46,46,50,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-ar-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white-text);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-primary); }
.mobile-nav .mobile-cta {
  margin-top: 8px;
  background: var(--gold-primary);
  color: var(--black-primary) !important;
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  font-size: 16px;
}

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, #2a1f00 0%, #2A2A2E 45%, #2E2E32 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(204,172,95,0.025) 80px, rgba(204,172,95,0.025) 81px),
    repeating-linear-gradient(0deg,  transparent, transparent 80px, rgba(204,172,95,0.025) 80px, rgba(204,172,95,0.025) 81px);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en-display);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold-cream);
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}
.hero-eyebrow::after { transform: scaleX(-1); }
.hero-title-ar {
  font-family: var(--font-ar-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white-pure);
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-title-ar .gold { color: var(--gold-primary); }
.hero-title-en {
  font-family: var(--font-en-display);
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-cream);
  opacity: 0.75;
  letter-spacing: 3px;
  margin-bottom: 32px;
}
.hero-desc {
  font-family: var(--font-ar-body);
  font-size: 17px;
  color: var(--white-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--black-primary);
  font-family: var(--font-ar-display);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  box-shadow: 0 0 24px rgba(204,172,95,0.3);
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 40px rgba(204,172,95,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-cream);
  font-family: var(--font-ar-display);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(204,172,95,0.4);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(204,172,95,0.08);
  color: var(--gold-primary);
}

/* ── SECTION SHARED ── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.section-eyebrow {
  font-family: var(--font-en-display);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}
.section-title-ar {
  font-family: var(--font-ar-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white-pure);
  line-height: 1.25;
}
.section-title-ar .gold { color: var(--gold-primary); }
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  margin: 20px 0;
}
.section-desc {
  font-size: 16px;
  color: var(--white-muted);
  line-height: 1.8;
  max-width: 560px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, #2A2A2E, #303034);
  border-top: 1px solid rgba(204,172,95,0.1);
  border-bottom: 1px solid rgba(204,172,95,0.1);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-inline-end: 1px solid rgba(204,172,95,0.1);
}
.stat-item:last-child { border-inline-end: none; }
.stat-number {
  font-family: var(--font-en-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-ar-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white-muted);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(204,172,95,0.15);
  box-shadow: var(--shadow-deep);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute;
  bottom: -40px;
  inset-inline-end: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--black-primary);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-float-badge {
  position: absolute;
  top: 40px;
  inset-inline-start: -30px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
  color: var(--black-primary);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-display);
  font-weight: 900;
  box-shadow: var(--shadow-deep);
  text-align: center;
  line-height: 1.2;
}
.about-float-badge .badge-num { font-size: 20px; }
.about-float-badge .badge-sub { font-size: 8px; letter-spacing: 1px; }
.about-text { padding-block: 40px; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(204,172,95,0.08);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition);
}
.about-feature:hover {
  border-color: rgba(204,172,95,0.2);
  background: rgba(204,172,95,0.03);
}
.about-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(204,172,95,0.1);
  border: 1px solid rgba(204,172,95,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.about-feature-text strong {
  display: block;
  font-family: var(--font-ar-display);
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 3px;
}
.about-feature-text p {
  font-size: 13px;
  color: var(--white-muted);
}

/* ── MENU SECTION ── */
.menu-section { background: var(--black-rich); }
.menu-header { text-align: center; margin-bottom: 60px; }
.menu-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu-cat-btn {
  font-family: var(--font-ar-display);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(204,172,95,0.25);
  background: transparent;
  color: var(--white-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.menu-cat-btn:hover,
.menu-cat-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black-primary);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.menu-item {
  background: linear-gradient(135deg, #2A2A2E, #303034);
  border: 1px solid rgba(204,172,95,0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all var(--transition);
}
.menu-item:hover {
  border-color: rgba(204,172,95,0.25);
  background: linear-gradient(135deg, #3B3122, #303034);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.menu-item-name {
  font-family: var(--font-ar-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white-warm);
  margin-bottom: 4px;
}
.menu-item-name-en {
  font-family: var(--font-en-body);
  font-size: 12px;
  font-style: italic;
  color: var(--white-muted);
}
.menu-item-price {
  font-family: var(--font-en-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-dot {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(204,172,95,0.2) 0, rgba(204,172,95,0.2) 4px, transparent 4px, transparent 8px);
  min-width: 20px;
}
.menu-category-section { display: none; }
.menu-category-section.active { display: block; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
  background: var(--charcoal);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-light);
  border: 1px dashed rgba(204,172,95,0.2);
  flex-direction: column;
  gap: 12px;
  color: var(--gold-cream);
  opacity: 0.5;
  font-size: 13px;
}
.gallery-placeholder svg { opacity: 0.4; }

/* ── RESERVATION ── */
.reservation-section { background: var(--marble-dark); }
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reservation-info { padding-top: 20px; }
.contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(204,172,95,0.08);
  border: 1px solid rgba(204,172,95,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  color: var(--white-muted);
  margin-bottom: 3px;
  font-family: var(--font-ar-display);
}
.contact-item-value {
  font-family: var(--font-ar-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white-warm);
}
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(204,172,95,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(204,172,95,0.08);
}

/* ── RESERVATION FORM ── */
.reservation-form {
  background: linear-gradient(135deg, #2A2A2E, #303034);
  border: 1px solid rgba(204,172,95,0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.reservation-form h3 {
  font-family: var(--font-ar-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(204,172,95,0.1);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }
.form-label {
  font-family: var(--font-ar-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-cream);
  opacity: 0.8;
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(204,172,95,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white-warm);
  font-family: var(--font-ar-body);
  font-size: 14px;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(204,172,95,0.04);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--black-rich); }
.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: linear-gradient(135deg, #2A2A2E, #303034);
  border: 1px solid rgba(204,172,95,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: rgba(204,172,95,0.2);
  transform: translateY(-3px);
}
.review-stars { color: var(--gold-primary); font-size: 16px; margin-bottom: 14px; }
.review-text {
  font-size: 15px;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(204,172,95,0.08);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ar-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--black-primary);
  flex-shrink: 0;
}
.review-author-name {
  font-family: var(--font-ar-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white-warm);
}
.review-author-date {
  font-size: 11px;
  color: var(--white-muted);
  margin-top: 2px;
}

/* ── MAP SECTION ── */
.map-section { padding: 0; }
.map-wrap {
  height: 420px;
  border-top: 1px solid rgba(204,172,95,0.1);
  border-bottom: 1px solid rgba(204,172,95,0.1);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) hue-rotate(180deg) brightness(0.8);
}
.map-overlay-card {
  position: absolute;
  top: 50%;
  inset-inline-end: 60px;
  transform: translateY(-50%);
  background: rgba(46,46,50,0.92);
  border: 1px solid rgba(204,172,95,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(12px);
  min-width: 240px;
  box-shadow: var(--shadow-deep);
}
.map-card-name {
  font-family: var(--font-en-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.map-card-address {
  font-family: var(--font-ar-body);
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.map-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold-cream);
  border-bottom: 1px solid rgba(204,172,95,0.3);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.map-card-link:hover { color: var(--gold-primary); }

/* ── FOOTER ── */
.drfattat-footer {
  background: var(--black-rich);
  border-top: 1px solid rgba(204,172,95,0.1);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--white-muted);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-ar-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-cream);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--white-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-primary); }
.footer-bottom {
  border-top: 1px solid rgba(204,172,95,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--white-muted);
  opacity: 0.5;
}
.footer-bottom-logo {
  font-family: var(--font-en-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-primary);
  opacity: 0.5;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  inset-inline-end: 32px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.65); }
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(204,172,95,0.4) 30%, rgba(204,172,95,0.4) 70%, transparent 100%);
  margin: 0;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── ADMIN HINT ── */
.admin-add-photo-hint {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(204,172,95,0.9);
  color: #2E2E32;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 0 var(--radius-md) 0 var(--radius-sm);
  font-weight: 700;
  z-index: 2;
}
.logged-in .gallery-item .admin-add-photo-hint { display: block; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { display: none; }
  .reservation-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-inline-end: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .lang-switcher { display: none; }
  .navbar-toggle { display: flex; }
  .navbar-cta { padding: 9px 16px; font-size: 12px; }
  .hero-btns { flex-direction: column; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-overlay-card { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reservation-form { padding: 24px 20px; }
  .wa-float { bottom: 20px; inset-inline-end: 20px; width: 50px; height: 50px; }
}

/* ── LANGUAGE SUPPORT ── */
[lang="en"] .ar-text { display: none; }
[lang="en"] .en-text { display: block; }
[lang="ar"] .en-text { display: none; }
[lang="ar"] .ar-text { display: block; }
.en-text { display: none; }

/* ══════════════════════════════════════════════
   BRANCHES SECTION
══════════════════════════════════════════════ */
.branches-section { background: var(--black-rich); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.branch-card {
  background: var(--charcoal);
  border: 1px solid rgba(204,172,95,0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.branch-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}
.featured-branch {
  border-color: rgba(204,172,95,0.5);
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(204,172,95,0.06) 100%);
}

.branch-badge {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-ar-body);
  background: rgba(204,172,95,0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(204,172,95,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.branch-icon {
  width: 56px; height: 56px;
  background: rgba(204,172,95,0.1);
  border: 1px solid rgba(204,172,95,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-primary);
}

.branch-name {
  font-family: var(--font-ar-display);
  font-size: 18px;
  color: var(--white-pure);
  margin: 0 0 8px;
  font-weight: 700;
}

.branch-address {
  font-family: var(--font-ar-body);
  font-size: 13px;
  color: var(--white-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.branch-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.branch-phone, .branch-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-ar-body);
  color: var(--gold-cream);
  text-decoration: none;
  background: rgba(204,172,95,0.08);
  border: 1px solid rgba(204,172,95,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  direction: ltr;
}
.branch-phone:hover, .branch-ig:hover {
  background: rgba(204,172,95,0.2);
  color: var(--gold-primary);
}

@media (max-width: 768px) {
  .branches-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════════
   MENU ITEM ENHANCEMENTS
══════════════════════════════════════════════ */
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item-img {
  width: 100%;
  height: 160px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}
.menu-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-item:hover .menu-item-img img {
  transform: scale(1.05);
}

.menu-item-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
  padding: 12px 0 0;
}

.menu-item-desc {
  font-size: 12px;
  color: var(--white-muted);
  font-family: var(--font-ar-body);
  margin-top: 4px;
  line-height: 1.5;
  opacity: 0.7;
}

.menu-item-featured {
  border-color: rgba(204,172,95,0.5) !important;
  background: linear-gradient(135deg, var(--charcoal-light) 0%, rgba(204,172,95,0.06) 100%) !important;
}

.featured-badge {
  display: inline-block;
  font-size: 10px;
  background: linear-gradient(135deg, #CCAC5F, #DCC280);
  color: #2E2E32;
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 6px;
  vertical-align: middle;
  font-family: var(--font-ar-body);
  font-weight: 700;
}

/* Price wrap alignment */
.menu-item-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ORDER NOW BUTTON
══════════════════════════════════════════════ */
.btn-order-now {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(204,172,95,.4);
  border-radius: 20px;
  padding: 5px 12px;
  color: var(--gold-cream);
  font-family: var(--font-ar-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s ease;
  letter-spacing: .3px;
}
.btn-order-now:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-color: var(--gold-primary);
  color: #2E2E32;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(204,172,95,.25);
}
.btn-order-now:active { transform: scale(.98); }
