:root {
  --primary: <?= h($primary) ?>;
  --font: '<?= h($font) ?>', sans-serif;
  --radius: 10px;
  --shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Page background */
body {
  background: url('https://arsamgroup.net/menu_images/aland/bg-marble.jpg') repeat center center fixed;
  background-size: cover;
  font-family: var(--font), system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* ===== LANDING PAGE ===== */
.landing-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.landing-container {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.landing-container img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  background: #fff;
}
.landing-container h1 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #222;
}
.landing-note {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}
.lang-buttons a {
  display: block;
  padding: 12px 16px;
  margin: 8px 0;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
  transition: all .15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.lang-buttons a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== HEADER / HERO ===== */
.brand {
  text-align: center;
  display: block;
  padding: 40px 20px 30px;
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.brand h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
}
.sub {
  color: #ccc;
  font-size: 14px;
  margin-top: 6px;
}

/* ===== CATEGORY NAV ===== */
.cat-nav {
  display: flex;
  overflow-x: auto;
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 8px;
  gap: 10px;
}
.cat-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #d4af37;
  background: rgba(0,0,0,0.6);
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: max-content;
}
.cat-link:hover,
.cat-link.active {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}
.cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background-color: rgba(0,0,0,0.4);
  border: 2px solid #d4af37;
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 40px 0 20px;
}
.section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 20px 0 14px;
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 4px;
}

/* ===== MENU GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* ===== MENU CARD ===== */
.card {
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}
.thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #f8f8f8;
}
.body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}
.title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.price {
  font-size: 1rem;
  font-weight: 700;
  color: #d4af37;
}
.desc {
  font-size: