/* ============================================
   QR MENÜ — PREMIUM BLACK & GOLD THEME
   ============================================ */
:root {
  /* Black scale */
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --border: #2a2418;
  --border-2: #3a3220;
  /* Gold scale */
  --gold: #d4af37;
  --gold-2: #f4d57a;
  --gold-3: #b8941f;
  --gold-soft: #c9a961;
  /* Text */
  --ink: #f5e6c8;
  --ink-2: #c9b890;
  --muted: #7a6f55;
  --muted-2: #5c5340;
  /* Semantic */
  --ok: #b8941f;
  --danger: #c84a3c;
  --shadow: 0 8px 32px rgba(0,0,0,.6);
  --shadow-gold: 0 4px 20px rgba(212,175,55,.18);
  --gold-grad: linear-gradient(135deg, #b8941f 0%, #f4d57a 45%, #d4af37 100%);
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-2); text-decoration: none; }
.muted { color: var(--muted); }
.center { text-align: center; }
.small { font-size: 12px; }
.right { text-align: right; }
.inline { display: inline-block; }
code { background: var(--surface-2); color: var(--gold-soft); padding: 2px 7px; border-radius: 4px; font-size: 13px; font-family: 'JetBrains Mono', Menlo, monospace; }

::selection { background: var(--gold); color: var(--bg); }

/* ============================================
   LANDING PAGE (index.php — standalone PHP)
   ============================================ */
.landing-body {
  margin: 0; min-height: 100vh;
  background: radial-gradient(ellipse at top, #1a1408 0%, #0a0a0a 65%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.landing-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.landing-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212,175,55,.05) 1px, transparent 0);
  background-size: 32px 32px;
}
.landing-hero { position: relative; z-index: 1; width: 100%; max-width: 720px; }
.landing-inner { text-align: center; animation: fadeUp .9s cubic-bezier(.2,.8,.2,1); }

.hero-ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  max-width: 200px; margin: 0 auto 32px;
}
.hero-ornament-bottom { margin: 56px auto 0; max-width: 140px; }
.hero-ornament-bottom .orn-diamond { font-size: 11px; }

.landing-pill {
  display: inline-block;
  padding: 7px 22px;
  background: rgba(212,175,55,.08);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--gold-2);
  margin-bottom: 28px;
  letter-spacing: 4px; text-transform: uppercase;
}

.landing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 88px);
  line-height: 1.02; letter-spacing: 1.5px;
  margin: 0 0 44px; font-weight: 600;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 60px rgba(212,175,55,.25);
}

.landing-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn-lg { padding: 15px 30px; font-size: 15px; min-width: 220px; }
.btn-outline {
  background: transparent; color: var(--gold-2);
  border: 1px solid var(--gold-3); font-weight: 500;
  transition: all .25s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px;
  text-decoration: none; font-family: inherit; cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-outline:hover { background: rgba(212,175,55,.1); border-color: var(--gold); color: var(--gold-2); text-decoration: none; }
.btn-icon { font-size: 16px; }

@media (max-width: 600px) {
  .landing-title { font-size: 44px; letter-spacing: 1px; margin-bottom: 32px; }
  .btn-lg { min-width: 0; width: 100%; }
  .landing-actions { flex-direction: column; }
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-bg {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,175,55,.10) 0, transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(212,175,55,.06) 0, transparent 50%),
    var(--bg);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  position: relative; overflow: hidden;
}
.auth-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212,175,55,.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.auth-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border-radius: 18px;
  padding: 36px;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow), 0 0 0 1px var(--border) inset;
  border: 1px solid var(--border);
  position: relative; z-index: 1;
  animation: fadeUp .6s cubic-bezier(.2,.8,.2,1);
}
@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }

.auth-brand { text-align: center; margin-bottom: 24px; }
.auth-brand h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; margin: 14px 0 4px; font-weight: 600;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 1px;
}
.logo-dot {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto;
  background: var(--gold-grad);
  box-shadow: 0 0 24px rgba(212,175,55,.4), 0 0 0 1px rgba(244,213,122,.3) inset;
  position: relative;
}
.logo-dot::after {
  content: '◆'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 20px;
}
.logo-alt { background: var(--gold-grad); }

/* HERO (index.php) */
.hero { min-height: 100vh; display:flex; align-items:center; justify-content:center; padding: 32px; }
.hero-inner { max-width: 720px; text-align:center; position: relative; z-index: 1; }
.hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1.05; margin: 0 0 20px;
  font-weight: 600; letter-spacing: 1px;
}
.hero-inner .accent {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-inner .lead { font-size: 18px; color: var(--ink-2); margin-bottom: 32px; }
.hero-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom: 24px; }

/* ============ FORMS ============ */
.form label { display:block; font-size:12px; color: var(--gold-soft); margin: 14px 0 6px; font-weight:500; text-transform: uppercase; letter-spacing: 1.2px; }
.form input, .form select, .form textarea,
input[type=text], input[type=password], input[type=number], input[type=email], select, textarea {
  width:100%; padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px; font-size: 14px;
  background: var(--bg-2); color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-family: inherit;
}
.form input:focus, .form select:focus, .form textarea:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.12);
  background: var(--surface);
}
.form input[type=color] { padding: 4px; height: 44px; cursor:pointer; }
.form input[type=file] { padding: 8px; cursor:pointer; color: var(--ink-2); }
.checkbox { display:flex; align-items:center; gap:8px; font-size:14px; color: var(--ink-2); text-transform:none; letter-spacing:0; }
.checkbox input { width:auto; accent-color: var(--gold); }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
select option { background: var(--bg-2); color: var(--ink); }

/* ============ BUTTONS ============ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap: 6px;
  padding: 11px 20px; border-radius: 10px;
  border: 1px solid transparent; cursor:pointer;
  font-weight: 500; font-size: 14px;
  transition: transform .12s, box-shadow .2s, background .2s, border-color .2s, color .2s;
  text-decoration:none !important; font-family: inherit;
  letter-spacing: 0.3px;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold-grad); color: #0a0a0a; font-weight: 600;
  box-shadow: 0 4px 14px rgba(212,175,55,.25);
}
.btn-primary:hover { color: #0a0a0a; box-shadow: 0 8px 22px rgba(212,175,55,.45); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-secondary:hover { background: var(--gold); color: var(--bg); }
.btn-ghost {
  background: transparent; color: var(--ink-2); border-color: var(--border-2);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--gold); border-color: var(--gold-3); }
.btn-danger { background: rgba(200,74,60,.12); color: #e57368; border-color: rgba(200,74,60,.3); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-brand { background: var(--gold-grad); color: #0a0a0a; font-weight: 600; }
.btn-brand:hover { color: #0a0a0a; box-shadow: 0 6px 18px rgba(212,175,55,.4); }
.btn-block { width:100%; }
.btn-sm { padding: 7px 13px; font-size: 13px; }

/* ============ ALERTS ============ */
.alert { padding: 12px 16px; border-radius: 10px; margin: 12px 0; font-size: 14px; border: 1px solid; }
.alert-success { background: rgba(184,148,31,.08); color: var(--gold-2); border-color: rgba(184,148,31,.3); }
.alert-error   { background: rgba(200,74,60,.08); color: #e57368; border-color: rgba(200,74,60,.3); }

/* ============ SIDEBAR + MAIN ============ */
.sidebar {
  position: fixed; left:0; top:0; bottom:0; width: 250px;
  background: linear-gradient(180deg, #0c0c0c 0%, var(--bg) 100%);
  color: var(--ink-2); padding: 28px 18px;
  display:flex; flex-direction:column;
  border-right: 1px solid var(--border);
}
.sidebar .brand {
  display:flex; align-items:center; gap: 12px;
  padding: 0 8px 22px; font-weight: 600; color: var(--gold-2);
  border-bottom: 1px solid var(--border); margin-bottom: 18px;
  font-size: 15px; font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: 0.5px;
}
.sidebar .brand .logo-dot { width: 36px; height: 36px; border-radius: 10px; }
.sidebar .brand .logo-dot::after { font-size: 14px; }
.sidebar nav { display:flex; flex-direction:column; gap:4px; }
.sidebar nav a {
  color: var(--ink-2); padding: 11px 14px; border-radius: 8px;
  font-size: 14px; transition: background .2s, color .2s, padding .2s;
  position: relative;
}
.sidebar nav a:hover { background: var(--surface); color: var(--gold-2); padding-left: 18px; }
.sidebar nav a.active {
  background: linear-gradient(90deg, rgba(212,175,55,.18) 0%, rgba(212,175,55,.04) 100%);
  color: var(--gold-2);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.sidebar-foot { margin-top: auto; padding-top:18px; border-top: 1px solid var(--border); }
.user-row { display:flex; align-items:center; gap:10px; padding: 8px; margin-bottom: 10px; color:var(--ink); font-size: 13px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-grad); display:flex; align-items:center; justify-content:center;
  color: var(--bg); font-weight:700; font-size: 14px;
}
.avatar-alt { background: var(--gold-grad); }
.sidebar-foot .btn-ghost { background:transparent; color:var(--ink-2); border-color: var(--border-2); }
.sidebar-foot .btn-ghost:hover { background: var(--surface); color: var(--gold-2); }

.main { margin-left: 250px; padding: 36px; min-height: 100vh; }

/* PAGE HEAD / CARD */
.page-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 28px; flex-wrap:wrap; }
.page-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; margin:0; font-weight: 600;
  color: var(--ink); letter-spacing: 0.5px;
}

.card {
  background: var(--surface); border:1px solid var(--border);
  border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow); margin-bottom: 22px;
  transition: border-color .25s;
}
.card:hover { border-color: var(--border-2); }
.card-head { display:flex; justify-content:space-between; align-items:center; margin-bottom: 18px; }
.card-head h2 {
  font-size: 16px; margin:0; font-weight: 600;
  color: var(--gold-2); letter-spacing: 0.5px;
  text-transform: uppercase;
}
.link { color: var(--gold); font-size: 13px; }

/* STATS */
.stat-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: var(--surface); border:1px solid var(--border);
  border-radius: 14px; padding: 22px;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column; gap: 6px;
  transition: transform .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover { transform: translateY(-2px); border-color: var(--gold-3); }
.stat-card:hover::before { opacity: 0.6; }
.stat-card .stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.stat-card .stat-value { font-size: 32px; font-weight: 700; color: var(--ink); font-family: 'Cormorant Garamond', serif; }
.stat-card.highlight {
  background: linear-gradient(135deg, rgba(212,175,55,.14) 0%, rgba(184,148,31,.04) 100%);
  border-color: var(--gold-3);
}
.stat-card.highlight .stat-value { color: var(--gold-2); }

/* TABLE */
.table { width:100%; border-collapse: collapse; }
.table th, .table td {
  padding: 13px 14px; text-align:left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.table th {
  font-weight: 500; color: var(--gold-soft); font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.2px;
  background: var(--bg-2);
}
.table tr { transition: background .15s; }
.table tr:hover { background: var(--bg-2); }
.actions-row { display:flex; gap:6px; justify-content:flex-end; flex-wrap:wrap; }

/* BADGES */
.badge { display:inline-block; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight:500; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-ok { background: rgba(184,148,31,.12); color: var(--gold-2); border: 1px solid rgba(184,148,31,.3); }
.badge-off { background: rgba(200,74,60,.1); color: #e57368; border: 1px solid rgba(200,74,60,.3); }

/* GRID */
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-2 .col-2 { grid-column: span 2; }
.grid-2 .actions { display:flex; gap:8px; }

.copy-row { display:flex; gap:6px; align-items:center; }
.copy-row input { flex:1; font-family: 'JetBrains Mono', Menlo, monospace; font-size: 12px; }

.kv { display:grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 12px; }
.kv > div { display:flex; flex-direction:column; gap:6px; }
.kv .muted { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-soft); }

/* row-form */
.row-form { display:flex; gap:8px; align-items:center; padding: 10px 0; border-bottom: 1px dashed var(--border); }
.row-form input[name=name] { flex:1; }

/* Quick links */
.quick-links { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap:14px; }
.quick {
  display:flex; flex-direction:column; gap: 4px;
  padding: 18px; border:1px solid var(--border); border-radius: 12px;
  transition: border-color .25s, transform .15s, background .2s;
  background: var(--surface);
}
.quick:hover {
  border-color: var(--gold); transform: translateY(-3px); text-decoration:none;
  background: linear-gradient(135deg, rgba(212,175,55,.06) 0%, transparent 100%);
}
.q-title { font-weight: 600; color: var(--gold-2); letter-spacing: 0.3px; }
.q-sub { font-size: 12px; color: var(--muted); }

/* Thumb */
.thumb { width:48px; height:48px; border-radius: 10px; object-fit:cover; background: var(--bg-2); border: 1px solid var(--border); }
.thumb-empty { background: linear-gradient(135deg, var(--bg-2), var(--surface)); }

/* NFC hint */
.nfc-hint {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(212,175,55,.06);
  border:1px solid var(--border-2);
  color: var(--ink-2); border-radius: 10px; font-size: 13px;
}
.nfc-hint strong { color: var(--gold-2); }

/* ============================================
   CUSTOMER MENU (premium gold & black)
   ============================================ */
.menu-body.dark-gold {
  background: radial-gradient(ellipse at top, #1a1408 0%, #0a0a0a 60%);
  min-height: 100vh;
  position: relative; overflow-x: hidden;
}
.menu-bg-effects { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.gold-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}
.gold-orb-1 { width: 500px; height: 500px; top: -150px; left: -150px; animation: float 18s ease-in-out infinite; }
.gold-orb-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; animation: float 22s ease-in-out infinite reverse; }
@keyframes float {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}

.menu-header-premium {
  text-align: center; padding: 60px 20px 40px;
  position: relative; z-index: 1;
  animation: fadeUp .8s cubic-bezier(.2,.8,.2,1);
}

.header-ornament-top, .header-ornament-bottom, .footer-ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto;
}
.header-ornament-top { max-width: 260px; margin-bottom: 28px; }
.header-ornament-bottom { max-width: 200px; margin-top: 18px; }
.footer-ornament { max-width: 200px; margin-bottom: 16px; }
.orn-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-3), transparent); }
.orn-diamond { color: var(--gold); font-size: 14px; letter-spacing: 4px; }

.menu-logo-wrap { display: inline-block; padding: 4px; border-radius: 50%; background: var(--gold-grad); margin-bottom: 22px; box-shadow: 0 0 40px rgba(212,175,55,.3); animation: glow 3s ease-in-out infinite; }
@keyframes glow { 0%,100% { box-shadow: 0 0 30px rgba(212,175,55,.25); } 50% { box-shadow: 0 0 50px rgba(212,175,55,.45); } }
.menu-logo-premium {
  display: block; width: 110px; height: 110px; border-radius: 50%;
  object-fit: cover; background: var(--bg);
  border: 4px solid var(--bg);
}
.menu-logo-text-premium {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--bg); border: 4px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600;
  color: var(--gold-2);
}

.business-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 56px);
  margin: 0; font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 1.5px;
  text-shadow: 0 0 40px rgba(212,175,55,.15);
}
.business-meta {
  color: var(--ink-2); font-size: 14px; margin: 12px 0 0;
  letter-spacing: 0.8px;
}
.business-meta .dot { color: var(--gold); margin: 0 4px; }

.menu-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 12px; color: var(--gold);
  margin: 14px 0 0; font-weight: 500;
}

/* Category nav */
.cat-nav-premium {
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
  padding: 14px 0;
}
.cat-nav-inner-premium {
  display: flex; gap: 10px; overflow-x: auto;
  padding: 0 20px; max-width: 1100px; margin: 0 auto;
  scrollbar-width: none;
}
.cat-nav-inner-premium::-webkit-scrollbar { display: none; }
.cat-pill {
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--border-2);
  white-space: nowrap;
  letter-spacing: 1px; text-transform: uppercase;
  transition: all .25s;
}
.cat-pill:hover {
  background: var(--gold-grad); color: var(--bg); text-decoration: none;
  border-color: transparent; transform: translateY(-1px);
}

/* Menu main */
.menu-main-premium {
  max-width: 1100px; margin: 0 auto;
  padding: 40px 20px 60px;
  position: relative; z-index: 1;
}
.menu-section-premium { margin-bottom: 56px; animation: fadeUp .8s cubic-bezier(.2,.8,.2,1); }
.section-title {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px;
}
.section-title .title-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
}
.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; margin: 0;
  color: var(--gold-2); letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-list-premium {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 720px) {
  .menu-list-premium { grid-template-columns: 1fr 1fr; gap: 32px 48px; }
}

.dish {
  display: flex; gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border-2);
  transition: transform .3s, border-color .3s;
  animation: fadeUp .6s cubic-bezier(.2,.8,.2,1);
  align-items: flex-start;
}
.dish:hover { transform: translateY(-2px); border-bottom-color: var(--gold-3); }
.dish-img-wrap {
  width: 84px; height: 84px; flex-shrink: 0;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #b8941f 0%, #f4d57a 50%, #d4af37 100%);
  box-shadow: 0 6px 18px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.3);
  transition: transform .25s, box-shadow .25s;
}
.dish:hover .dish-img-wrap { transform: scale(1.05); box-shadow: 0 8px 24px rgba(212,175,55,.35); }
.dish-img-circle {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--surface);
  border: 2px solid var(--bg);
}
.dish-img-wrap.img-fail {
  background: var(--surface);
  border: 1px dashed var(--border-2);
  position: relative;
}
.dish-img-wrap.img-fail::after {
  content: '◆'; position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; color: var(--gold-3); font-size: 24px;
}
/* Eski background-image versiyonu için fallback (geriye dönük) */
.dish-img {
  width: 84px; height: 84px; flex-shrink: 0;
  border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--surface);
  border: 3px solid var(--gold);
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
}
.dish-body { flex: 1; min-width: 0; padding-top: 4px; }
.dish-head {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--ink); margin: 0;
  letter-spacing: 0.4px;
}
.dish-dots {
  flex: 1; height: 1px;
  background-image: radial-gradient(circle, var(--gold-3) 1px, transparent 1px);
  background-size: 6px 1px; background-repeat: repeat-x;
  background-position: bottom;
  align-self: flex-end;
  margin: 0 6px 6px;
  opacity: .6;
}
.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--gold-2); white-space: nowrap;
  letter-spacing: 0.5px;
}
.dish-desc {
  margin: 6px 0 10px;
  font-size: 13.5px; color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
}
.dish-meta { display: flex; gap: 8px; }
.cal-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; padding: 3px 10px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--gold-soft);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.empty-menu { text-align: center; padding: 60px 20px; color: var(--muted); }

.menu-footer-premium {
  text-align: center;
  padding: 40px 20px 50px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  position: relative; z-index: 1;
}
.menu-footer-premium p { margin: 4px 0; color: var(--muted); font-size: 13px; }
.menu-footer-premium .footer-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold-2);
  font-size: 16px; letter-spacing: 2px;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .sidebar {
    position: static; width: 100%; flex-direction: row;
    flex-wrap: wrap; padding: 14px; border-right: 0; border-bottom: 1px solid var(--border);
  }
  .sidebar .brand { width: 100%; padding-bottom: 12px; margin-bottom: 8px; font-size: 16px; }
  .sidebar nav { flex-direction:row; flex-wrap: wrap; flex:1; gap: 2px; }
  .sidebar nav a { padding: 8px 12px; font-size: 13px; }
  .sidebar nav a:hover, .sidebar nav a.active { padding-left: 12px; border-left: 0; }
  .sidebar-foot { width: 100%; border-top: 0; padding-top: 8px; display:flex; gap:8px; align-items:center; }
  .sidebar-foot .btn-ghost { flex:1; }
  .user-row { margin: 0; }
  .main { margin-left: 0; padding: 22px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 .col-2 { grid-column: span 1; }
  .hero-inner h1 { font-size: 42px; }
  .business-name { font-size: 30px; letter-spacing: 1px; }
  .menu-logo-premium, .menu-logo-text-premium { width: 88px; height: 88px; }
  .menu-logo-text-premium { font-size: 40px; }
  .dish-img { width: 80px; height: 80px; }
  .dish-name, .dish-price { font-size: 17px; }
  .section-title h2 { font-size: 24px; letter-spacing: 1px; }
}
