@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap";

/* src/styles.scss */
:root {
  --burgundy: #1E3A8A;
  --burgundy-dark: #1E3A8A;
  --burgundy-light: #3B5998;
  --gold: #FF6B35;
  --gold-light: #FF8555;
  --gold-pale: #FFE8DC;
  --purple: #7C3AED;
  --purple-light: #A855F7;
  --purple-pale: #F3E8FF;
  --header-bg: #FFFFFF;
  --header-text: #1E293B;
  --header-border: 1px solid var(--gray-light);
  --sidebar-bg: #F8FAFC;
  --sidebar-text: #1E293B;
  --cream: #F8FAFC;
  --cream-dark: #F1F5F9;
  --charcoal: #1E293B;
  --gray-mid: #64748B;
  --gray-light: #E2E8F0;
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #FF6B35;
  --info: #06B6D4;
  --font-display:
    "Playfair Display",
    Georgia,
    serif;
  --font-body:
    "Lato",
    "Helvetica Neue",
    sans-serif;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --radius: 8px;
  --radius-lg: 14px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  min-height: 100vh;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--burgundy-dark);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-burgundy {
  color: var(--burgundy);
}
.text-gray {
  color: var(--gray-mid);
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}
.btn-primary:hover:not(:disabled) {
  background: var(--burgundy-light);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover:not(:disabled) {
  background: var(--gold-light);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
}
.btn-outline:hover:not(:disabled) {
  background: var(--burgundy);
  color: var(--white);
}
.btn-danger {
  background: #c0392b;
  color: var(--white);
}
.btn-danger:hover:not(:disabled) {
  background: #a93226;
}
.btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-header {
  background: var(--burgundy-dark);
  color: var(--gold-light);
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.card-body {
  padding: 1.4rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-progress {
  background: rgba(217, 164, 65, 0.16);
  color: var(--sh-gold-light);
}
.badge-ready {
  background: rgba(76, 175, 109, 0.16);
  color: var(--sh-veg);
}
.badge-billed {
  background: rgba(185, 175, 156, 0.16);
  color: var(--sh-ink-muted);
}
.badge-cancelled {
  background: rgba(224, 122, 107, 0.16);
  color: #E07A6B;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--sh-border-soft);
  border-top-color: var(--sh-gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 2rem auto;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 1rem 0;
}
.divider-gold {
  border-top-color: var(--gold-pale);
}
.alert {
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.alert-error {
  background: #FEE2E2;
  color: #DC2626;
  border-left: 4px solid #DC2626;
}
.alert-success {
  background: #D1FAE5;
  color: #10B981;
  border-left: 4px solid #10B981;
}
.alert-info {
  background: #F3E8FF;
  color: #7C3AED;
  border-left: 4px solid #7C3AED;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gold-pale);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--sh-surface-2);
  color: var(--sh-gold-light);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  background: rgba(217, 164, 65, 0.14);
}
.qty-value {
  min-width: 34px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sh-ink);
  padding: 0 0.3rem;
}
.qty-input {
  width: 60px;
  padding: 0.35rem 0.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sh-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: var(--sh-ink);
  background: var(--sh-bg-elevated);
  font-family: var(--sh-font-body);
  transition: border-color 0.2s;
}
.qty-input:focus {
  outline: none;
  border-color: var(--sh-gold);
  background: var(--sh-bg-elevated);
}
.qty-input::placeholder {
  color: var(--sh-ink-faint);
}
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #FFFFFF;
}
.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--gray-light);
}
.admin-sidebar .brand {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--burgundy);
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.5rem;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: var(--cream-dark);
  color: var(--burgundy);
  border-left: 3px solid var(--gold);
}
.admin-main {
  flex: 1;
  overflow-y: auto;
}
.admin-topbar {
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--sh-shadow-sm);
  border-bottom: 1px solid var(--sh-border-soft);
}
.admin-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 2rem;
}
.page-title {
  font-family: var(--sh-font-display);
  font-size: 1.8rem;
  color: var(--sh-ink);
  margin-bottom: 1.5rem;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--sh-surface-2);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sh-ink-muted);
  border-bottom: 2px solid var(--sh-border-gold);
}
.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--sh-border-soft);
  vertical-align: middle;
  color: var(--sh-ink);
}
.data-table tr:hover td {
  background: rgba(217, 164, 65, 0.05);
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.modal {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border-soft);
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--sh-ink);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--sh-border-soft);
  font-family: var(--sh-font-display);
  font-size: 1.2rem;
  color: var(--sh-ink);
}
.modal-body {
  padding: 1.5rem;
}
.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--sh-border-soft);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--sh-ink-muted);
  padding: 0.2rem;
}
.btn-icon:hover {
  color: var(--sh-gold-light);
}
@media (max-width: 768px) {
  .admin-content {
    padding: 1rem;
  }
  .admin-topbar {
    padding: 0.75rem 1rem;
  }
}
:root {
  --sh-bg: #08171A;
  --sh-bg-elevated: #0D2024;
  --sh-surface: #102A2F;
  --sh-surface-2: #16343A;
  --sh-border-gold: rgba(217, 164, 65, .4);
  --sh-border-soft: rgba(217, 164, 65, .16);
  --sh-gold: #D9A441;
  --sh-gold-light: #E7C273;
  --sh-gold-dark: #B8863A;
  --sh-ink: #F5EEDD;
  --sh-ink-muted: #B9AF9C;
  --sh-ink-faint: #7C8A8C;
  --sh-veg: #4CAF6D;
  --sh-nonveg: #C0524A;
  --sh-danger: #E4685D;
  --sh-radius: 18px;
  --sh-radius-sm: 12px;
  --sh-radius-pill: 999px;
  --sh-shadow: 0 10px 28px rgba(0,0,0,.4);
  --sh-shadow-sm: 0 4px 14px rgba(0,0,0,.3);
  --sh-font-display:
    "Playfair Display",
    Georgia,
    serif;
  --sh-font-body:
    "Lato",
    "Helvetica Neue",
    sans-serif;
}
.sh-root {
  background: var(--sh-bg);
  color: var(--sh-ink);
  font-family: var(--sh-font-body);
  min-height: 100vh;
  line-height: 1.5;
}
.route-scroll > .sh-root {
  min-height: 100%;
}
.sh-root h1,
.sh-root h2,
.sh-root h3,
.sh-root h4,
.sh-h1,
.sh-h2,
.sh-h3,
.sh-h4 {
  font-family: var(--sh-font-display);
  color: var(--sh-ink);
  line-height: 1.25;
  font-weight: 700;
}
.sh-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-gold-light);
}
.sh-muted {
  color: var(--sh-ink-muted);
}
.sh-gold-text {
  color: var(--sh-gold-light);
}
.sh-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.1rem;
}
@media (min-width: 900px) {
  .sh-container {
    max-width: 900px;
  }
}
@media (min-width: 1200px) {
  .sh-container {
    max-width: 1080px;
  }
}
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: var(--sh-radius-pill);
  font-family: var(--sh-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}
.sh-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sh-btn:active:not(:disabled) {
  transform: scale(0.97);
}
.sh-btn-gold {
  background:
    linear-gradient(
      180deg,
      var(--sh-gold-light),
      var(--sh-gold));
  color: #1A1204;
  box-shadow: var(--sh-shadow-sm);
}
.sh-btn-gold:hover:not(:disabled) {
  filter: brightness(1.08);
}
.sh-btn-outline {
  background: transparent;
  border: 1.5px solid var(--sh-border-gold);
  color: var(--sh-gold-light);
}
.sh-btn-outline:hover:not(:disabled) {
  background: rgba(217, 164, 65, 0.1);
}
.sh-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--sh-ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sh-btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
}
.sh-btn-danger {
  background: transparent;
  border: 1.5px solid rgba(228, 104, 93, 0.5);
  color: var(--sh-danger);
}
.sh-btn-danger:hover:not(:disabled) {
  background: rgba(228, 104, 93, 0.12);
}
.sh-btn-block {
  width: 100%;
}
.sh-btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}
.sh-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.02rem;
}
.sh-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border-soft);
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.sh-card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-shadow);
  border-color: var(--sh-border-gold);
}
.sh-card-header {
  background: var(--sh-surface-2);
  color: var(--sh-gold-light);
  padding: 1rem 1.4rem;
  font-family: var(--sh-font-display);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--sh-border-soft);
  border-top-left-radius: var(--sh-radius);
  border-top-right-radius: var(--sh-radius);
}
.sh-card-body {
  padding: 1.4rem;
}
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--sh-radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sh-badge-gold {
  background: rgba(217, 164, 65, 0.16);
  color: var(--sh-gold-light);
  border: 1px solid var(--sh-border-gold);
}
.sh-badge-veg {
  border: 1.5px solid var(--sh-veg);
  color: var(--sh-veg);
}
.sh-badge-nonveg {
  border: 1.5px solid var(--sh-nonveg);
  color: var(--sh-nonveg);
}
.sh-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: var(--sh-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--sh-ink-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.sh-chip.active,
.sh-chip:hover {
  border-color: var(--sh-gold);
  color: var(--sh-gold-light);
  background: rgba(217, 164, 65, 0.1);
}
.sh-chip-row {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.6rem;
  scrollbar-width: none;
}
.sh-chip-row::-webkit-scrollbar {
  display: none;
}
.sh-input,
.sh-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sh-radius-sm);
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  font-family: var(--sh-font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
}
.sh-input::placeholder,
.sh-textarea::placeholder {
  color: var(--sh-ink-faint);
}
.sh-input:focus,
.sh-textarea:focus {
  outline: none;
  border-color: var(--sh-gold);
}
.sh-textarea {
  resize: vertical;
  min-height: 80px;
}
.sh-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--sh-border-gold);
  border-radius: var(--sh-radius-pill);
  overflow: hidden;
}
.sh-qty button {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--sh-gold-light);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.sh-qty button:hover {
  background: rgba(217, 164, 65, 0.12);
}
.sh-qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  color: var(--sh-ink);
}
.sh-food-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--sh-radius-sm);
  background: var(--sh-surface-2);
  display: block;
}
.sh-food-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--sh-radius-sm);
  background:
    linear-gradient(
      135deg,
      var(--sh-surface-2),
      var(--sh-surface));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-gold-light);
  opacity: 0.5;
}
.sh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: rgba(8, 23, 26, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sh-border-soft);
}
.sh-bottom-nav {
  position: sticky;
  bottom: 0;
  z-index: 50;
  display: flex;
  background: rgba(8, 23, 26, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--sh-border-soft);
  padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom));
}
.sh-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.4rem;
  color: var(--sh-ink-faint);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.15s;
}
.sh-bottom-nav a.active,
.sh-bottom-nav a:hover {
  color: var(--sh-gold-light);
}
.sh-bottom-nav .sh-nav-badge {
  position: absolute;
  top: -2px;
  right: 22%;
  background: var(--sh-gold);
  color: #1A1204;
  font-size: 0.62rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
@keyframes sh-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sh-slide-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sh-bounce {
  0%, 100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
}
.sh-fade-in {
  animation: sh-fade-in 0.3s ease both;
}
.sh-slide-up {
  animation: sh-slide-up 0.35s ease both;
}
.sh-bounce {
  animation: sh-bounce 0.35s ease;
}
.sh-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.sh-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .sh-grid-3-tablet {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .sh-grid-4-desktop {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* angular:styles/global:styles */
