:root {
  --sk-gold: #d4af37;
  --sk-gold-dark: #d4af37;
  --gold-primary: #d4af37;
  --gold-metallic: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  --dark-bg: #050505;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --sk-bg: #050505;
  --sk-bg-soft: #0c0c10;
  --sk-card: rgba(18, 20, 25, 0.9);
  --sk-text: #f7f3ea;
  --sk-muted: #b3a88f;
  --sk-border: rgba(212, 175, 55, 0.15);
  --sk-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --sk-accent: #d4af37;
  --status-ready: #2ecc71;
  --status-prep: #3498db;
  --status-new: #f1c40f;
  --status-late: #e74c3c;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Montserrat:wght@500;600;700&display=swap');

.sk-root {
  background: var(--sk-bg);
  color: var(--sk-text);
  font-family: 'Montserrat', sans-serif;
  min-height: 100svh;
  padding: 24px;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.sk-root::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--sk-bg-url);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  transform: scale(1.05);
  animation: sk-bg-drift 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.sk-root::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(212, 175, 55, 0.10), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(7, 7, 9, 0.9), rgba(10, 10, 10, 1));
  pointer-events: none;
  z-index: 0;
}

.sk-root > * {
  position: relative;
  z-index: 1;
}

@keyframes sk-bg-drift {
  0% { transform: scale(1.05) translate3d(0, 0, 0); }
  50% { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.05) translate3d(0, 0, 0); }
}

html, body {
  height: 100%;
}

body {
  background: var(--sk-bg);
}

.bh-panel {
  background: var(--sk-card);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #1f232b;
  box-shadow: var(--sk-shadow);
}

.sk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--sk-border);
  background: rgba(8, 8, 12, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 16px 20px;
  gap: 20px;
}

.sk-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sk-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border: 1px solid var(--sk-gold);
  border-radius: 50%;
  padding: 6px;
  background: #000;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
}

.sk-brand-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin: 0;
  color: var(--sk-gold);
  letter-spacing: 0.6px;
}

.sk-brand-text h1 .sk-status-badge {
  margin-left: 8px;
  vertical-align: middle;
}

.sk-brand-text h1 span {
  font-weight: 300;
  color: #fff;
}

.sk-brand-text p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--sk-muted);
}

.sk-status-badge {
  font-size: 0.85rem;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--sk-gold);
  letter-spacing: 0.4px;
  margin-right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sk-status-text {
  display: none;
}

.sk-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sk-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
  animation: sk-pulse 1.6s ease-in-out infinite;
}

.sk-status-badge.is-offline .sk-status-dot {
  background: #e74c3c;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}

.sk-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
}

.sk-menu-section {
  background: rgba(12, 14, 18, 0.7);
  border: 1px solid var(--sk-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--sk-shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.sk-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 4px 0 16px;
  color: var(--sk-gold);
  letter-spacing: 0.5px;
}

.sk-hero-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.sk-hero-logo {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(0,0,0,0.4);
  flex: 0 0 auto;
}

.sk-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sk-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sk-hero-message {
  color: var(--sk-muted);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .sk-hero-tab {
    flex-direction: column;
    align-items: flex-start;
  }
}

.sk-menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.08), transparent 35%);
  pointer-events: none;
}

.sk-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 12px 0 6px;
  color: var(--sk-accent);
}

.sk-section-sub {
  color: var(--sk-muted);
  font-size: 0.9rem;
}

.sk-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(12, 14, 20, 0.6);
  border: 1px solid var(--sk-border);
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
}

.sk-search-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

#sk-search {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 12px;
  border: 1px solid #2b2f39;
  background: rgba(12, 14, 18, 0.85);
  color: var(--sk-text);
  font-size: 0.95rem;
  box-sizing: border-box;
  max-width: 100%;
}

#sk-search:focus {
  outline: none;
  border-color: var(--sk-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.sk-icon-search {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--sk-muted);
  border-radius: 50%;
}

.sk-icon-search::after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 8px;
  height: 2px;
  background: var(--sk-muted);
  transform: rotate(45deg);
  border-radius: 2px;
}

.sk-filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sk-flavor-row .sk-chip {
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 14px;
  background: #14181f;
}

.sk-chip {
  background: rgba(16, 18, 24, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: #f0e6cf;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}

.sk-chip.active {
  background: var(--gold-metallic);
  color: #0d0b08;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.sk-chip.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.sk-chip.is-hidden {
  display: none;
}

.sk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.sk-product-card {
  background: rgba(12, 14, 20, 0.72);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: var(--sk-shadow);
  animation: sk-fade-up 0.5s ease both;
}

.sk-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--sk-gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.sk-product-card.is-disabled {
  opacity: 0.55;
  filter: grayscale(0.4);
}

.sk-item-img {
  width: 100%;
  height: 180px;
  background: #000;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sk-gold);
  font-size: 2rem;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.sk-img-loading {
  background: linear-gradient(90deg, #151515 25%, #1f1f1f 50%, #151515 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s infinite;
}

.sk-item-placeholder {
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.8));
}

.sk-item-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(212, 175, 55, 0.6);
}

.sk-item-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}

.sk-item-meta {
  display: flex;
  justify-content: flex-start;
  margin: 10px 0;
  font-size: 0.75rem;
  color: var(--sk-muted);
}

.sk-prep-badge {
  font-size: 0.7rem;
  color: var(--sk-muted);
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 999px;
}

.sk-price {
  color: var(--sk-gold);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.sk-stock-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff6b6b;
}

.sk-btn-add {
  width: 100%;
  background: linear-gradient(45deg, #d4af37 0%, #f9e498 50%, #d4af37 100%);
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #000;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.sk-btn-add-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sk-btn-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.sk-btn-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sk-cart-card {
  background: rgba(10, 12, 18, 0.75);
  border-radius: 18px;
  padding: 24px;
  position: sticky;
  top: 20px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: var(--sk-shadow);
  overflow: hidden;
}

.sk-cart-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.sk-eta-box {
  text-align: right;
  color: var(--sk-gold);
}

.sk-eta-box small {
  display: block;
  font-size: 0.6rem;
  color: var(--sk-muted);
}

.sk-cart-list {
  min-height: 200px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sk-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #2b2f39;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.sk-cart-item-name {
  font-size: 0.9rem;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.sk-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sk-mods {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 100%;
}

.sk-mod-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--sk-muted);
}

.sk-mod-select {
  background: #0c0e12;
  color: var(--sk-text);
  border: 1px solid #2b2f39;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 0.75rem;
  max-width: 140px;
}

.sk-mod-admin {
  display: grid;
  gap: 10px;
}

.sk-mod-admin-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 8px;
}

.sk-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #11141a;
  border: 1px solid #2b2f39;
  padding: 2px 8px;
  border-radius: 999px;
}

.sk-qty-btn {
  background: transparent;
  border: none;
  color: var(--sk-accent);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.sk-qty-count {
  min-width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

.sk-cart-remove {
  background: transparent;
  border: 1px solid #3a3f4b;
  color: var(--sk-muted);
  padding: 2px 8px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
}

.sk-cart-remove:hover {
  color: #fff;
  border-color: var(--sk-gold);
}

.sk-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sk-product-card .sk-total-row {
  font-size: 1.1rem;
  margin-bottom: 12px;
  align-items: center;
}

.sk-id-check {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--sk-muted);
  margin-bottom: 10px;
}

.sk-input-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.sk-input-label {
  font-size: 0.8rem;
  color: var(--sk-muted);
}

.sk-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  border-bottom: 1px solid #2b2f39;
  background: transparent;
  color: var(--sk-text);
}

.sk-age-row.is-required .sk-input {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.sk-input-help {
  font-size: 0.75rem;
  color: var(--sk-muted);
}

.sk-age-warning {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
  color: var(--sk-gold);
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 600;
}

.sk-btn-primary {
  width: 100%;
  background: var(--sk-gold);
  color: #000;
  border: none;
  padding: 18px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sk-btn-primary:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.sk-main-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f9e498 50%, #d4af37 100%);
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.sk-main-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.45);
}

.sk-bump {
  animation: sk-bump 0.35s ease;
}

.sk-attention {
  animation: sk-attention 1.2s ease-in-out infinite;
}

.sk-note {
  color: var(--sk-muted);
  font-size: 0.85rem;
  margin-top: 10px;
}

.sk-profile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border: none;
  margin-top: 6px;
  background: transparent;
}

.sk-profile-summary--header {
  color: var(--sk-muted);
  font-size: 0.85rem;
}

.sk-lang-switch {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.sk-lang-btn {
  background: transparent;
  border: 1px solid #2b2f39;
  color: var(--sk-muted);
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.75rem;
}

.sk-lang-btn.is-active {
  color: var(--sk-gold);
  border-color: var(--sk-gold);
}

.sk-profile-summary-title {
  font-size: 0.75rem;
  color: var(--sk-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sk-profile-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
}

.sk-btn-link {
  background: transparent;
  border: 1px solid #2b2f39;
  color: var(--sk-gold);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
}

.sk-skeleton {
  background: linear-gradient(90deg, #121212 25%, #1b1b1b 50%, #121212 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s infinite;
  border-radius: 12px;
  height: 240px;
}

.sk-empty-msg,
.sk-suggest {
  color: var(--sk-muted);
  font-size: 0.9rem;
}

.sk-empty-illustration {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sk-empty-illustration svg {
  width: 24px;
  height: 24px;
  fill: rgba(212, 175, 55, 0.6);
}

@keyframes sk-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes sk-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes sk-attention {
  0% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 12px rgba(212, 175, 55, 0.5); }
  100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes sk-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.sk-offline-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-offline-card {
  background: rgba(12, 14, 18, 0.9);
  border: 1px solid var(--sk-border);
  padding: 24px 32px;
  border-radius: 14px;
  font-size: 1.1rem;
  color: var(--sk-gold);
  box-shadow: var(--sk-shadow);
}

.sk-profile-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-profile-card {
  background: rgba(12, 14, 18, 0.95);
  border: 1px solid var(--sk-border);
  padding: 24px;
  border-radius: 14px;
  width: min(420px, 90vw);
  color: var(--sk-text);
  box-shadow: var(--sk-shadow);
  position: relative;
}

.sk-profile-card h2 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  color: var(--sk-gold);
}

.sk-profile-card p {
  margin: 0 0 16px;
  color: var(--sk-muted);
}

.sk-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 1px solid #2b2f39;
  color: var(--sk-gold);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
}

.sk-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

@keyframes sk-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .sk-main-grid {
    grid-template-columns: 1fr 320px;
  }
}

@media (max-width: 900px) {
  .sk-main-grid {
    grid-template-columns: 1fr;
  }
  .sk-cart-section {
    order: -1;
  }
  .sk-cart-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .sk-root {
    padding: 16px;
  }
  .sk-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .sk-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  .sk-logo {
    width: 64px;
    height: 64px;
  }
  .sk-brand-text h1 {
    font-size: 1.6rem;
  }
  .sk-main-grid {
    gap: 18px;
  }
  .sk-menu-section {
    padding: 16px;
  }
  .sk-grid {
    grid-template-columns: 1fr;
  }
  .sk-item-img {
    height: 200px;
  }
  .sk-cart-card {
    padding: 18px;
  }
  .sk-total-row {
    font-size: 1.2rem;
  }
  .sk-btn-primary {
    padding: 16px;
    font-size: 0.95rem;
  }
  .sk-section-title {
    font-size: 1.2rem;
  }
  .sk-section-sub {
    font-size: 0.85rem;
  }
  .sk-chip {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  #sk-search {
    font-size: 0.9rem;
  }
}

.bh-staff-panel {
  margin-top: 24px;
  color: var(--sk-text);
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.bh-staff-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.bh-staff-panel > * {
  position: relative;
  z-index: 1;
}

.bh-staff-dual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.bh-staff-panel--compact .bh-staff-head {
  margin-bottom: 8px;
}

.bh-staff-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.bh-staff-quick-card {
  background: var(--sk-card);
  border: 1px solid #1f232b;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--sk-shadow);
}

.bh-staff-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.bh-staff-meta {
  color: var(--sk-muted);
  font-size: 0.85rem;
}

.bh-staff-actions {
  margin-bottom: 10px;
}

.bh-staff-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.bh-staff-tab {
  background: #141720;
  border: 1px solid #2b2f39;
  color: var(--sk-text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.bh-staff-tab.is-active {
  border-color: var(--sk-gold);
  color: #000;
  background: var(--sk-gold);
}

.bh-staff-home {
  margin-top: 16px;
}

.bh-staff-home-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.bh-staff-home-intro {
  color: var(--sk-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.bh-staff-home-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.bh-staff-home-stat {
  background: rgba(12, 14, 18, 0.6);
  border: 1px solid #1f232b;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--sk-muted);
}

.bh-staff-home-stat strong {
  color: var(--sk-gold);
  font-size: 0.95rem;
}

.bh-staff-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.bh-staff-home-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
}

.bh-staff-home-action-msg {
  color: var(--sk-muted);
  font-size: 0.85rem;
}


.sk-inactive-banner {
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-left: 4px solid var(--sk-gold);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 10px 0 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.sk-inactive-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--sk-gold);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.sk-inactive-msg {
  color: #dfe2e7;
  font-size: 0.9rem;
}

.sk-disabled-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(5, 6, 8, 0.94);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.sk-disabled-inner {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.sk-disabled-logo {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.4);
}

.sk-disabled-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sk-disabled-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--sk-gold);
  letter-spacing: 0.04em;
}

.sk-disabled-msg {
  font-size: 1.05rem;
  color: #dfe2e7;
  line-height: 1.4;
}

.sk-app-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  margin: 8px 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(10, 10, 10, 0.6);
  color: #dfe2e7;
}

.sk-app-status-bar.is-open {
  border-color: rgba(46, 204, 113, 0.5);
}

.sk-app-status-bar.is-closed {
  border-color: rgba(231, 76, 60, 0.5);
}

.sk-app-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
}

.sk-app-status-bar.is-closed .sk-app-status-dot {
  background: #e74c3c;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}

.bh-staff-home-card {
  display: block;
  text-decoration: none;
  background: var(--sk-card);
  border: 1px solid #1f232b;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--sk-shadow);
  color: var(--sk-text);
}

.bh-staff-home-card:hover {
  border-color: var(--sk-gold);
}

.bh-staff-home-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sk-gold);
  margin-bottom: 6px;
}

.bh-staff-home-desc {
  font-size: 0.85rem;
  color: var(--sk-muted);
}

.sk-order-status {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--sk-card);
  border: 1px solid #1f232b;
  border-radius: 16px;
  box-shadow: var(--sk-shadow);
}

.sk-order-status-head {
  font-family: 'Playfair Display', serif;
  color: var(--sk-gold);
  font-size: 1rem;
  margin-bottom: 10px;
}

.sk-order-status-list {
  display: grid;
  gap: 10px;
}

.sk-order-status-empty {
  color: var(--sk-muted);
  font-size: 0.85rem;
}

.sk-order-status-card {
  border: 1px solid #1f232b;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(12, 14, 18, 0.65);
}

.sk-order-status-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.sk-order-status-pill {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #2b2f39;
  color: var(--sk-text);
}

.sk-order-status-pill.is-new {
  border-color: rgba(241, 196, 15, 0.7);
  color: #f1c40f;
}

.sk-order-status-pill.is-preparing {
  border-color: rgba(52, 152, 219, 0.7);
  color: #3498db;
}

.sk-order-status-pill.is-ready {
  border-color: rgba(46, 204, 113, 0.7);
  color: #2ecc71;
}

.sk-order-status-code {
  font-size: 0.7rem;
  color: var(--sk-muted);
  letter-spacing: 1px;
}

.sk-order-status-items {
  font-size: 0.85rem;
  color: var(--sk-text);
  overflow-wrap: anywhere;
  margin-bottom: 6px;
}

.sk-order-status-meta {
  font-size: 0.75rem;
  color: var(--sk-muted);
}

.sk-limit-warning {
  margin: 10px 0 6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(231, 76, 60, 0.6);
  background: rgba(231, 76, 60, 0.12);
  color: #ff6b6b;
  font-size: 0.85rem;
  line-height: 1.3;
}

.bh-staff-display {
  min-height: 100svh;
  padding: 20px;
}

.bh-display-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bh-display-clock {
  font-size: 1.2rem;
  color: var(--sk-accent);
  letter-spacing: 1px;
}

.bh-staff-title {
  font-family: 'Playfair Display', serif;
  color: var(--sk-gold);
  margin-bottom: 12px;
}

.bh-staff-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.bh-staff-kds {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.bh-kds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 12px;
}

.bh-kds-col {
  background: rgba(12, 14, 18, 0.5);
  border: 1px solid #1f232b;
  border-radius: 14px;
  padding: 10px;
  min-height: 200px;
  min-width: 0;
}

.bh-kds-head {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sk-muted);
  margin-bottom: 8px;
}

.bh-kds-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.bh-ticket {
  background: var(--sk-card);
  border: 1px solid var(--sk-border);
  border-top: 4px solid var(--gold-primary);
  border-radius: 4px;
  padding: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  overflow: hidden;
  min-width: 0;
}

.bh-ticket:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 15px rgba(212, 175, 55, 0.1);
}

.bh-ticket.is-preparing {
  border-top-color: var(--status-prep);
}

.bh-ticket.is-ready {
  border-top-color: var(--status-ready);
}

.bh-ticket.is-overdue {
  border-top-color: var(--status-late);
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

.bh-ticket.is-new {
  animation: gold-glow 2s infinite alternate;
}

@keyframes gold-glow {
  from { box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
  to { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

.bh-ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.bh-ticket-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sk-muted);
}

.bh-ticket-status-pill {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  border: 1px solid #2b2f39;
  color: var(--sk-text);
}

.bh-ticket-status-pill.is-new {
  border-color: rgba(241, 196, 15, 0.6);
  color: #f1c40f;
}

.bh-ticket-status-pill.is-preparing {
  border-color: rgba(52, 152, 219, 0.6);
  color: #3498db;
}

.bh-ticket-status-pill.is-ready {
  border-color: rgba(46, 204, 113, 0.6);
  color: #2ecc71;
}

.bh-ticket-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--sk-muted);
  margin-bottom: 8px;
}

.bh-ticket-code {
  color: var(--sk-gold);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.bh-ticket-items {
  color: var(--sk-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.bh-ticket-group {
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #1f232b;
  background: rgba(12, 14, 18, 0.6);
  overflow: hidden;
}

.bh-ticket-group-title {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sk-muted);
  margin-bottom: 6px;
}

.bh-ticket-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.bh-ticket-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow-wrap: anywhere;
  max-width: 100%;
  flex: 1 1 140px;
}

.bh-ticket-item-qty {
  background: var(--gold-metallic);
  color: #000;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 900;
  font-size: 0.9rem;
  white-space: nowrap;
}

.bh-ticket-item-mods {
  font-size: 0.7rem;
  color: var(--sk-muted);
  margin: 4px 0 6px;
  overflow-wrap: anywhere;
}

.bh-ticket.is-time-green .bh-ticket-since {
  color: #2ecc71;
}

.bh-ticket.is-time-yellow .bh-ticket-since {
  color: #f1c40f;
}

.bh-ticket.is-time-red .bh-ticket-since {
  color: #e74c3c;
}

.bh-ticket-item {
  gap: 8px;
}

.bh-soldout-btn {
  margin-left: auto;
  background: #1a1d24;
  color: #fff;
  border: 1px solid #2b2f39;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  cursor: pointer;
  white-space: nowrap;
}

.bh-soldout-btn.is-off {
  background: rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.6);
  color: #e74c3c;
}

.bh-ticket-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.bh-staff-display .bh-ticket-actions {
  margin-top: 8px;
}

.bh-ticket-actions-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.bh-btn-large {
  padding: 10px 12px;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .bh-ticket-actions {
    gap: 10px;
  }
  .bh-input {
    padding: 12px 14px;
    font-size: 1rem;
  }
  .bh-btn {
    padding: 12px 14px;
    font-size: 1rem;
  }
}

.bh-ticket-status {
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sk-muted);
}

.bh-age-badge {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.bh-age-ok {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

.bh-age-pending {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

.bh-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #2b2f39;
  background: #0c0e12;
  color: var(--sk-text);
}

.bh-ticket-actions .bh-input {
  max-width: 180px;
}

.bh-btn {
  background: var(--sk-gold);
  color: #000;
  border: none;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.bh-btn-muted {
  background: #1a1d24;
  color: #fff;
  border: 1px solid #2b2f39;
}
