
:root {
  --bg: #f6f7fb;
  --surface: rgba(255,255,255,0.78);
  --surface-solid: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: rgba(16,24,40,0.08);
  --shadow: 0 10px 30px rgba(16,24,40,0.08);
  --shadow-lg: 0 18px 44px rgba(16,24,40,0.12);
  --primary: #ff5a3d;
  --primary-2: #ff7b54;
  --dark: #0f1728;
  --success-soft: #fff3ec;
  --success-text: #b54708;
  --radius: 22px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255,122,84,0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(59,130,246,0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

p { color: var(--muted); }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
.pt-extra { padding-top: 140px; }
.section-space { padding: 96px 0; }
.content-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 24px rgba(16,24,40,0.06);
  font-size: 13px;
  font-weight: 700;
  color: #344054;
  backdrop-filter: blur(12px);
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.navbar {
  padding: 14px 0;
  background: rgba(12,18,32,0.20);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease, padding .28s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(15,23,42,0.84);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  border-bottom-color: rgba(255,255,255,0.06);
}
.navbar-brand {
  color: #fff !important;
  font-size: 1.55rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-logo-wrap img,
.foodspot-logo-holder img {
  max-height: 36px;
  width: auto;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 20px rgba(255,90,61,0.35);
  font-size: 1rem;
}
.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb7185, #ef4444);
  box-shadow: 0 0 0 6px rgba(239,68,68,0.12);
  display: inline-block;
}
.navbar-toggler { border: 0; box-shadow: none !important; }
.navbar-nav {
  align-items: center;
  gap: 6px;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600;
  margin-left: 6px;
  padding: 10px 14px !important;
  border-radius: 999px;
  transition: .25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.current-menu-item,
.navbar-nav .nav-link.current_page_item,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active-link {
  color: #fff !important;
  background: rgba(255,255,255,0.09);
}
.nav-cta {
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(220,38,38,.22);
  transition: .25s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(220,38,38,.28);
  color: #fff !important;
}

.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10,15,30,0.58), rgba(10,15,30,0.72)),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80') center center/cover no-repeat;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,123,84,0.26), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(59,130,246,0.15), transparent 24%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-tag {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(12px);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 1.04;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-subtitle {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  margin-bottom: 34px;
}
.hero-search-box {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  padding: 14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 54px rgba(0,0,0,0.2);
  backdrop-filter: blur(14px);
}
.hero-search-box .input-group-text {
  border: 0;
  background: transparent;
  color: #98a2b3;
  padding-left: 18px;
}
.hero-search-box .form-control {
  min-height: 60px;
  border: 0;
  box-shadow: none;
  background: transparent;
  font-size: 15px;
  color: var(--text);
}

.btn-main,
.btn-outline-main,
.btn-soft,
.action-btn {
  min-height: 54px;
  border-radius: 16px;
  font-weight: 700;
  padding: 12px 18px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-main {
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 26px rgba(255,90,61,0.28);
}
.btn-main:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255,90,61,0.34);
}
.btn-outline-main {
  color: var(--primary);
  background: rgba(255,90,61,0.08);
  border: 1px solid rgba(255,90,61,0.18);
}
.btn-outline-main:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  transform: translateY(-2px);
}
.load-more-btn { min-width: 240px; padding-left: 22px; padding-right: 22px; }
.restaurant-item.is-hidden,
.dish-item.is-hidden { display: none !important; }

.card-shell {
  height: 100%;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
  box-shadow: var(--shadow);
}
.restaurant-card,
.dish-card,
.menu-card {
  background: rgba(255,255,255,0.92);
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
}
.restaurant-card:hover,
.dish-card:hover,
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.restaurant-card .image-wrap,
.dish-card .image-wrap,
.menu-card .image-wrap { position: relative; overflow: hidden; }
.restaurant-card img,
.dish-card img,
.menu-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.restaurant-card img { height: 250px; }
.dish-card img { height: 220px; }
.menu-card img { height: 210px; }
.restaurant-card:hover img,
.dish-card:hover img,
.menu-card:hover img { transform: scale(1.06); }
.card-overlay-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(16,24,40,0.14);
  font-size: 13px;
  font-weight: 700;
}
.card-body-modern,
.menu-body { padding: 24px; }
.card-title-modern {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.card-meta,
.restaurant-actions,
.dish-actions,
.hero-badges,
.restaurant-meta,
.menu-toolbar,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.meta-pill,
.badge-cuisine,
.hero-badge,
.brand-chip,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.badge-cuisine {
  background: var(--success-soft);
  color: var(--success-text);
}
.meta-pill,
.mini-tag { color: #344054; background: #f2f4f7; }
.restaurant-copy,
.dish-copy,
.menu-desc { font-size: 15px; line-height: 1.75; margin-bottom: 18px; }

.cuisine-zone {
  position: relative;
  background: radial-gradient(circle at top center, rgba(255,123,84,0.08), transparent 28%), #ffffff;
  border-top: 1px solid rgba(16,24,40,0.04);
  border-bottom: 1px solid rgba(16,24,40,0.04);
}
.featured-cuisine-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(16,24,40,0.06);
  border-radius: 24px;
  padding: 20px 14px 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.28s ease;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
}
.featured-cuisine-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255,90,61,0.12), transparent 68%);
  pointer-events: none;
}
.featured-cuisine-card:hover,
.featured-cuisine-card.active {
  transform: translateY(-8px);
  border-color: rgba(255,90,61,0.2);
  box-shadow: 0 18px 40px rgba(16,24,40,0.12);
}
.featured-cuisine-card.active {
  background: linear-gradient(180deg, rgba(255,243,236,0.95), rgba(255,255,255,0.95));
}
.featured-cuisine-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 20px rgba(16,24,40,0.12);
  margin-bottom: 14px;
}
.featured-cuisine-card h6 { font-size: 15px; font-weight: 800; margin: 0 0 6px; color: var(--text); }
.featured-cuisine-card small { color: var(--muted); font-size: 12px; font-weight: 600; }

.seo-content { border-top: 1px solid rgba(15,23,42,0.06); }
.seo-content p { font-size: 15.5px; }

.hero-wrap { padding-top: 84px; position: relative; }
.cover {
  min-height: 360px;
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(90deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.58) 38%, rgba(15,23,42,.34) 100%),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80') center center/cover no-repeat;
  display: flex;
  align-items: end;
  padding: 42px 0 108px;
  position: relative;
  overflow: hidden;
}
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.84);
  font-size: .95rem;
  margin-bottom: 18px;
}
.hero-text {
  color: rgba(255,255,255,.88);
  max-width: 720px;
  font-size: 1.05rem;
  margin-bottom: 22px;
}
.floating-summary { margin-top: -82px; position: relative; z-index: 3; }
.summary-card {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-lg);
  border-radius: 28px;
  padding: 28px;
}
.summary-title { font-size: 2rem; font-weight: 800; }
.brand-chip {
  padding: 8px 14px;
  background: #fff1f2;
  color: #dc2626;
}
.restaurant-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.action-btn {
  border: none;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  width: 100%;
}
.action-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12); }
.btn-yummfy { background: linear-gradient(135deg, #7c3aed, #ec4899); color: #fff; }
.btn-uber { background: #111827; color: #fff; }
.btn-grubhub { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; }
.btn-doordash { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; }
.main-section { padding: 42px 0 80px; }
.section-card,
.sidebar-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.sidebar-card { position: sticky; top: 100px; }
.sidebar-title { font-size: 1.3rem; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.info-item {
  padding: 18px;
  border-radius: 18px;
  background: #f9fafb;
  border: 1px solid var(--line);
}
.info-item-full { grid-column: 1 / -1; }
.info-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.info-value {
  font-size: .96rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.status-row:last-child { border-bottom: 0; }
.status-ok {
  color: #16a34a;
  background: #ecfdf3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
}
.map-box {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--line);
  position: relative;
}
.map-box img { width: 100%; height: 220px; object-fit: cover; display: block; }
.map-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(17,24,39,0.85);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.menu-chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  cursor: pointer;
}
.menu-chip:hover,
.menu-chip.active {
  background: linear-gradient(135deg, #111827, #374151);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 10px;
}
.menu-name {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.footer {
  background: linear-gradient(180deg, #121826, #0b1020);
  color: #d0d5dd;
  padding: 78px 0 30px;
  margin-top: 0;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer a {
  color: #98a2b3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}
.footer a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer p { color: #98a2b3; }
.copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 26px;
  padding-top: 18px;
  text-align: center;
  color: #98a2b3;
  font-size: 14px;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .hero-banner { min-height: 850px; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .navbar-nav .nav-link { margin-left: 0; margin-top: 4px; }
  .cover { min-height: 420px; padding-bottom: 120px; }
  .summary-card { padding: 22px; }
  .sidebar-card { position: static; }
  .navbar-nav { padding-top: 10px; }
  .nav-link { margin-left: 0; }
  .nav-cta { margin-left: 0; margin-top: 10px; width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  .section-space { padding: 74px 0; }
  .hero-search-box { border-radius: 22px; }
  .hero-search-box .btn-main,
  .hero-search-box .form-control { min-height: 52px; }
  .restaurant-actions,
  .dish-actions { flex-direction: column; }
  .hero-title { font-size: 2.2rem; }
  .cover { border-radius: 0 0 26px 26px; }
  .info-grid { grid-template-columns: 1fr; }
  .restaurant-meta span { width: 100%; justify-content: flex-start; }
  .summary-card { border-radius: 22px; }
  .status-row { align-items: flex-start; flex-direction: column; }
  .status-value { text-align: left; }
}

.foodspot-logo-holder {
  display: inline-flex;
  align-items: center;
}
.foodspot-logo-holder img,
img.foodspot-theme-logo {
  display: block;
  width: auto;
  max-height: 42px;
}
.footer-logo img,
.footer-brand img.foodspot-theme-logo {
  max-height: 46px;
}
.footer-brand .foodspot-logo-holder + * {
  display:none;
}

/* ===== Scoped single restaurant detail styles ===== */
.single-restaurant .hero-wrap { padding-top: 84px; position: relative; }
.single-restaurant .cover {
  min-height: 360px;
  border-radius: 0 0 34px 34px;
  display: flex;
  align-items: end;
  padding: 42px 0 108px;
  position: relative;
  overflow: hidden;
}
.single-restaurant .crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.84);
  font-size: .95rem;
  margin-bottom: 18px;
}
.single-restaurant .hero-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 720px;
}
.single-restaurant .hero-text {
  color: rgba(255,255,255,.88);
  max-width: 720px;
  font-size: 1.05rem;
  margin-bottom: 22px;
}
.single-restaurant .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.single-restaurant .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
}
.single-restaurant .floating-summary { margin-top: -82px; position: relative; z-index: 3; }
.single-restaurant .summary-card {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-lg);
  border-radius: 28px;
  padding: 28px;
}
.single-restaurant .summary-title { font-size: 2rem; font-weight: 800; }
.single-restaurant .brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1f2;
  color: #dc2626;
  font-weight: 700;
  font-size: .85rem;
}
.single-restaurant .restaurant-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 500;
}
.single-restaurant .restaurant-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.single-restaurant .action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}
.single-restaurant .action-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12); }
.single-restaurant .btn-yummfy { background: linear-gradient(135deg, #7c3aed, #ec4899); color: #fff; }
.single-restaurant .btn-uber { background: #111827; color: #fff; }
.single-restaurant .btn-grubhub { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; }
.single-restaurant .btn-doordash { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; }
.single-restaurant .main-section { padding: 42px 0 80px; }
.single-restaurant .section-card,
.single-restaurant .sidebar-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 26px;
}
.single-restaurant .section-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.single-restaurant .section-subtitle {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.65;
}
.single-restaurant .sidebar-card { position: sticky; top: 100px; }
.single-restaurant .sidebar-title { font-size: 1.16rem !important; margin-bottom: 8px; }
.single-restaurant .sidebar-note { font-size: .92rem; line-height: 1.65; }
.single-restaurant .info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}
.single-restaurant .info-item {
  padding: 17px 18px;
  border-radius: 18px;
  background: #f9fafb;
  border: 1px solid var(--line);
}
.single-restaurant .info-item-full { grid-column: 1 / -1; }
.single-restaurant .info-label {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
}
.single-restaurant .info-value {
  font-size: .965rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}
.single-restaurant .status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.single-restaurant .status-row:last-child { border-bottom: 0; }
.single-restaurant .status-label { font-size: .93rem; font-weight: 700; color: #374151; }
.single-restaurant .status-value { font-size: .91rem; font-weight: 700; color: #111827; text-align: right; }
.single-restaurant .status-ok {
  color: #16a34a;
  background: #ecfdf3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}
.single-restaurant .map-box {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--line);
  position: relative;
}
.single-restaurant .map-box img { width: 100%; height: 220px; object-fit: cover; display: block; }
.single-restaurant .map-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(17,24,39,0.85);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.single-restaurant .menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 28px;
}
.single-restaurant .menu-chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  cursor: pointer;
}
.single-restaurant .menu-chip:hover,
.single-restaurant .menu-chip.active {
  background: linear-gradient(135deg, #111827, #374151);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.single-restaurant .menu-card {
  background: linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .28s ease;
  height: 100%;
}
.single-restaurant .menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.single-restaurant .menu-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.single-restaurant .menu-body { padding: 20px; }
.single-restaurant .menu-name { font-size: 1.08rem; font-weight: 800; margin-bottom: 6px; }
.single-restaurant .menu-desc { color: var(--muted); font-size: .95rem; line-height: 1.6; min-height: 48px; }
.single-restaurant .mini-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 18px; }
.single-restaurant .mini-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: .84rem;
  font-weight: 700;
}
.single-restaurant .restaurant-about-card .brand-chip { align-self: flex-start; }
.single-restaurant .restaurant-about-copy:last-child { margin-bottom: 0 !important; }
@media (max-width: 991px) {
  .single-restaurant .cover { min-height: 420px; padding-bottom: 120px; }
  .single-restaurant .summary-card { padding: 22px; }
  .single-restaurant .sidebar-card { position: static; }
}
@media (max-width: 767px) {
  .single-restaurant .hero-title { font-size: 2.2rem; }
  .single-restaurant .cover { border-radius: 0 0 26px 26px; }
  .single-restaurant .info-grid { grid-template-columns: 1fr; }
  .single-restaurant .restaurant-meta span { width: 100%; justify-content: flex-start; }
  .single-restaurant .summary-card { border-radius: 22px; }
  .single-restaurant .status-row { align-items: flex-start; flex-direction: column; }
  .single-restaurant .status-value { text-align: left; }
}


/* Restaurant archive pagination */
.archive-restaurant-page .archive-header-glass {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58));
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 18px 42px rgba(16,24,40,0.08);
  backdrop-filter: blur(14px);
}
.archive-restaurant-page .archive-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.archive-restaurant-page .archive-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  border: 1px solid rgba(16,24,40,0.08);
  box-shadow: 0 10px 24px rgba(16,24,40,0.06);
  font-size: 14px;
  font-weight: 700;
}
.archive-restaurant-page .archive-summary-soft {
  background: rgba(255,90,61,0.08);
  color: #c2410c;
  border-color: rgba(255,90,61,0.12);
}

.archive-pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.archive-pagination-meta {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.archive-pagination-bar {
  width: 100%;
  max-width: 860px;
  display: grid;
  grid-template-columns: minmax(0, 168px) 1fr minmax(0, 168px);
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 16px 36px rgba(16,24,40,0.08);
  backdrop-filter: blur(14px);
}
.archive-page-cta {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: #344054;
  background: #fff;
  border: 1px solid rgba(16,24,40,0.08);
  box-shadow: 0 10px 24px rgba(16,24,40,0.05);
  transition: all 0.25s ease;
}
.archive-page-cta:hover {
  transform: translateY(-2px);
  color: var(--text);
  box-shadow: 0 16px 30px rgba(16,24,40,0.10);
}
.archive-page-next { justify-self: end; }
.archive-page-prev { justify-self: start; }
.archive-page-cta.is-disabled {
  opacity: .48;
  pointer-events: none;
}
.foodspot-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.foodspot-pagination .page-numbers {
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(16,24,40,0.08);
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16,24,40,0.05);
  transition: all 0.25s ease;
}
.foodspot-pagination .page-numbers:hover {
  transform: translateY(-2px);
  color: var(--text);
  box-shadow: 0 16px 30px rgba(16,24,40,0.10);
}
.foodspot-pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 16px 30px rgba(255,90,61,0.24);
}
.foodspot-pagination .page-numbers.dots {
  min-width: auto;
  padding: 0 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.single-restaurant .crumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.84);
  font-size: .95rem;
  margin-bottom: 18px;
}
.single-restaurant .crumb-link,
.single-restaurant .crumb-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 600;
  transition: all .25s ease;
}
.single-restaurant .crumb-link:hover {
  background: rgba(255,255,255,.16);
  color: #fff;
  transform: translateY(-1px);
}
.single-restaurant .crumb-current {
  background: rgba(255,255,255,.18);
}
.single-restaurant .crumb-sep {
  color: rgba(255,255,255,.64);
  font-size: .85rem;
}

@media (max-width: 767px) {
  .archive-restaurant-page .archive-header-glass {
    padding: 26px 18px;
    border-radius: 24px;
  }
  .archive-restaurant-page .archive-summary-bar {
    margin-bottom: 22px;
  }
  .archive-restaurant-page .archive-summary-pill {
    width: 100%;
    justify-content: center;
  }
  .archive-pagination-bar {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .archive-page-next,
  .archive-page-prev {
    justify-self: stretch;
    width: 100%;
  }
  .foodspot-pagination {
    order: -1;
  }
  .single-restaurant .crumb {
    gap: 8px;
  }
  .single-restaurant .crumb-link,
  .single-restaurant .crumb-current {
    padding: 7px 10px;
    font-size: .88rem;
  }
}


/* Search page */
.search-page .archive-header-glass {
  max-width: 900px;
}
.search-page .search-result-card .image-wrap img {
  height: 250px;
}
.search-page .search-card-link {
  color: var(--text);
  text-decoration: none;
}
.search-page .search-card-link:hover {
  color: var(--primary);
}
.search-page .content-card {
  background: rgba(255,255,255,0.92);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 18px 42px rgba(16,24,40,0.08);
}
.search-page .content-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}
@media (max-width: 767px) {
  .search-page .search-result-card .image-wrap img {
    height: 220px;
  }
}

/* Nearby discovery */
.nearby-discovery {
  margin: 0 auto 34px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 18px 42px rgba(16,24,40,0.08);
  backdrop-filter: blur(14px);
}
.nearby-discovery__bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.nearby-discovery__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,90,61,0.08);
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nearby-discovery__title {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  margin: 10px 0 8px;
}
.nearby-discovery__status {
  margin: 0;
  font-size: .96rem;
  line-height: 1.7;
}
.nearby-discovery__status[data-state="loading"] { color: #1d4ed8; }
.nearby-discovery__status[data-state="ready"] { color: #047857; }
.nearby-discovery__status[data-state="error"],
.nearby-discovery__status[data-state="empty"] { color: #b45309; }
.nearby-discovery__retry { min-width: 180px; }
.nearby-discovery__map,
.foodspot-single-map .map-canvas {
  width: 100%;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15,23,40,0.05), rgba(59,130,246,0.08));
  border: 1px solid rgba(16,24,40,0.08);
}
.nearby-pagination:empty,
.archive-pagination-host:empty { display: none; }
.single-restaurant .foodspot-single-map {
  position: relative;
}
.single-restaurant .foodspot-single-map .map-badge {
  text-decoration: none;
}
.single-restaurant .foodspot-single-map .map-canvas {
  min-height: 240px;
}
.restaurant-item.is-nearby .card-overlay-badge::after {
  content: attr(data-distance);
}
@media (max-width: 767px) {
  .nearby-discovery { padding: 18px; border-radius: 24px; }
  .nearby-discovery__map,
  .foodspot-single-map .map-canvas { min-height: 240px; }
}

.restaurant-order-app-btn{min-width:56px;padding-left:14px;padding-right:14px;}


/* Dynamic navigation menus */
.navbar-nav .menu-item {
  list-style: none;
}
.navbar-nav .menu-item.is-current > .nav-link {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}
.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu-item {
  margin: 0 0 10px;
}
.footer-menu-item:last-child {
  margin-bottom: 0;
}
.footer-menu-link {
  color: #98a2b3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}
.footer-menu-link::before {
  content: '\F285';
  font-family: 'bootstrap-icons';
  font-size: 12px;
  line-height: 1;
}
.footer-menu-link:hover,
.footer-menu-item.current-menu-item > .footer-menu-link,
.footer-menu-item.current-menu-ancestor > .footer-menu-link {
  color: #fff;
  transform: translateX(4px);
}


/* Hero alignment refinement */
.hero-banner {
  min-height: 78vh;
  align-items: center;
}
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 0 54px;
  text-align: center;
}
.hero-tag {
  margin-bottom: 18px;
}
.hero-title {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}
.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.04rem;
  line-height: 1.82;
}
.hero-search-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 24px;
}
.hero-search-box .input-group {
  min-height: 54px;
  border-radius: 16px;
  overflow: hidden;
}
.hero-search-box .input-group-text {
  padding-left: 16px;
}
.hero-search-box .form-control {
  min-height: 54px;
  font-size: 14px;
}
.hero-search-box .btn-main {
  min-height: 54px;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .hero-banner { min-height: 720px; }
  .hero-content { padding: 138px 0 40px; }
}
@media (max-width: 767px) {
  .hero-banner { min-height: 640px; }
  .hero-content { padding: 128px 0 24px; }
  .hero-title { font-size: 2.3rem; }
  .hero-subtitle { font-size: .98rem; line-height: 1.74; margin-bottom: 22px; }
  .hero-search-box { max-width: 100%; }
}
