/* ═══════════════════════════════════════════════════════════════
   Queen's Kitchen — Luxury Black & Gold Theme
   ═══════════════════════════════════════════════════════════════ */

:root {
  --black:       #0A0A0A;
  --black-soft:  #111111;
  --black-card:  #181818;
  --black-border:#2A2A2A;
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --gold-dim:    #9E7F1A;
  --text:        #E8E8E8;
  --text-muted:  #888888;
  --text-dark:   #CCCCCC;
  --white:       #FFFFFF;
  --red:         #E05C5C;
  --green:       #4CAF50;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 4px 24px rgba(0,0,0,.6);
  --shadow-gold: 0 0 20px rgba(212,175,55,.15);
  --transition:  0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content { flex: 1; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { display: block; max-width: 100%; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

.gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: .025em;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-danger {
  background: var(--red);
  color: var(--white);
}
.btn-danger:hover { opacity: .85; }
.btn-sm { padding: .45rem 1rem; font-size: .8rem; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-link {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  font-size: .85rem;
}
.btn-link:hover { color: var(--gold-light); }

/* ── Alerts ──────────────────────────────────────────────────── */
.alert {
  padding: .9rem 1.25rem;
  border-radius: var(--radius);
  margin: 1rem auto;
  max-width: 1200px;
  font-size: .9rem;
}
.alert-success { background: rgba(76,175,80,.15); border: 1px solid var(--green); color: #81c784; }
.alert-error   { background: rgba(224,92,92,.15);  border: 1px solid var(--red);   color: #ef9a9a; }
.alert-info    { background: rgba(212,175,55,.1);  border: 1px solid var(--gold);  color: var(--gold); }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.brand:hover { color: var(--gold); }
.brand-crown { font-size: 1.4rem; color: var(--gold); }
.brand-name  { color: inherit; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: var(--text-dark);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.cart-link { display: flex; align-items: center; gap: .3rem; position: relative; }
.cart-icon { font-size: 1.2rem; }
.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--black);
  font-size: .65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 3rem 0 0;
  margin-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand-crown { font-size: 1.6rem; color: var(--gold); }
.footer-brand .brand-name  { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }
.footer-brand p { margin-top: .75rem; color: var(--text-muted); font-size: .875rem; }
.footer-links h4, .footer-contact h4 {
  color: var(--gold);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.footer-links li + li { margin-top: .6rem; }
.footer-links a { color: var(--text-muted); font-size: .875rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--text-muted); font-size: .875rem; margin-bottom: .5rem; }
.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 1.25rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: .8rem;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,175,55,.08) 0%, transparent 70%),
              linear-gradient(160deg, #0A0A0A 0%, #181818 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); display: block; }
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-copy { min-width: 0; }
.hero-media {
  justify-self: end;
  width: 100%;
  max-width: 440px;
  position: relative;
}
.hero-portrait {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.22);
  background: linear-gradient(140deg, rgba(212,175,55,.12), rgba(212,175,55,.02));
  box-shadow: 0 22px 60px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.03) inset, var(--shadow-gold);
}
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 40% 40%, rgba(212,175,55,.18), transparent 55%);
  transform: translate3d(0,0,0);
  animation: heroGlow 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: translate3d(0,0,0);
  animation: heroFloat 5.5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.01); }
  50%      { transform: translate3d(0, -10px, 0) scale(1.01); }
}
@keyframes heroGlow {
  0%, 100% { opacity: .9; transform: translate3d(-2%, -2%, 0); }
  50%      { opacity: .6; transform: translate3d(2%, 2%, 0); }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 4rem 0;
  }
  .hero-media {
    justify-self: start;
    max-width: 520px;
  }
}

/* ── Section headers ─────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ── Food Cards ──────────────────────────────────────────────── */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.food-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.food-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.food-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.food-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
}
.food-card-body { padding: 1.25rem; }
.food-card-cat  {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-dim);
  margin-bottom: .5rem;
}
.food-card h3   { font-size: 1.1rem; margin-bottom: .4rem; color: var(--white); }
.food-card p    { font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.food-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 600;
}
.food-unavailable {
  font-size: .75rem;
  color: var(--text-muted);
  padding: .3rem .7rem;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-hint { font-size: .78rem; color: var(--text-muted); margin-top: .35rem; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

/* ── Page header ─────────────────────────────────────────────── */
.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 3rem;
}
.page-header h1 { margin-bottom: .5rem; }
.page-header p  { color: var(--text-muted); }

/* ── Cart ────────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}
.cart-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.cart-item-img-ph {
  width: 80px;
  height: 80px;
  background: #1a1a1a;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { margin-bottom: .25rem; }
.cart-item-info .price { color: var(--gold); font-size: .95rem; }
.qty-control {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  background: var(--black-soft);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover  { border-color: var(--gold); color: var(--gold); }
.qty-val { min-width: 28px; text-align: center; font-weight: 600; }
.cart-item-subtotal { text-align: right; font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--gold); }

.order-summary {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.order-summary h3 { margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--black-border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: .75rem; font-size: .9rem; }
.summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--gold); border-top: 1px solid var(--black-border); padding-top: .75rem; margin-top: .5rem; }

/* ── Checkout ────────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

/* ── Auth pages ──────────────────────────────────────────────── */
.auth-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.auth-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
}
.auth-card h2 { text-align: center; margin-bottom: .5rem; }
.auth-card .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: .875rem; color: var(--text-muted); }

/* ── Status badges ───────────────────────────────────────────── */
.status-badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.status-pending  { background: rgba(212,175,55,.15); color: var(--gold); }
.status-confirmed{ background: rgba(33,150,243,.15); color: #64b5f6; }
.status-preparing{ background: rgba(255,152,0,.15);  color: #ffb74d; }
.status-ready    { background: rgba(156,39,176,.15); color: #ce93d8; }
.status-delivery { background: rgba(0,188,212,.15);  color: #4dd0e1; }
.status-delivered{ background: rgba(76,175,80,.15);  color: #81c784; }
.status-cancelled{ background: rgba(244,67,54,.15);  color: #e57373; }

/* ── Table ───────────────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
thead th {
  background: var(--black-soft);
  color: var(--gold);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--black-border);
  white-space: nowrap;
}
tbody td {
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(42,42,42,.6);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(212,175,55,.03); }

/* ── Admin layout ────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--black-soft);
  border-right: 1px solid var(--black-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}
.admin-sidebar .brand {
  padding: .5rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 1rem;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(212,175,55,.08);
  color: var(--gold);
  border-right: 3px solid var(--gold);
}
.admin-main { padding: 2rem; }
.admin-page-title {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--black-border);
}

/* ── Stats cards ─────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.stat-card-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .75rem; }
.stat-card-value { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold); font-weight: 700; }
.stat-card-sub   { font-size: .78rem; color: var(--text-muted); margin-top: .4rem; }

/* ── Menu filter bar ─────────────────────────────────────────── */
.menu-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
}
.filter-input {
  flex: 1;
  min-width: 200px;
  padding: .65rem 1rem;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .88rem;
  font-family: inherit;
}
.filter-input:focus { outline: none; border-color: var(--gold); }
.filter-input::placeholder { color: var(--text-muted); }
.category-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.cat-pill {
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--black-border);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}
.cat-pill:hover, .cat-pill.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ── Order tracking ──────────────────────────────────────────── */
.track-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.track-status {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--black-soft);
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
}
.track-status-icon { font-size: 2rem; }
.track-order-items li {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--black-border);
  font-size: .875rem;
}
.track-order-items li:last-child { border-bottom: none; }

/* ── Modal ───────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--white); }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination { display: flex; gap: .5rem; align-items: center; margin-top: 1.5rem; justify-content: center; }
.page-btn {
  padding: .4rem .85rem;
  border-radius: var(--radius);
  border: 1px solid var(--black-border);
  background: var(--black-card);
  color: var(--text-muted);
  cursor: pointer;
  font-size: .8rem;
  text-decoration: none;
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ── Misc ────────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--black-border); margin: 1.5rem 0; }
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--white); margin-bottom: .5rem; }
.badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: var(--radius);
  font-size: .7rem;
  font-weight: 600;
  background: var(--black-border);
  color: var(--text-muted);
}
.badge-gold { background: rgba(212,175,55,.15); color: var(--gold); }
.food-admin-img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--radius); }
.food-admin-img-ph { width: 50px; height: 50px; background: #1a1a1a; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--black-border);
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }

  .cart-layout    { grid-template-columns: 1fr; }
  .checkout-layout{ grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .admin-layout   { grid-template-columns: 1fr; }
  .admin-sidebar  { position: static; height: auto; display: none; }
  .form-row       { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .food-grid     { grid-template-columns: 1fr 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
}
@media (max-width: 400px) {
  .food-grid { grid-template-columns: 1fr; }
}
