/* Reset and Base Styles */
:root {
  --ui-cookie-banner-height: 0px;
  --menu-safe-top: env(safe-area-inset-top, 0px);
  --menu-safe-right: env(safe-area-inset-right, 0px);
  --menu-safe-bottom: max(env(safe-area-inset-bottom, 0px), var(--ui-cookie-banner-height, 0px));
  --menu-safe-left: env(safe-area-inset-left, 0px);
}

html,
body {
  background: linear-gradient(180deg, #1C1C1D 0%, #0F0F10 55%, #1C1C1D 100%);
  color: #e5e9f3;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
}

/* With `viewport-fit=cover`, keep the sticky navbar out of iOS safe-areas. */
.navbar.sticky-top {
  padding-top: env(safe-area-inset-top, 0px);
}

/* Ensures the restaurant name links stay centered across all breakpoints */
.navbar .navbar-brand {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.navbar-links {
  width: 100%;
  margin-top: 0.5rem;
}

.navbar-links .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.navbar-links .nav-link:hover,
.navbar-links .nav-link:focus {
  color: #ffb26b;
}

@media (min-width: 992px) {
  .navbar-links {
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-links .navbar-nav {
    justify-content: flex-start;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 12vh, 120px) 0 clamp(72px, 12vh, 130px);
  box-sizing: border-box;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  /* منع التفاعل مع الفيديو */
}

.hero-bg-video.is-hidden {
  display: none;
}

/* التظليل الرمادي الشفاف فوق الفيديو */
.hero-section .video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.6);
  /* تظليل رمادي داكن */
  z-index: 1;
}

.hero-section.no-video {
  background: linear-gradient(180deg, #1C1C1D 0%, #0F0F10 55%, #1C1C1D 100%);
}

.hero-section.no-video .video-overlay {
  display: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.navbar.bg-dark,
.navbar.navbar-dark {
  background: linear-gradient(135deg, #1C1C1D, #0F0F10) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* شعار المطعم */
.hero-section img {
  max-height: 300px;
  margin-bottom: 24px;
}

/* أزرار الهيرو */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-description {
  color: #f3f4f6;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  max-width: 640px;
  word-break: break-word;
}

.hero-buttons .btn-hero {
  width: min(260px, 80vw);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hero-buttons .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-hero--light {
  background: rgba(255, 255, 255, 0.08);
}

.btn-hero--accent {
  background: linear-gradient(120deg, #ff7a18, #e45b00);
  border-color: transparent;
  box-shadow: 0 15px 32px rgba(228, 91, 0, 0.45);
}

.hero-buttons .btn-hero--accent:hover {
  box-shadow: 0 18px 40px rgba(228, 91, 0, 0.5);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.btn-icon--ghost {
  background: rgba(28, 28, 28, 0.2);
}

.btn-icon i {
  margin-right: 0;
}

.btn-label {
  flex: 1;
  text-align: center;
}

i {
  margin-right: 14px;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 360px;
    padding: 84px 0 96px;
  }

  .hero-section .container {
    padding: 0 1.1rem;
  }

  .hero-section img {
    max-height: 220px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 10px auto;
    max-width: 520px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn-hero {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
  }
}

/* في الشاشات الصغيرة: تجعل الأزرار عمودية لكن تظل تأخذ نفس العرض */
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-section {
    padding: 78px 0 90px;
    min-height: 340px;
  }

  .hero-section .container {
    padding: 0 0.9rem;
  }

  .hero-buttons .btn-hero {
    width: 100%;
    /* في الموبايل: العرض يصبح 100% داخل الحاوية */
    max-width: 300px;
    /* يمكنك تقييده إن أردت */
  }
}

.showcase-section {
  background: linear-gradient(180deg, #1C1C1D 0%, #0F0F10 60%, #1C1C1D 100%);
  color: #e2e8f0;
  padding: clamp(72px, 10vh, 120px) 0;
  overflow: hidden;
}

.showcase-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 28px;
}

.showcase-head__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  font-weight: 700;
  margin-bottom: 6px;
}

.showcase-head__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  color: #f8fafc;
}

.showcase-head__lead {
  margin: 10px auto 0;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
}

.showcase-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
}

.showcase-stage {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.showcase-stage__frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0F0F10;
}

.showcase-stage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: clamp(260px, 48vh, 520px);
}

.showcase-stage__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.2s ease;
}

.showcase-stage__nav--prev {
  left: 12px;
}

.showcase-stage__nav--next {
  right: 12px;
}

.showcase-stage__nav:hover,
.showcase-stage__nav:focus {
  background: rgba(59, 130, 246, 0.95);
  transform: translateY(-50%) scale(1.02);
  outline: none;
}

@media (max-width: 640px) {
  .showcase-stage__nav {
    display: none;
  }
}

.showcase-stage__caption {
  margin: 10px 0 0;
  color: #cbd5e1;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.showcase-thumb-tile {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.showcase-thumb-tile img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.showcase-thumb-tile__dot {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  align-self: center;
}

.showcase-thumb-tile.is-active {
  border-color: #60a5fa;
  box-shadow: 0 12px 28px rgba(96, 165, 250, 0.3);
  transform: translateY(-2px);
}

.showcase-thumb-tile.is-active .showcase-thumb-tile__dot {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.showcase-thumb-tile:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.showcase-stage__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
}

.showcase-section .container {
  position: relative;
}

.showcase-section .container::before {
  content: none;
}

.showcase-section .container::after {
  content: none;
}

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

  .showcase-stage__frame img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .showcase-section {
    padding: 64px 0;
  }

  .showcase-head__lead {
    font-size: 1rem;
  }

  .showcase-stage__frame img {
    min-height: 240px;
  }

  .showcase-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  }

  .showcase-stage__nav {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .showcase-stage__nav--prev {
    left: 10px;
  }

  .showcase-stage__nav--next {
    right: 10px;
  }

  .showcase-thumb-tile img {
    height: 52px;
  }
}

/* Main Content */
.container h2 {
  margin-bottom: 20px;
}

.list-group-item {
  border: none;
  padding: 10px 0;
}

/* Footer */
.footer {
  background-color: #343a40;
  color: #fff;
}

/* أزرار */
.btn-warning {
  font-weight: bold;
}

/* Additional Custom Styles */
/* يمكنك إضافة أي ستايل إضافي هنا حسب حاجتك */
/* === Footer Section Premium Glass Redesign === */
.footer-section {
  --footer-text: #e6eef9;
  --footer-text-muted: #9fb1cc;
  --footer-border: rgba(148, 163, 184, 0.24);
  --footer-border-strong: rgba(129, 146, 180, 0.42);
  --footer-panel-bg: rgba(15, 23, 42, 0.6);
  --footer-card-bg: rgba(15, 23, 42, 0.52);
  --footer-hover-bg: rgba(30, 41, 59, 0.78);
  --footer-shadow: 0 24px 48px rgba(2, 6, 23, 0.48);
  --footer-glow-warm: rgba(251, 146, 60, 0.18);
  --footer-glow-cool: rgba(56, 189, 248, 0.2);
  --footer-icon-size: 62px;
  color: var(--footer-text);
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 92px) 0 calc(24px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(60rem 30rem at 12% 0%, rgba(249, 115, 22, 0.15), transparent 66%),
    radial-gradient(58rem 30rem at 96% 18%, rgba(56, 189, 248, 0.14), transparent 72%),
    linear-gradient(160deg, #040714 0%, #0a1020 46%, #050913 100%);
}

.footer-section * {
  box-sizing: border-box;
}

.footer-section::before,
.footer-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(52px);
}

.footer-section::before {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 30px;
  background: var(--footer-glow-warm);
}

.footer-section::after {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -120px;
  background: var(--footer-glow-cool);
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(20px, 4vw, 34px);
}

.footer-contact-card {
  position: relative;
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 24px;
  border: 1px solid var(--footer-border);
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.38));
  text-decoration: none;
  color: inherit;
  box-shadow: var(--footer-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.footer-contact-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.footer-contact-card:hover,
.footer-contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--footer-border-strong);
  background: linear-gradient(140deg, var(--footer-hover-bg), rgba(15, 23, 42, 0.62));
}

.footer-contact-card:focus-visible {
  outline: 2px solid rgba(251, 146, 60, 0.56);
  outline-offset: 3px;
}

.footer-contact-card.is-inactive {
  opacity: 0.68;
  border-style: dashed;
  transform: none;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.34);
}

.footer-contact-card.is-inactive:hover,
.footer-contact-card.is-inactive:focus-visible {
  transform: none;
}

.footer-contact-card__icon {
  width: var(--footer-icon-size);
  height: var(--footer-icon-size);
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8fbff;
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.38);
  flex: 0 0 var(--footer-icon-size);
}

.footer-contact-card--phone .footer-contact-card__icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 14px 26px rgba(34, 197, 94, 0.3);
}

.footer-contact-card__icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.footer-contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.footer-contact-card__label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-text-muted);
  font-weight: 600;
}

.footer-contact-card__value {
  color: var(--footer-text);
  font-size: 1.03rem;
  line-height: 1.55;
  word-break: break-word;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.footer-panel {
  background: var(--footer-panel-bg);
  border: 1px solid var(--footer-border);
  border-radius: 28px;
  padding: clamp(22px, 3.2vw, 36px);
  box-shadow: var(--footer-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-panel--brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  display: inline-flex;
  max-width: 190px;
  width: fit-content;
  text-decoration: none;
}

.footer-brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-brand-description {
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.72;
  word-break: break-word;
}

.footer-social-cloud {
  border: 1px solid rgba(148, 163, 184, 0.23);
  border-radius: 22px;
  padding: 16px 18px;
  background: rgba(15, 23, 42, 0.44);
}

.footer-social-cloud__title {
  margin: 0 0 12px;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-text-muted);
  font-weight: 700;
}

.footer-social-cloud__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-link {
  width: 50px;
  height: 50px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(150deg, rgba(148, 163, 184, 0.22), rgba(30, 41, 59, 0.2));
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.36);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social-link i {
  margin-right: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(251, 146, 60, 0.68);
  color: #ffffff;
}

.footer-social-link:focus-visible {
  outline: 2px solid rgba(251, 146, 60, 0.52);
  outline-offset: 3px;
}

.footer-social-link.is-hidden,
.footer-social-cloud.is-empty {
  display: none;
}

.footer-panel__title {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  font-weight: 700;
  color: #f8fafc;
}

.footer-panel--links .footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  list-style: none;
}

.footer-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(226, 232, 240, 0.88);
  text-decoration: none;
  font-weight: 500;
  border-radius: 10px;
  padding: 5px 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fb923c;
  transform: translateX(3px);
}

.footer-link:focus-visible {
  outline: 2px solid rgba(251, 146, 60, 0.55);
  outline-offset: 2px;
}

.footer-legal-bar {
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.footer-legal-copy {
  margin: 0;
  text-align: center;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  word-break: break-word;
}

.footer-section .gz-platform-attribution {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(159, 177, 204, 0.95);
}

.footer-section .gz-platform-attribution__link {
  color: rgba(222, 233, 248, 0.96);
}

@media (max-width: 991.98px) {
  .footer-contact-grid,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .footer-contact-card {
    min-height: 0;
    align-items: flex-start;
  }

  .footer-contact-card__icon {
    --footer-icon-size: 54px;
    border-radius: 16px;
  }

  .footer-panel--links .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-brand-logo {
    max-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-contact-card,
  .footer-social-link,
  .footer-link {
    transition: none;
  }
}

.map-link {
  color: inherit;
  /* يأخذ لون النص من العنصر الأساسي */
  text-decoration: none;
  /* إزالة الخط السفلي */
  cursor: pointer;
  /* يغير المؤشر ليظهر كنقر قابل للضغط */
}

.map-link:hover {
    text-decoration: underline;
    /* اختياري: إضافة خط سفلي عند مرور المؤشر */
}

@media (max-width: 576px) {
    .hero-section img {
        max-height: 200px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero-buttons .btn-hero {
        width: 100%;
        max-width: 240px;
        font-size: 1rem;
        padding: 0.65rem 1rem;
    }

    .hero-buttons {
        margin-top: 10px;
        margin-bottom: 10px;
        gap: 0.6rem;
    }

    .hero-section {
        min-height: 340px;
        height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

/* Cookie info banner – shared style for restaurant landing page */
.cookie-info-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: #1C1C1D;
  color: #e5e7eb;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.35);
}

.cookie-info-banner--visible {
  display: block;
}

.cookie-info-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-info-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.cookie-info-text a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-info-text a:hover {
  color: #bfdbfe;
}

.cookie-info-button {
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: #f97316;
  color: #111827;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}

.cookie-info-button:hover {
  background: #fb923c;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cookie-info-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-info-button {
    width: 100%;
    text-align: center;
  }
}

body.cookie-info-banner-visible {
  padding-bottom: calc(
    clamp(18px, 3vw, 32px) + max(var(--ui-cookie-banner-height, 90px), env(safe-area-inset-bottom, 0px))
  );
}

/* Online-ordering maintenance modal (shared with menu/order flows). */
.online-ordering-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(24px + var(--menu-safe-top)) calc(18px + var(--menu-safe-right))
    calc(24px + var(--menu-safe-bottom)) calc(18px + var(--menu-safe-left));
  min-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: radial-gradient(circle at top left, rgba(244, 63, 94, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.2), rgba(15, 23, 42, 0.98));
  z-index: 10030;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

@supports (height: 1dvh) {
  .online-ordering-modal {
    min-height: 100dvh;
  }
}

.online-ordering-modal,
.online-ordering-modal__panel {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.online-ordering-modal::-webkit-scrollbar,
.online-ordering-modal__panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.online-ordering-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.online-ordering-modal-open {
  overflow: hidden;
}

.online-ordering-modal__backdrop {
  position: absolute;
  inset: 0;
}

.online-ordering-modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-width: min(520px, 100%);
  max-height: calc(90vh - var(--menu-safe-top) - var(--menu-safe-bottom));
  border-radius: 18px;
  padding: 24px 24px calc(20px + var(--menu-safe-bottom));
  background: radial-gradient(circle at top left, #1f2937, #020617);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(148, 163, 184, 0.35);
  color: #e5e7eb;
  z-index: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@supports (height: 1dvh) {
  .online-ordering-modal__panel {
    max-height: calc(90dvh - var(--menu-safe-top) - var(--menu-safe-bottom));
  }
}

.online-ordering-modal__header {
  margin-bottom: 12px;
}

.online-ordering-modal__logo {
  margin-bottom: 24px;
}

.online-ordering-modal__logo-img {
  max-height: 96px;
  width: auto;
  display: block;
}

.online-ordering-modal__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f9fafb;
  margin: 0;
}

.online-ordering-modal__body {
  font-size: 0.95rem;
  line-height: 1.6;
}

.online-ordering-modal__message {
  margin: 0 0 16px;
  color: #e5e7eb;
}

.online-ordering-modal__contact-title {
  font-weight: 600;
  margin: 0 0 4px;
  color: #f9fafb;
}

.online-ordering-modal__contact-link {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 4px 0;
  color: #e5e7eb;
  font: inherit;
  cursor: pointer;
}

.online-ordering-modal__contact-link:hover,
.online-ordering-modal__contact-link:focus-visible {
  color: #fb2775;
  background: transparent;
  outline: none;
}

.online-ordering-modal__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.online-ordering-modal__btn {
  border-radius: 999px;
  border: none;
  padding: 10px 26px;
  background: linear-gradient(135deg, #fb2775, #ff5775);
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(248, 113, 113, 0.45),
    0 0 0 1px rgba(248, 113, 113, 0.55);
}

.online-ordering-modal__btn:hover {
  transform: translateY(-1px);
}
