<?php
// Minimal standalone template for Business menus (no theme header/footer)
?><!doctype html>
<html <?php language_attributes(); ?>>
<head>
  <meta charset="<?php bloginfo('charset'); ?>">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title><?php wp_title(''); ?></title>
  <?php wp_head(); ?>
</head>
<body <?php body_class('business-app'); ?>>

<main class="business-app">
  <?php
    // Your menu rendering goes here (ACF fields: phone/hours/address/categories/items...)
    // Example:
    // the_title();
    // if (have_rows('categories')) { ... }
  ?>
</main>

<?php wp_footer(); ?>
</body>
</html>

/* Lola Studio Digital Menu (ting-style) */
.business-app {
  margin: 0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.5;
}

.business-app a { color: inherit; text-decoration: none; }
.business-app a:hover { text-decoration: underline; }

.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;
}

.app-header {
  border-bottom: 1px solid #e6e6e6;
  padding: 18px 14px 14px;
  text-align: center;
}

.brand-logo {
  max-width: 110px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.brand-name {
  margin: 0;
  font-size: 26px;
  font-weight: 650;
}

.brand-tagline {
  margin: 6px 0 0;
  color: #6b6b6b;
  font-size: 14px;
}

.topbar {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.lang select {
  font-size: 14px;
  padding: 6px 10px;
}

.meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: #6b6b6b;
  font-size: 13px;
}

.app-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 14px;
}

.category {
  margin-top: 28px;
}

.category-title {
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e6e6e6;
}

.category-image {
  width: 100%;
  max-height: 190px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dotted #e6e6e6;
}

.item-left {
  display: flex;
  gap: 10px;
}

.item-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
}

.item-name {
  font-size: 15px;
  font-weight: 560;
}

.item-desc {
  margin-top: 2px;
  font-size: 13px;
  color: #6b6b6b;
}

.item-price {
  white-space: nowrap;
  font-weight: 650;
  font-size: 14px;
}

.notice {
  color: #6b6b6b;
  font-size: 14px;
}

.app-footer {
  border-top: 1px solid #e6e6e6;
  padding: 16px 14px;
  text-align: center;
  color: #6b6b6b;
  font-size: 13px;
  margin-top: 26px;
}
