:root {
  --red: #b2323a;
  --red-dark: #7f1f28;
  --red-deep: #53151d;
  --cream: #fff1cc;
  --cream-light: #fffaf0;
  --ink: #35161a;
  --muted: #765e5f;
  --white: #fff;
  --line: rgba(178, 50, 58, .16);
  --shadow: 0 24px 70px rgba(83, 21, 29, .13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --font-ar: "Noto Kufi Arabic", Tahoma, sans-serif;
  --font-en: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-light);
  font-family: var(--font-ar);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="en"] body { font-family: var(--font-en); }
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fill-icon { fill: currentColor; stroke: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  inset-inline-start: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(178, 50, 58, .38); outline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(178, 50, 58, .08);
  background: rgba(255, 250, 240, .88);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 58px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
.brand span, .footer-brand span { display: grid; line-height: 1.25; }
.brand strong { color: var(--red); font-size: .94rem; }
.brand small {
  color: var(--muted);
  font-family: var(--font-en);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: .88rem; font-weight: 600; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.language-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  background: var(--cream);
  cursor: pointer;
  font-family: var(--font-en);
  font-size: .76rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.language-toggle:hover { transform: translateY(-2px); background: #ffe8ad; }

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 241, 204, .72), rgba(255, 250, 240, .98) 58%),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(178, 50, 58, .025) 45px);
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 70px solid rgba(178, 50, 58, .045);
  border-radius: 50%;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { top: 100px; left: -140px; width: 330px; height: 330px; background: rgba(178, 50, 58, .07); }
.hero-glow-two { top: 35%; right: 44%; width: 140px; height: 140px; background: rgba(255, 224, 143, .5); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
  min-height: 700px;
  padding-block: 72px 86px;
}
.hero-copy { max-width: 640px; }
.hero-copy, .hero-grid, .hero-actions { min-width: 0; }
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(30, 128, 71, .16);
  border-radius: 999px;
  color: #1a6d3d;
  background: rgba(61, 166, 101, .1);
  font-size: .78rem;
  font-weight: 700;
}
.open-status.is-closed { color: var(--red-dark); border-color: var(--line); background: rgba(178, 50, 58, .08); }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ca15e;
  box-shadow: 0 0 0 5px rgba(44, 161, 94, .12);
}
.is-closed .status-dot { background: var(--red); box-shadow: 0 0 0 5px rgba(178, 50, 58, .1); }
.eyebrow {
  margin: 24px 0 9px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.hero h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.2;
  letter-spacing: -.045em;
}
.hero h1 small {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: .02em;
}
.hero h1 > span { display: block; overflow-wrap: anywhere; }
.hero-description {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: .86rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 14px 30px rgba(178, 50, 58, .22); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 18px 34px rgba(178, 50, 58, .28); }
.button-secondary { color: var(--red); border-color: var(--line); background: rgba(255, 255, 255, .68); }
.button-secondary:hover { background: #fff; }
.quick-links { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 30px; }
.quick-links > a { display: flex; align-items: center; gap: 11px; }
.quick-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--red);
  background: var(--cream);
}
.quick-icon svg { width: 20px; height: 20px; }
.quick-links span > small, .quick-links span > strong { display: block; }
.quick-links small { color: var(--muted); font-size: .75rem; }
.quick-links strong { margin-top: 2px; font-size: .76rem; }
.quick-links a[href*="instagram"] strong { direction: ltr; unicode-bidi: isolate; }

.hero-visual { position: relative; padding: 28px 24px 52px; }
.logo-frame {
  position: relative;
  z-index: 2;
  padding: 28px;
  border: 1px solid rgba(178, 50, 58, .13);
  border-radius: 50% 50% 44% 56% / 45% 54% 46% 55%;
  background: rgba(255, 241, 204, .82);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.logo-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(178, 50, 58, .24);
  border-radius: inherit;
}
.logo-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border-radius: 42% 42% 36% 46%;
  object-fit: cover;
  transform: rotate(-2deg);
}
.frame-line { position: absolute; z-index: -1; height: 4px; border-radius: 4px; background: var(--red); opacity: .42; }
.frame-line-one { top: 17%; left: -36px; width: 110px; transform: rotate(-30deg); }
.frame-line-two { right: -28px; bottom: 21%; width: 90px; transform: rotate(35deg); }
.hero-card {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(178, 50, 58, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 36px rgba(83, 21, 29, .16);
  backdrop-filter: blur(12px);
}
[dir="rtl"] .hero-card { right: auto; left: -12px; }
.hero-card span { display: block; color: var(--muted); font-size: .66rem; }
.hero-card a { display: block; margin-top: 3px; color: var(--red); font-family: var(--font-en); font-size: 1rem; font-weight: 800; }

.hours-section { padding: 96px 0; color: var(--cream); background: var(--red-deep); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}
.section-heading .eyebrow { margin-top: 0; }
.section-heading h2 { margin: 0; color: var(--red); font-size: clamp(1.75rem, 4vw, 2.8rem); line-height: 1.35; }
.section-heading > p { max-width: 510px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.9; }
.section-heading-light h2, .section-heading-light .eyebrow { color: var(--cream); }
.section-heading-light > p { color: rgba(255, 241, 204, .68); }
.hours-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; }
.hours-day {
  min-height: 148px;
  padding: 20px 14px;
  border: 1px solid rgba(255, 241, 204, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}
.hours-day.is-today { color: var(--red-deep); border-color: var(--cream); background: var(--cream); transform: translateY(-7px); box-shadow: 0 14px 28px rgba(0, 0, 0, .16); }
.hours-day small { color: rgba(255, 241, 204, .55); font-size: .75rem; font-weight: 700; }
.hours-day.is-today small { color: var(--red); }
.hours-day strong { display: block; margin-top: 8px; font-size: .82rem; }
.hours-day time { display: block; margin-top: 19px; font-family: var(--font-en); font-size: .75rem; line-height: 1.65; direction: ltr; }
.hours-day time span { display: block; }

.menu-section { min-height: 620px; padding: 104px 0 118px; }
.menu-toolbar { margin-bottom: 34px; }
.search-box {
  position: relative;
  width: min(100%, 520px);
  display: block;
}
.search-box svg {
  position: absolute;
  top: 50%;
  inset-inline-start: 18px;
  width: 20px;
  height: 20px;
  color: var(--red);
  transform: translateY(-50%);
}
.search-box input {
  width: 100%;
  height: 54px;
  padding: 0 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 28px rgba(83, 21, 29, .05);
}
.search-box input:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(178, 50, 58, .08); }
.search-box input:disabled { opacity: .65; cursor: not-allowed; }
.category-chips {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  margin-top: 18px;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}
.category-chips::-webkit-scrollbar { display: none; }
.category-chip {
  flex: 0 0 auto;
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--red-dark);
  background: transparent;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 700;
}
.category-chip.is-active { color: #fff; border-color: var(--red); background: var(--red); }
.menu-feedback {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  border: 1px dashed rgba(178, 50, 58, .22);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
  background: rgba(255, 241, 204, .32);
}
.menu-feedback[hidden] { display: none; }
.menu-feedback h3 { margin: 15px 0 7px; color: var(--ink); font-size: 1.05rem; }
.menu-feedback p { max-width: 540px; margin: 0; font-size: .8rem; line-height: 1.9; }
.feedback-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--red);
  background: var(--cream);
}
.feedback-icon svg { width: 27px; height: 27px; }
.loader {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border: 3px solid rgba(178, 50, 58, .15);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.menu-category + .menu-category { margin-top: 58px; }
.category-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.category-heading h3 { margin: 0; color: var(--red); font-size: 1.35rem; }
.category-heading span { height: 1px; flex: 1; background: var(--line); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(178, 50, 58, .11);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 13px 35px rgba(83, 21, 29, .07);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(83, 21, 29, .12); }
.product-image-wrap { position: relative; aspect-ratio: 1.45 / 1; overflow: hidden; background: var(--cream); }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image { transform: scale(1.04); }
.product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(178, 50, 58, .45);
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, .8), transparent 35%),
    var(--cream);
}
.product-placeholder svg { width: 48px; height: 48px; }
.featured-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: .75rem;
  font-weight: 800;
}
.product-body { padding: 18px; }
.product-title-row { display: flex; align-items: start; justify-content: space-between; gap: 15px; }
.product-title { margin: 0; font-size: .94rem; line-height: 1.6; }
.product-price { flex: 0 0 auto; color: var(--red); font-family: var(--font-en); font-size: .83rem; font-weight: 800; direction: ltr; }
.product-description {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.contact-section { padding: 0 0 96px; }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 48px 52px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 241, 204, .15), transparent 35%),
    var(--red);
  box-shadow: 0 25px 60px rgba(178, 50, 58, .2);
}
.contact-copy .eyebrow { margin-top: 0; color: var(--cream); }
.contact-copy h2 { margin: 0; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.contact-copy > p:last-child { margin: 11px 0 0; color: rgba(255, 255, 255, .72); font-size: .82rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button-cream { color: var(--red); background: var(--cream); }
.button-outline-light { color: #fff; border-color: rgba(255, 255, 255, .35); background: transparent; font-family: var(--font-en); }

.site-footer { padding: 44px 0 104px; border-top: 1px solid var(--line); background: var(--cream); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand img { width: 54px; height: 40px; border-radius: 9px; object-fit: cover; }
.footer-brand strong { color: var(--red); font-size: .8rem; }
.footer-brand small { color: var(--muted); font-family: var(--font-en); font-size: .75rem; }
.footer-inner > p { margin: 0; color: var(--muted); font-size: .75rem; }
.footer-links { display: flex; gap: 18px; color: var(--red); font-size: .75rem; font-weight: 700; }

.mobile-nav {
  position: fixed;
  z-index: 45;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  height: 66px;
  align-items: center;
  justify-content: space-around;
  border: 1px solid rgba(178, 50, 58, .12);
  border-radius: 20px;
  background: rgba(255, 250, 240, .93);
  box-shadow: 0 18px 50px rgba(83, 21, 29, .18);
  backdrop-filter: blur(18px);
}
.mobile-nav > a {
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}
.mobile-nav > a > svg { width: 20px; height: 20px; }
.mobile-nav-main { color: var(--red) !important; }
.mobile-nav-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-top: -29px;
  border: 5px solid var(--cream-light);
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}
.mobile-nav-icon svg { width: 20px; height: 20px; }

.product-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}
.product-modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(53, 22, 26, .7); backdrop-filter: blur(8px); }
.modal-panel {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border-radius: 26px;
  background: var(--cream-light);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
  transform: translateY(18px);
  transition: transform .22s ease;
}
.is-open .modal-panel { transform: translateY(0); }
.modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  inset-inline-end: 14px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--red);
  background: rgba(255, 250, 240, .92);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
}
.modal-image-wrap { aspect-ratio: 1.65 / 1; overflow: hidden; background: var(--cream); }
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-image-wrap .product-placeholder { min-height: 260px; }
.modal-body { padding: 28px; }
.modal-category { color: var(--red); font-size: .68rem; font-weight: 800; }
.modal-title { margin: 6px 0 0; font-size: 1.45rem; }
.modal-description { margin: 12px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.9; }
.modal-price { margin-top: 20px; color: var(--red); font-family: var(--font-en); font-size: 1.1rem; font-weight: 800; direction: ltr; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 34px; }
  .hours-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hours-day.is-today { transform: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 82px; }
  .container { width: min(calc(100% - 28px), 620px); }
  .desktop-nav { display: none; }
  .header-inner { min-height: 70px; }
  .brand img { width: 50px; height: 38px; }
  .brand strong { font-size: .8rem; }
  .hero { min-height: auto; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 54px 78px;
  }
  .hero-copy { text-align: center; }
  .open-status { margin-inline: auto; }
  .hero-description { margin-inline: auto; }
  .hero-actions, .quick-links { justify-content: center; }
  .hero-visual { width: min(460px, 100%); margin-inline: auto; }
  .hero-card { right: 5px; }
  [dir="rtl"] .hero-card { right: auto; left: 5px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin-top: 12px; }
  .hours-section, .menu-section { padding-block: 72px; }
  .hours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hours-day { min-height: 128px; }
  .contact-card { display: block; padding: 36px 27px; text-align: center; }
  .contact-actions { justify-content: center; margin-top: 25px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .mobile-nav { display: flex; }
}

@media (max-width: 540px) {
  .brand span { display: none; }
  .language-toggle { width: 42px; height: 42px; }
  .hero-grid { padding-top: 42px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .hero-description { font-size: .86rem; line-height: 1.9; }
  .hero-actions .button { min-width: 0; flex: 1 1 140px; padding-inline: 14px; }
  .quick-links { gap: 18px; }
  .quick-links > a { flex: 1 1 130px; justify-content: center; }
  .logo-frame { padding: 18px; }
  .hero-visual { padding-inline: 6px; }
  .hero-card { bottom: 7px; }
  .hours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .hours-day { padding: 17px 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image-wrap { aspect-ratio: 1.6 / 1; }
  .contact-section { padding-bottom: 76px; }
  .contact-actions { flex-direction: column; }
  .modal-body { padding: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
