/* Inter variabil, self-hosted — acoperă diacriticele românești (ș ț ă â î)
   cu virgulă dedesubt, ca literele speciale să nu mai pice pe fontul de sistem. */
@font-face {
  font-family: 'InterVariable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}

@font-face {
  font-family: 'InterVariable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0100-02AF, U+0218-021B, U+1E00-1EFF, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- tokens + reset ---------- */
:root {
  --bg: #050505;
  --text: #f7f3ea;
  --muted: #a8a097;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d6b36a;
  --gold-strong: #e6cb90;
  --gold-ink: #1a1409;
  --danger: #ff6464;
  --ok: #75e39b;
  --card: rgba(255, 255, 255, 0.06);
  --r: 26px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(214, 179, 106, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  /* fixed + no-repeat: altfel glow-urile radiale se repetă pe pagini lungi */
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'InterVariable', Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.ambient { position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.a1 { width: 20rem; height: 20rem; background: rgba(214, 179, 106, 0.28); left: -10rem; top: -8rem; }
.a2 { width: 18rem; height: 18rem; background: rgba(255, 255, 255, 0.08); right: -10rem; top: 18rem; }

/* ---------- topbar + brand ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.topbar nav { display: flex; align-items: center; gap: 0.65rem; }

.topbar nav a,
.topbar nav button,
#open-cart {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 0.72rem 0.9rem;
  font-weight: 850;
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; }

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.brand-copy { display: grid; line-height: 1.15; }
.brand-copy b { font-size: 1.15rem; letter-spacing: -0.02em; }
.brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.3rem;
  margin-left: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.count-badge.has-items { background: var(--gold); color: var(--gold-ink); }

/* ---------- type + buttons ---------- */
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 950;
}

.lead {
  color: var(--muted);
  line-height: 1.65;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  max-width: 680px;
}

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

.primary,
.secondary,
.pay-btn {
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  font-weight: 950;
  background: var(--gold);
  color: var(--gold-ink);
  display: inline-block;
}

.primary:hover, .pay-btn:hover:not(:disabled) { background: var(--gold-strong); }

.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.secondary:hover { border-color: var(--gold); color: var(--gold-strong); }

/* ---------- hero ---------- */
.hero {
  max-width: 1280px;
  margin: auto;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 8.2rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.hero h1 span { display: block; color: var(--gold); }

.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }

.hero-visual {
  margin: 0;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #0d0b08;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual p {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  padding: 0.7rem 0.9rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
}

/* ---------- info strip ---------- */
.info {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info div,
.status-card,
.receipt,
.devpay section {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  padding: 1.1rem;
}

.info span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

/* ---------- menu ---------- */
.menu {
  max-width: 1280px;
  margin: auto;
  padding: 0 clamp(1rem, 4vw, 3rem) 7rem;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 2rem;
}

.menu aside {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.4rem;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.7rem;
}

.menu aside a { border-radius: 999px; color: var(--muted); padding: 0.72rem 0.85rem; font-weight: 850; }
.menu aside a:hover { background: rgba(255, 255, 255, 0.08); color: var(--text); }

.cat { scroll-margin-top: 7rem; margin-bottom: 4rem; }

.cat h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 179, 106, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.card.off { filter: grayscale(1); opacity: 0.6; }
.card.off:hover { transform: none; box-shadow: none; border-color: var(--line); }

.shot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d0b08;
}

.shot.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.card:hover .shot.has-photo img { transform: scale(1.045); }

.shot-empty {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(214, 179, 106, 0.28), transparent 42%),
    linear-gradient(160deg, #201810, #090705 78%);
}

.shot-empty i {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(214, 179, 106, 0.5);
  background:
    radial-gradient(circle at 50% 45%, #d4bd95 0 26%, rgba(114, 89, 54, 0.75) 36%, transparent 44%),
    #14100a;
}

.body { display: flex; flex-direction: column; gap: 0.55rem; padding: 0.95rem 1rem 1rem; flex: 1; }

.card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.7rem; }
.card-head h3 { font-size: 1.12rem; letter-spacing: -0.03em; margin: 0; line-height: 1.25; }
.card-price { color: var(--gold-strong); font-size: 1.05rem; white-space: nowrap; }

.body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-foot { margin-top: auto; display: flex; align-items: center; gap: 0.7rem; padding-top: 0.3rem; }
.card-foot small { color: var(--muted); font-weight: 800; }

.add-btn,
.card-foot button {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem;
  font-weight: 950;
  background: var(--gold);
  color: var(--gold-ink);
}

.add-btn:hover { background: var(--gold-strong); }
.card-foot button:disabled { background: rgba(255, 255, 255, 0.12); color: var(--muted); cursor: not-allowed; }

.menu aside a.active {
  background: rgba(214, 179, 106, 0.16);
  color: var(--gold-strong);
}

/* ---------- cart drawer ---------- */
.cart {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
}

.cart.open { opacity: 1; visibility: visible; }

.cart-panel {
  width: min(100%, 480px);
  height: 100%;
  overflow-y: auto;
  background: #090909;
  border-left: 1px solid var(--line);
  transform: translateX(40px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart.open .cart-panel { transform: none; }

.cart-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.1rem 1.2rem 0.9rem;
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.cart-head .eyebrow { margin-bottom: 0.25rem; }
.cart-head h2 { margin: 0; font-size: 1.8rem; letter-spacing: -0.05em; }

.x {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
}

.x:hover { border-color: var(--gold); color: var(--gold-strong); }

.cart-items { padding: 0.9rem 1.2rem 0.2rem; }

.cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.75rem;
  margin-bottom: 0.7rem;
}

.cart-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

.cart-thumb-empty {
  background:
    radial-gradient(circle at 50% 45%, #d4bd95 0 24%, rgba(114, 89, 54, 0.7) 34%, transparent 40%),
    linear-gradient(145deg, #211912, #070707 75%);
}

.cart-item-info { min-width: 0; }
.cart-item-info h4 { margin: 0 0 0.15rem; font-size: 1rem; letter-spacing: -0.02em; }
.cart-item-info p { margin: 0 0 0.45rem; color: var(--muted); font-size: 0.85rem; }

.cart-item-side { display: grid; justify-items: end; gap: 0.45rem; }
.cart-item-side > b { font-size: 1.02rem; }

.qty { display: inline-flex; align-items: center; gap: 0.55rem; }

.qty button {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 900;
  line-height: 1;
}

.qty button:hover { border-color: var(--gold); color: var(--gold-strong); }
.qty b { min-width: 1.1rem; text-align: center; }

.remove {
  border: 0;
  background: transparent;
  color: var(--danger);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0;
  opacity: 0.85;
}

.remove:hover { opacity: 1; text-decoration: underline; }

.cart-empty {
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 2.2rem 1rem;
  text-align: center;
  color: var(--muted);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.cart-empty p { margin: 0; }

.cart-footer { padding: 0 1.2rem 1.4rem; }

.free-delivery {
  margin: 0.2rem 0 0.8rem;
  border: 1px solid rgba(214, 179, 106, 0.35);
  border-radius: 14px;
  background: rgba(214, 179, 106, 0.1);
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
}

.free-delivery b { color: var(--gold-strong); }

.free-delivery .progress {
  display: block;
  margin-top: 0.5rem;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.free-delivery .progress i { display: block; height: 100%; background: var(--gold); border-radius: 999px; }

.summary { border-top: 1px solid var(--line); padding-top: 0.8rem; }
.summary p { display: flex; justify-content: space-between; gap: 1rem; margin: 0.3rem 0; color: var(--muted); }
.summary p b { color: var(--text); }
.summary .total { font-size: 1.25rem; border-top: 1px solid var(--line); padding-top: 0.6rem; margin-top: 0.6rem; color: var(--text); }

.cart form { display: grid; gap: 0.75rem; margin-top: 1rem; }

.field { display: grid; gap: 0.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.field label {
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.field label small { text-transform: none; letter-spacing: 0; font-weight: 600; }

.cart input,
.cart textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 0.8rem 0.85rem;
}

.cart input:focus,
.cart textarea:focus {
  outline: none;
  border-color: rgba(214, 179, 106, 0.75);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.15);
}

.cart textarea { resize: vertical; min-height: 58px; }

.switch { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

.switch label {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.7rem 0.85rem;
  font-weight: 900;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}

.switch label:has(input:checked) {
  border-color: rgba(214, 179, 106, 0.65);
  background: rgba(214, 179, 106, 0.12);
  color: var(--text);
}

.switch input { width: auto; accent-color: var(--gold); margin: 0; }
.switch span { display: grid; line-height: 1.25; }
.switch small { font-weight: 650; color: var(--muted); font-size: 0.72rem; }

.pay-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  align-items: baseline;
}

.pay-btn b { font-weight: 950; }
.pay-btn:disabled { background: rgba(255, 255, 255, 0.12); color: var(--muted); cursor: not-allowed; }

.err { color: var(--danger); min-height: 1.2rem; font-weight: 800; margin: 0; }
.pay-note { color: var(--muted); text-align: center; }

/* ---------- order status + dev pay ---------- */
.status,
.devpay {
  max-width: 960px;
  margin: auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
}

.status-card h1,
.devpay h1,
.admin-main h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.timeline { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-top: 1.4rem; }

.timeline span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 0.6rem 0.8rem;
  font-weight: 900;
}

.timeline .is-active { background: var(--gold); border-color: var(--gold); color: var(--gold-ink); }

.notice { margin-top: 1rem; border-radius: 18px; padding: 0.85rem; font-weight: 800; }
.notice.ok { background: rgba(117, 227, 155, 0.13); color: var(--ok); }
.notice.warn { background: rgba(214, 179, 106, 0.14); color: #f0d28d; }

.receipt p { display: flex; justify-content: space-between; gap: 1rem; }
.receipt .total,
.devpay .total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
}

.devpay { min-height: 100vh; place-items: center; }
.devpay section { max-width: 580px; }

/* ---------- admin ---------- */
.admin-main { max-width: 1500px; margin: auto; padding: 1.6rem clamp(1rem, 3vw, 2rem) 5rem; }

.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.admin-head .eyebrow { margin-bottom: 0.4rem; }
.admin-head p { margin: 0; font-size: 0.88rem; }

.admin-tabs {
  display: inline-flex;
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
}

.admin-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  padding: 0.55rem 1.1rem;
}

.admin-tabs button.active { background: var(--gold); color: var(--gold-ink); }

.conn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.conn i { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--muted); }
.conn.ok i { background: var(--ok); box-shadow: 0 0 8px rgba(117, 227, 155, 0.8); }
.conn.down i { background: var(--danger); box-shadow: 0 0 8px rgba(255, 100, 100, 0.8); }
.conn.down { color: var(--danger); }

.kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }
.kanban.history { grid-template-columns: repeat(3, 1fr); }

.kanban-col {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.045);
  padding: 0.8rem;
}

.kanban-col h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  margin: 0.2rem 0.2rem 0.8rem;
}

.col-count {
  min-width: 1.7rem;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.15rem 0.5rem;
  font-size: 0.85rem;
}

.col-empty { border: 1px dashed var(--line); border-radius: 16px; padding: 1.2rem; text-align: center; color: var(--muted); }

.order-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.9rem;
  margin-bottom: 0.75rem;
}

.order-card.late { border-color: rgba(214, 179, 106, 0.7); }
.order-card.very-late { border-color: rgba(255, 100, 100, 0.75); box-shadow: 0 0 0 1px rgba(255, 100, 100, 0.35); }

.order-head { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.5rem; }
.order-head h3 { margin: 0; font-size: 1.15rem; letter-spacing: -0.03em; }
.order-head time { margin-left: auto; color: var(--muted); font-size: 0.8rem; font-weight: 700; }

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-delivery { background: rgba(214, 179, 106, 0.18); color: var(--gold-strong); border: 1px solid rgba(214, 179, 106, 0.4); }
.badge-pickup { background: rgba(255, 255, 255, 0.1); color: var(--text); border: 1px solid var(--line); }
.badge-paid { background: rgba(117, 227, 155, 0.14); color: var(--ok); border: 1px solid rgba(117, 227, 155, 0.35); }
.badge-cancelled { background: rgba(255, 100, 100, 0.12); color: var(--danger); border: 1px solid rgba(255, 100, 100, 0.35); }

.order-customer { margin: 0 0 0.2rem; display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: baseline; }
.order-customer a { color: var(--gold-strong); font-weight: 700; }
.order-customer a:hover { text-decoration: underline; }

.order-address { margin: 0 0 0.3rem; color: var(--muted); font-size: 0.86rem; }

.order-items { border-top: 1px solid var(--line); margin-top: 0.55rem; padding-top: 0.55rem; }

.order-line { display: flex; justify-content: space-between; gap: 0.8rem; margin: 0.28rem 0; font-weight: 700; }
.order-line span:last-child { color: var(--muted); font-weight: 650; }

.order-notes {
  margin: 0.55rem 0 0;
  border: 1px solid rgba(214, 179, 106, 0.4);
  border-radius: 12px;
  background: rgba(214, 179, 106, 0.1);
  padding: 0.5rem 0.65rem;
  font-size: 0.86rem;
}

.order-notes::before { content: "Obs: "; font-weight: 900; color: var(--gold-strong); }

.order-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 0.55rem;
  padding-top: 0.6rem;
}

.order-total { font-size: 1.12rem; font-weight: 900; }
.order-total small { color: var(--muted); font-weight: 650; }

.actions { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.7rem; }

.actions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 900;
  padding: 0.55rem 0.8rem;
}

.actions .primary { background: var(--gold); border-color: var(--gold); color: var(--gold-ink); padding: 0.55rem 0.8rem; }
.actions .primary:hover { background: var(--gold-strong); }
.actions .danger { background: rgba(255, 100, 100, 0.08); border-color: rgba(255, 100, 100, 0.4); color: #ff9d9d; }
.actions .danger:hover { background: rgba(255, 100, 100, 0.16); }

.empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--r);
  padding: 2.4rem;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 60;
  border: 1px solid rgba(214, 179, 106, 0.5);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.95);
  color: var(--text);
  padding: 0.75rem 1.2rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.toast.error { border-color: rgba(255, 100, 100, 0.6); color: #ffb3b3; }

/* ---------- kitchen ---------- */
.kitchen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.kitchen-card {
  border: 2px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.045);
  padding: 0.8rem;
}

.kitchen-card h2 { margin: 0; letter-spacing: -0.04em; font-size: clamp(2rem, 4vw, 3.1rem); }
.kitchen-card .order-line { font-size: 1.2rem; }

.kitchen-card button {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 950;
}

/* ---------- responsive ---------- */
@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .menu { grid-template-columns: 1fr; }
  .menu aside { top: 5.2rem; z-index: 5; display: flex; overflow: auto; border-radius: 999px; }
  .menu aside a { white-space: nowrap; }
  .grid { grid-template-columns: 1fr; }
  .kanban, .kanban.history { grid-template-columns: repeat(2, 1fr); }
  .kitchen-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .hide-sm { display: none; }
  .brand img { width: 44px; height: 44px; }
  .brand-copy b { font-size: 1rem; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .info, .kanban, .kanban.history, .kitchen-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .card-head h3 { font-size: 1rem; }
  .cart-panel { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .topbar { flex-wrap: wrap; }
  .topbar nav a, .topbar nav button { padding: 0.62rem 0.75rem; font-size: 0.85rem; }
  .admin-tabs { order: 3; width: 100%; justify-content: center; }
}

/* ---------- frontend-only: loading / error states ---------- */
.menu-status {
  border: 1px dashed var(--line);
  border-radius: var(--r);
  padding: 2.4rem;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.menu-status.error { color: var(--danger); border-color: rgba(255, 100, 100, 0.4); }

/* ---------- frontend-only: footer, despre, catering ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  margin-top: 3rem;
  padding: 2.2rem clamp(1rem, 4vw, 3rem) 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer b { display: block; margin-bottom: 0.5rem; }
.site-footer p { margin: 0.25rem 0; color: var(--muted); }
.site-footer a { color: var(--gold-strong); }
.site-footer a:hover { text-decoration: underline; }

.about {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) 4rem;
}

.about h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.catering {
  max-width: 1280px;
  margin: auto;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 4vw, 3rem) 4rem;
}

.catering-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.catering h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.catering h1 span { color: var(--gold); }

.catering-points { display: grid; gap: 0.8rem; margin-top: 1.6rem; }

.catering-points article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 0.9rem 1rem;
}

.catering-points b { display: block; margin-bottom: 0.25rem; }
.catering-points p { margin: 0; color: var(--muted); line-height: 1.5; }

.request-card {
  position: sticky;
  top: 6rem;
  border: 1px solid rgba(214, 179, 106, 0.45);
  border-radius: var(--r);
  background: var(--card);
  padding: 1.3rem;
}

.request-card h2 { margin: 0 0 1rem; letter-spacing: -0.04em; }
.request-card form { display: grid; gap: 0.75rem; }

.request-card input,
.request-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 0.8rem 0.85rem;
}

.request-card input:focus,
.request-card textarea:focus {
  outline: none;
  border-color: rgba(214, 179, 106, 0.75);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.15);
}

.form-status { min-height: 1.3rem; margin: 0; font-weight: 800; }
.form-status.ok { color: var(--ok); }
.form-status.error { color: var(--danger); }

@media (max-width: 1050px) {
  .catering-intro { grid-template-columns: 1fr; }
  .request-card { position: static; }
}

@media (max-width: 720px) {
  .site-footer { grid-template-columns: 1fr; }
}
