@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --app-bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-soft: #F8FAFC;
  --ink: #0F172A;
  --muted: #64748B;
  --line: #CBD5E1;
  --accent: #d61f3b;
  --accent-2: #d61f3b;
  --accent-hover: #b91831;
  --success: #22C55E;
  --warning: #F59E0B;
  --control-radius: 10px;
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

body {
  min-height: 100vh;
  background: var(--app-bg);
  color: var(--ink);
  padding-bottom: 84px;
  font-family: "Poppins", Inter, "DM Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

.btn {
  border-radius: var(--control-radius) !important;
  font-family: inherit;
    font-weight: 600 !important;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
}

.btn-sm {
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.btn-link,
.btn-close,
.btn.icon-table-btn,
.btn.btn-outline-secondary {
  box-shadow: none;
}

.btn-primary {
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent-hover);
  --bs-btn-hover-border-color: var(--accent-hover);
  --bs-btn-active-bg: var(--accent-hover);
  --bs-btn-active-border-color: var(--accent-hover);
}

.btn-outline-primary {
  --bs-btn-color: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent);
  --bs-btn-hover-border-color: var(--accent);
  --bs-btn-active-bg: var(--accent-hover);
  --bs-btn-active-border-color: var(--accent-hover);
}

.btn-success {
  --bs-btn-bg: var(--success);
  --bs-btn-border-color: var(--success);
  --bs-btn-hover-bg: #16a34a;
  --bs-btn-hover-border-color: #16a34a;
}

.btn-warning {
  --bs-btn-bg: var(--warning);
  --bs-btn-border-color: var(--warning);
  --bs-btn-hover-bg: #d97706;
  --bs-btn-hover-border-color: #d97706;
}

.form-control,
.form-select {
  border-color: var(--line);
  border-radius: var(--control-radius);
}

.form-control:hover,
.form-select:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 .16rem rgba(214, 31, 59, .14);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .18rem rgba(214, 31, 59, .16);
}

.app-shell {
  max-width: 1720px;
}

.auth-screen {
  padding-bottom: 0;
}

.auth-card {
  max-width: 480px;
  box-shadow: var(--shadow);
}

.topbar,
.public-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96) !important;
  border-bottom: 1px solid var(--line) !important;
  backdrop-filter: blur(10px);
}

.brand-logo,
.login-logo {
  object-fit: contain;
}

.brand-logo {
  width: 38px;
  height: 38px;
}

.public-nav-link,
.top-links a {
  color: var(--muted) !important;
  font-size: .94rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: var(--control-radius) !important;
  padding: 8px 10px !important;
}

.public-nav-link:hover,
.top-links a:hover {
  color: var(--accent) !important;
  background: #fff1f3 !important;
}

.hero {
  background: linear-gradient(180deg, var(--surface-soft) 0%, #fff 100%) !important;
  color: var(--ink) !important;
}

.hero p,
p,
.muted,
.text-secondary {
  color: var(--muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fw-bold {
  color: var(--ink);
  letter-spacing: 0 !important;
}

.feature-card,
.role-card,
.form-panel,
.faq-item,
.step-item,
.offer-card,
.printer-card,
.step-card,
.claim-card,
.auth-card,
.snapshot {
  border: 1px solid var(--line) !important;
  border-radius: var(--control-radius) !important;
  box-shadow: var(--shadow) !important;
}

.icon-box {
  border-radius: var(--control-radius) !important;
  background: var(--accent) !important;
}

.footer-band {
  background: var(--ink) !important;
}

.auth-screen {
  background: linear-gradient(180deg, var(--surface-soft) 0%, #fff 100%) !important;
}

.public-login-shell {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
}

.navbar-brand {
  letter-spacing: 0;
}

.navbar .container-fluid {
  position: relative;
}

.outlet-label-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.1;
  border: 0;
  box-shadow: none;
}

.outlet-label-toggle:hover,
.outlet-label-toggle:focus {
  color: var(--accent);
}

.outlet-label-caret {
  font-size: .82rem;
  opacity: .75;
}

.dropdown-menu {
  max-height: 60vh;
  overflow-y: auto;
}

.admin-layout {
  display: block;
}

.admin-icon-menu {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
}

.admin-icon-tile {
  display: inline-flex;
  min-height: 92px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .65rem .4rem;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.admin-icon-tile i {
  font-size: 1.55rem;
  line-height: 1;
}

.admin-icon-tile:hover,
.admin-icon-tile:focus {
  border-color: var(--accent);
  color: var(--accent-hover);
  box-shadow: 0 0 0 .16rem rgba(214, 31, 59, .16);
  transform: translateY(-1px);
}

.admin-icon-tile.active {
  border-color: var(--accent);
  color: var(--accent-hover);
  box-shadow: 0 0 0 .16rem rgba(214, 31, 59, .14);
}

.icon-table-btn {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  vertical-align: middle;
}

.icon-table-btn i {
  font-size: .95rem;
  line-height: 1;
}

.admin-content {
  min-width: 0;
}

.admin-section-back {
  margin-bottom: .75rem;
}

.admin-page-title {
  color: #151922;
  font-weight: 850;
  line-height: 1.25;
  text-align: right;
}

.admin-title-wrap {
  min-width: 0;
}


.inventory-entry-form {
  margin: 0;
}

.inventory-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  align-items: end;
}

.inventory-status-field,
.inventory-file-field,
.inventory-new-item {
  grid-column: span 2;
}

.inventory-entry-form .form-control,
.inventory-entry-form .form-select,
.inventory-entry-form .btn,
.inventory-status-toggle .btn {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 800;
}

.inventory-entry-form .form-control,
.inventory-entry-form .form-select {
  border-color: #d8dee8;
}

.inventory-file-input {
  line-height: 1.8;
}

.inventory-status-toggle {
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #d8dee8;
  background: #fff;
}

.inventory-status-toggle .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 0;
  font-size: .88rem;
  font-weight: 900;
}

.inventory-status-toggle .btn-check:checked + .btn-outline-danger {
  background: #dc3545;
  color: #fff;
}

.inventory-status-toggle .btn-check:checked + .btn-outline-success {
  background: #198754;
  color: #fff;
}

.inventory-status-toggle .btn-outline-danger {
  color: #dc3545;
}

.inventory-status-toggle .btn-outline-success {
  color: #087b5b;
}

.inventory-add-btn,
.inventory-modal-actions .btn {
  min-height: 38px;
  border-radius: 10px;
  padding: .4rem .7rem;
  font-size: .84rem;
  font-weight: 850;
}

.inventory-modal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 104px));
  justify-content: end;
  gap: .5rem;
  flex-wrap: nowrap;
}

.inventory-modal-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  width: 100%;
  min-width: 0;
  margin: 0;
  white-space: nowrap;
}

.inventory-filter-total {
  align-self: center;
  font-size: .9rem;
}

.inventory-header-actions {
  display: grid;
  justify-items: end;
  gap: .4rem;
}

.inventory-table-wrap {
  overflow-x: auto;
  max-height: 418px;
  overflow-y: auto;
  border: 1px solid #d7dde5;
  border-radius: 8px;
}

.stock-report-wrap {
  max-height: 520px;
  overflow: auto;
}

.stock-report-table {
  width: 100%;
  min-width: 0;
  table-layout: auto;
  border-color: #cfd6df;
  font-size: .92rem;
  line-height: 1.2;
}

.stock-report-table th,
.stock-report-table td {
  padding: .42rem .45rem;
  white-space: nowrap;
  vertical-align: middle;
}

.stock-report-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #20252b;
  color: #fff;
  font-weight: 800;
}

.stock-item-link {
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.stock-item-link:hover,
.stock-item-link:focus {
  color: var(--accent-hover);
  text-decoration: none;
}

.inventory-report-table {
  width: 100%;
  min-width: 0;
  table-layout: auto;
  border-color: #d7dde5;
  font-size: .74rem;
  line-height: 1.2;
}

.inventory-report-table th,
.inventory-report-table td {
  padding: .38rem .42rem;
  white-space: nowrap;
}

.inventory-report-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #20252b;
  color: #fff;
  font-weight: 800;
}

.inventory-report-table .inventory-item-name {
  color: var(--accent);
  font-weight: 800;
}

.inventory-report-table .inventory-edit-link {
  max-width: 138px;
  color: var(--accent);
  font-size: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  text-decoration: none;
  vertical-align: baseline;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inventory-report-table .inventory-edit-link:hover,
.inventory-report-table .inventory-edit-link:focus {
  text-decoration: underline;
}

.inventory-report-table .inventory-status-paid,
.inventory-report-table .inventory-status-unpaid {
  font-weight: 900;
}

.inventory-report-table .inventory-status-paid {
  color: #00836c;
}

.inventory-report-table .inventory-status-unpaid {
  color: #e11d48;
}

.inventory-report-table tfoot th {
  position: sticky;
  bottom: 0;
  background: #fff2c9;
  color: #000;
  font-weight: 900;
}

body.inventory-sharing .inventory-table-wrap {
  max-height: none;
  overflow: visible;
}

body.inventory-sharing .inventory-report-table thead th,
body.inventory-sharing .inventory-report-table tfoot th {
  position: static;
}

@media (max-width: 767.98px) {
  .inventory-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }

  .inventory-status-field,
  .inventory-file-field,
  .inventory-new-item {
    grid-column: span 2;
  }

  .inventory-modal-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: .5rem;
  }

  .inventory-modal-actions .btn {
    padding-left: .4rem;
    padding-right: .4rem;
  }

  .inventory-header-actions {
    width: 100%;
    justify-items: stretch;
  }

  .inventory-header-actions .d-flex {
    justify-content: space-between;
  }
}

@media (max-width: 575.98px) {
  .admin-title-row {
    justify-content: flex-start !important;
  }

  .admin-page-title {
    max-width: calc(100vw - 28px);
    overflow: hidden;
    font-size: .94rem;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-icon-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
  }

  .admin-icon-tile {
    min-height: 92px;
    padding: .65rem .3rem;
    font-size: .78rem;
  }

  .admin-icon-tile i {
    font-size: 1.7rem;
  }

  .stock-report-table {
    font-size: .68rem;
  }

  .stock-report-table th,
  .stock-report-table td {
    padding: .26rem .12rem;
  }

  .inventory-entry-form .form-control,
  .inventory-entry-form .form-select,
  .inventory-entry-form .btn,
  .inventory-status-toggle .btn {
    min-height: 40px;
    font-size: .8rem;
  }

  .inventory-modal-grid .form-label {
    margin-bottom: .25rem;
    font-size: .72rem;
  }

  .inventory-report-table {
    font-size: .68rem;
  }

  .inventory-report-table th,
  .inventory-report-table td {
    padding: .34rem .32rem;
  }

  .inventory-report-table .inventory-edit-link {
    max-width: 92px;
  }
}

.toolbar,
.bill-panel {
  box-shadow: var(--shadow);
}

.support-shell {
  max-width: 760px;
}

.support-card {
  box-shadow: var(--shadow);
}

.support-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(214, 31, 59, .08);
  color: var(--accent-2);
  font-size: 1.35rem;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  height: 100%;
}

.support-item i {
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-top: .15rem;
}

.support-item a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.support-item a:hover {
  text-decoration: underline;
}

.compact-toolbar {
  position: relative;
}

.pos-control-row {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: .45rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-scroll {
  display: flex;
  min-width: 0;
  gap: .45rem;
  overflow-x: auto;
  padding-bottom: .35rem;
  scrollbar-width: thin;
}

.capsule-btn,
.category-scroll .capsule-btn {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 .85rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--surface);
  color: #f04d15;
  font-weight: bold;
}

.icon-action {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.add-outlet-top-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.orders-action span {
  min-width: 1.15rem;
  font-weight: 900;
}

.capsule-btn.active {
  background: var(--accent);
  color: #fff;
}

.btn {
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.btn-sm {
  border-radius: 9px;
}

.form-control,
.form-select {
  border-radius: 10px;
  border-color: var(--line);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(214, 31, 59, .18);
}

.border {
  border-color: var(--line) !important;
}

.bg-white {
  background: var(--surface) !important;
}

.rounded-3 {
  border-radius: 16px !important;
}

.rounded-4 {
  border-radius: 20px !important;
}

.table-strip {
  display: flex;
  flex: 0 0 auto;
  gap: .35rem;
  overflow-x: auto;
  max-width: 280px;
  padding-bottom: 0;
}

.table-chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  min-width: 46px;
  min-height: 38px;
  padding: .25rem .6rem;
  font-weight: 800;
  line-height: 1.05;
}

.table-chip span {
  display: block;
  font-size: .58rem;
  font-weight: 700;
  color: var(--muted);
}

.table-chip.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .12);
}

.table-chip.occupied {
  background: #fff8e8;
}

.table-chip.billed {
  background: #fff1f3;
}

.payment-buttons {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 1fr;
  gap: .35rem;
  width: 100%;
}

.top-mode-controls {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-left: 1rem;
}

.top-search-date {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: .35rem;
  margin-left: .75rem;
}

.top-mode-controls .capsule-btn,
.top-mode-controls .icon-toggle-btn {
  display: inline-flex;
  width: auto;
  min-width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 0 .75rem;
}

.top-actions .btn {
  min-height: 38px;
}

.payment-btn,
.payment-status-btn {
  display: inline-flex;
  min-width: 40px;
  width: 100%;
  height: 38px;
  align-items: center;
  justify-content: flex-start;
  gap: .45rem;
  padding: 0 .65rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-weight: bold;
  color: var(--ink);
}

.bill-payment-row {
  display: flex;
  order: 0;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  gap: .3rem;
  margin-top: 0;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: visible;
}

.payment-status-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  height: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.payment-status-toggle .payment-status-btn {
  min-width: 58px;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 .55rem;
  font-size: .78rem;
  font-weight: 900;
  color: var(--muted);
}

.bill-payment-row .payment-btn,
.bill-payment-row .btn {
  width: auto;
  min-width: 64px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  padding: 0 .65rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 900;
  white-space: nowrap;
}

.bill-payment-row #releaseBill {
  min-width: 66px;
}

.bill-payment-row .btn i,
.bill-payment-row .payment-btn i,
.bill-payment-row .payment-status-btn i {
  font-size: 1rem;
  line-height: 1;
}

.bill-payment-row #clearCart {
  min-width: 44px;
  width: 44px;
  padding: 0;
}

.bill-payment-row #clearCart span {
  display: none;
}

.payment-btn span,
.payment-status-btn span {
  display: inline;
}

.payment-btn.active,
.payment-status-btn.active {
  border-color: var(--accent);
  background: #fff2eb;
  color: #e24309;
}

.payment-status-btn.active[data-payment-status="Paid"] {
  background: #198754;
  color: #fff;
}

.payment-status-btn.active[data-payment-status="Unpaid"] {
  background: var(--accent);
  color: #fff;
}

.bill-choice-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: .28rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: #fff2eb;
}

.bill-choice {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.bill-choice.active {
  background: #fff;
  color: #e24309;
  box-shadow: 0 4px 12px rgba(226, 67, 9, .12);
}

.bill-payment-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  width: 100%;
}

.bill-payment-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bill-payment-actions .btn i {
  font-size: 1.2rem;
  line-height: 1;
}

.pos-tool-group {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 1fr;
  align-items: center;
  gap: .35rem;
  width: 100%;
}

.icon-toggle-btn,
.date-toggle-btn,
.layout-icon-btn {
  display: inline-flex;
  min-width: 40px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.date-toggle-btn {
  min-width: 40px;
  width: 100%;
  justify-content: flex-start;
  padding: 0 .7rem;
}

.search-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-width: 44px;
  padding: .35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: width .18s ease, box-shadow .18s ease;
}

.search-inline .icon-toggle-btn {
  min-width: 32px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.search-inline .form-control {
  width: 0;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: width .18s ease, opacity .18s ease, padding .18s ease;
}

.search-inline .search-clear-btn {
  display: none;
  white-space: nowrap;
}

.search-inline.open {
  min-width: min(100%, 360px);
  box-shadow: 0 12px 32px rgba(18, 24, 20, .12);
}

.search-inline.open .form-control {
  width: min(210px, 42vw);
  padding-left: .75rem;
  padding-right: .75rem;
  opacity: 1;
  pointer-events: auto;
}

.search-inline.open .search-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-inline .icon-toggle-btn {
  flex: 0 0 auto;
}

.visually-hidden-date {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-strip {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .5rem;
  min-width: 0;
  padding: .5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  position: sticky;
  top: 76px;
  max-height: calc(100vh - 164px);
  overflow: hidden;
}

.menu-layout {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: .7rem;
}

.menu-layout.menu-expanded {
  grid-template-columns: 160px minmax(0, 1fr);
}

.menu-collapse-btn {
  display: inline-flex;
  width: 100%;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.menu-strip .category-scroll {
  flex: 1 1 auto;
  width: 100%;
  max-height: calc(100vh - 260px);
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  padding: 0 .15rem 0 0;
}

.menu-strip .category-scroll .capsule-btn {
  width: 100%;
  justify-content: center;
  padding: 0 .35rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-strip .category-short {
  display: inline;
}

.menu-strip .category-full {
  display: none;
}

.menu-strip.expanded .category-short {
  display: none;
}

.menu-strip.expanded .category-full {
  display: inline;
}

.menu-strip.expanded .category-scroll .capsule-btn {
  justify-content: flex-start;
  padding: 0 .75rem;
  text-align: left;
}

.menu-strip .pos-control-row {
  display: grid;
  width: 100%;
  min-height: auto;
  align-items: stretch;
  gap: .35rem;
  overflow: visible;
}

.menu-strip .capsule-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: .45rem;
  border-radius: 999px;
}

.layout-buttons {
  display: flex;
  flex: 0 0 auto;
  gap: .35rem;
}

.layout-icon-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.pos-item-cell {
  width: 100%;
  flex: 0 0 auto;
  padding: 0;
}

#itemsGrid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: .45rem;
  margin: 0;
}

.food-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  aspect-ratio: auto;
  min-height: 168px;
  border: 0;
  background: #fff;
  border-radius: 10px;
  padding: .38rem .3rem;
  box-shadow: 0 8px 18px rgba(19, 21, 20, .05);
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.food-tile:hover,
.food-tile:focus {
  box-shadow: 0 16px 34px rgba(255, 90, 31, .12);
  transform: translateY(-1px);
}

.food-tile img {
  width: min(96px, 96%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background: #fff2eb;
  margin-bottom: .38rem;
}

#itemsGrid.list-layout {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: .35rem;
}

#itemsGrid.list-layout .pos-item-cell {
  width: 100%;
  flex-basis: auto;
  padding: 0;
}

#itemsGrid.list-layout .food-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 70px;
  aspect-ratio: auto;
  text-align: center;
  gap: .05rem;
  padding: .28rem .28rem .2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
  width: 100%;
  transform: none;
  transition: background-color .12s ease, border-color .12s ease;
  outline: 0;
  box-sizing: border-box;
}

#itemsGrid.list-layout .food-row-name {
  min-width: 0;
  font-weight: 700;
  font-size: .86rem;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#itemsGrid.list-layout .food-row-price {
  font-weight: 800;
  white-space: nowrap;
  color: #e24309;
  font-size: .86rem;
  margin-top: .05rem;
}

#itemsGrid.list-layout .food-tile img {
  display: none;
}

#itemsGrid.list-layout .qty-bubble {
  display: grid;
  width: 20px;
  height: 20px;
  top: .2rem;
  right: .2rem;
  font-size: .66rem;
}

#itemsGrid.list-layout .food-tile:hover,
#itemsGrid.list-layout .food-tile:focus,
#itemsGrid.list-layout .food-tile:active {
  transform: none;
  box-shadow: none;
  border-color: var(--accent);
  background: #fff;
}

@media (max-width: 1199.98px) and (min-width: 576px) {
  .menu-layout {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  #itemsGrid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .food-tile {
    min-height: 154px;
  }
}

.food-name {
  display: -webkit-box;
  min-height: 2.35em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 800;
  font-size: .92rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
  width: 100%;
}

.food-price {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  color: #e24309;
  font-weight: 800;
  font-size: .92rem;
  line-height: 1.1;
  margin-top: .06rem;
  white-space: nowrap;
}

.qty-bubble {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.bill-panel {
  position: sticky;
  top: 82px;
  overflow: hidden;
}

.bill-summary > .d-flex {
  flex-wrap: nowrap;
}

.bill-expand-btn {
  display: flex;
  order: 1;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  text-align: left;
}

.bill-inline-meta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  white-space: nowrap;
}

.bill-expand-btn i {
  display: none;
  transition: transform .18s ease;
}

.bill-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}

.bill-subtitle {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

#mobileBillTotal {
  white-space: nowrap;
}

.bill-quick-actions {
  display: flex;
  order: 3;
  flex: 1 1 100%;
  justify-content: flex-end;
  gap: .35rem;
}

.bill-quick-actions .btn {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  white-space: nowrap;
}

.order-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .5rem;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  margin-bottom: .55rem;
}

.order-line-main,
.order-line-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: .45rem;
}

.order-line-main {
  min-width: 0;
  overflow: hidden;
}

.order-line-main span {
  color: var(--muted);
  white-space: nowrap;
}

.order-icon-chip,
.order-payment-status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: .15rem .45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink) !important;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
}

.order-icon-chip.icon-only {
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
}

.order-icon-chip i {
  font-size: 1rem;
  line-height: 1;
}

.order-payment-status.paid {
  border-color: rgba(25, 135, 84, .28);
  color: #087b5b !important;
}

.order-payment-status.unpaid {
  border-color: rgba(220, 53, 69, .25);
  color: #dc3545 !important;
}

.order-line-actions {
  justify-content: flex-end;
  white-space: nowrap;
}

.order-line-actions .btn {
  white-space: nowrap;
}

.table-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
}

.table-picker-card {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: .45rem;
  text-align: center;
  font-weight: 800;
}

.table-picker-card span {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.table-picker-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .12);
}

.cart-list {
  min-height: 180px;
  max-height: calc(100vh - 430px);
  overflow-y: auto;
}

.bill-head,
.simple-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px 64px 76px;
  align-items: center;
  gap: .5rem;
}

.bill-head {
  font-weight: 800;
}

.simple-cart-row {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}

.cart-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-stepper button {
  border: 0;
  background: #fff;
  width: 34px;
  height: 32px;
  font-weight: 800;
}

.qty-stepper span {
  min-width: 34px;
  text-align: center;
  font-weight: 700;
}

.total-row {
  font-size: 1.15rem;
  border-top: 1px dashed var(--line);
}

.bill-footer {
  background: #fff;
}

.bill-meta-toggle {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: .35rem .6rem;
  font-size: .85rem;
  font-weight: 800;
}

.bill-meta-toggle > span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.bill-mini-totals {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.bill-meta-toggle > .bi-chevron-down {
  transition: transform .16s ease;
}

.bill-meta-toggle[aria-expanded="true"] > .bi-chevron-down {
  transform: rotate(180deg);
}

.bill-meta-panel {
  display: none;
  padding-top: .65rem;
}

.bill-meta-panel.open {
  display: block;
}

.bill-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
}

.bill-action-row .btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  white-space: nowrap;
}

.bill-action-row .btn.d-none {
  display: none !important;
}

.bill-action-row:has(.btn.d-none) {
  display: none;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .85rem;
  margin-bottom: .75rem;
  background: #fff;
}

.admin-food-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff2eb;
}

.report-status-select {
  width: 124px;
}

.kot-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .75rem;
  align-items: start;
}

.kot-column {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
  overflow: hidden;
}

.kot-column-head {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem .7rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.kot-column-head span {
  display: inline-grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: #1f2b39;
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
}

.kot-column-list {
  display: grid;
  gap: .55rem;
  max-height: calc(100vh - 230px);
  overflow-y: auto;
  padding: .6rem;
}

.kot-empty {
  padding: .9rem .75rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  font-size: .85rem;
}

.kot-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: .7rem;
  box-shadow: 0 8px 18px rgba(18, 24, 20, .05);
}

.kot-card.ordered {
  border-left: 5px solid var(--accent);
}

.kot-card.preparing {
  border-left: 5px solid #f5b301;
}

.kot-card.completed,
.kot-card.served,
.kot-card.delivered {
  border-left: 5px solid #198754;
}

.kot-items {
  font-weight: 800;
  line-height: 1.45;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1px;
  background: rgba(223, 228, 238, .95);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px rgba(19, 24, 34, .06);
}

.bottom-nav-link {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface);
  font-size: .75rem;
  font-weight: 700;
}

.bottom-nav-link i {
  font-size: 1.25rem;
  line-height: 1;
}

.bottom-nav-link:hover,
.bottom-nav-link:focus {
  background: #fff1f3;
  color: var(--accent-2);
}

.receipt-paper {
  width: 58mm;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  color: #111;
  font-family: Roboto, "Noto Sans", "Droid Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.15;
}

.bill-view-frame {
  width: 100%;
  height: min(78vh, 720px);
  border: 0;
  background: #fff;
}

.receipt-paper.receipt-58 {
  width: 58mm;
}

.receipt-paper.receipt-80 {
  width: 80mm;
}

.receipt-paper table {
  width: 100%;
}

.receipt-paper th,
.receipt-paper td {
  padding: 1px 0;
  vertical-align: top;
}

@media print {
  body {
    background: #fff;
    padding: 0;
  }

  .no-print,
  .bottom-nav,
  .navbar {
    display: none !important;
  }

  .receipt-paper {
    width: 58mm;
    margin: 0;
  }

  .receipt-paper.receipt-80 {
    width: 80mm;
  }

  @page {
    margin: 4mm;
  }
}

@media (max-width: 1199.98px) {
  body {
    padding-bottom: 160px;
  }

  .bill-panel {
    position: fixed;
    top: auto;
    right: .75rem;
    bottom: 78px;
    left: .75rem;
    z-index: 1035;
    border-radius: 16px !important;
    box-shadow: 0 16px 44px rgba(18, 24, 20, .18);
  }

  .bill-panel.expanded {
    top: 76px;
    bottom: 78px;
    display: flex;
    flex-direction: column;
  }

  .bill-panel.expanded .bill-details {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
  }

  .bill-panel.expanded .cart-list {
    flex: 1;
    min-height: 96px;
    max-height: none;
  }

  .bill-details {
    display: none;
  }

  .bill-panel.expanded .bill-details {
    display: flex;
  }

  .bill-expand-btn i {
    display: inline-block;
  }

  .bill-panel.expanded .bill-expand-btn i {
    transform: rotate(180deg);
  }

  .cart-list {
    max-height: none;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-bottom: 154px;
  }

  .navbar .container-fluid {
    flex-wrap: nowrap;
    gap: .25rem;
    align-items: center;
    overflow: visible;
  }

  .outlet-label-toggle {
    max-width: 34vw;
    font-size: .95rem;
  }

  .top-search-date {
    order: 0;
    flex: 0 0 auto;
    width: auto;
    margin-left: .25rem;
    gap: .25rem;
  }

  .top-search-date .search-inline {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }

  .top-search-date .search-inline.open {
    position: absolute;
    left: .65rem;
    right: .65rem;
    top: calc(100% + .45rem);
    z-index: 1040;
    width: auto;
    height: 46px;
    justify-content: flex-start;
    padding: .35rem;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(18, 24, 20, .16);
  }

  .top-search-date .search-inline .form-control {
    width: 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    opacity: 0;
    pointer-events: none;
    font-size: .88rem;
  }

  .top-search-date .search-inline.open .form-control {
    width: 100%;
    padding-left: .75rem;
    padding-right: .5rem;
    opacity: 1;
    pointer-events: auto;
  }

  .top-search-date .search-clear-btn {
    display: none !important;
  }

  .top-search-date .date-toggle-btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .top-mode-controls {
    flex: 0 0 auto;
    gap: .25rem;
    margin-left: .15rem;
  }

  .top-mode-controls .capsule-btn,
  .top-mode-controls .icon-toggle-btn {
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
    font-size: 1rem;
  }

  .top-mode-controls span {
    display: none;
  }

  .top-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: .18rem !important;
  }

  .top-actions .btn,
  .top-actions .badge {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    justify-content: center;
    padding: 0;
    font-size: 1rem;
  }

  .icon-action span {
    display: none;
  }

  .add-outlet-top-btn span {
    display: none;
  }

  .orders-action span {
    display: inline;
    min-width: auto;
    font-size: .82rem;
  }

  .container-fluid.px-3,
  .app-shell.px-3 {
    padding-left: .65rem !important;
    padding-right: .65rem !important;
  }

  .toolbar {
    border-radius: 12px !important;
  }

  .app-shell {
    padding-bottom: 1.5rem;
  }

  .item-card {
    min-height: 116px;
    padding: .85rem;
  }

  .bill-head,
  .simple-cart-row {
    grid-template-columns: minmax(0, 1fr) 86px 54px 64px;
    gap: .35rem;
    font-size: .78rem;
  }

  .capsule-btn,
  .category-scroll .capsule-btn {
    min-height: 36px;
    padding: 0 .66rem;
    font-size: .86rem;
  }

  .pos-control-row {
    display: flex !important;
    gap: .45rem !important;
  }

  .table-strip {
    max-width: 148px;
  }

  .payment-btn,
  .icon-toggle-btn,
  .layout-icon-btn {
    min-width: 36px;
    width: 36px;
    height: 36px;
    justify-content: center;
    padding: 0;
  }

  .date-toggle-btn span {
    display: none;
  }

  .date-toggle-btn {
    min-width: 36px;
    width: 36px;
    height: 36px;
    justify-content: center;
    padding: 0;
    font-size: .78rem;
  }

  .category-scroll {
    gap: .45rem;
    margin-bottom: .6rem !important;
  }

  .menu-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: .45rem;
    position: relative;
  }

  .menu-layout.menu-expanded {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-strip {
    display: flex;
    grid-column: 1;
    grid-row: 1 / span 2;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: 0 !important;
    padding: .25rem;
    position: fixed;
    left: .65rem;
    top: 56px;
    z-index: 1035;
    width: 44px;
    max-height: calc(100vh - 260px);
    box-shadow: 0 10px 24px rgba(19, 24, 34, .12);
  }

  .menu-strip.expanded {
    width: min(74vw, 240px);
    padding: .5rem;
  }

  .menu-strip .category-scroll {
    max-height: calc(100vh - 340px);
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    margin-bottom: 0 !important;
    padding: 0 .15rem 0 0;
  }

  .menu-strip .category-scroll .capsule-btn {
    width: 100%;
    min-height: 34px;
    padding: 0 .35rem;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .66rem;
    line-height: 1;
  }

  .menu-collapse-btn {
    width: 36px;
    height: 36px;
  }

  .menu-strip.expanded .menu-collapse-btn {
    width: 100%;
  }

  .menu-strip.expanded .category-scroll .capsule-btn {
    justify-content: flex-start;
    padding: 0 .45rem;
    text-align: left;
    font-size: .72rem;
  }

  .layout-buttons {
    order: -1;
    flex-direction: row;
  }

  .menu-strip:not(.expanded) .layout-buttons,
  .menu-strip:not(.expanded) .category-scroll {
    display: none;
  }

  .menu-strip:not(.expanded) {
    border-radius: 999px;
    background: var(--accent);
    border-color: var(--accent);
  }

  .menu-strip:not(.expanded) .menu-collapse-btn {
    border-color: transparent;
    background: transparent;
    color: #fff;
  }

  .menu-strip .pos-control-row,
  .payment-buttons,
  .pos-tool-group {
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    gap: .25rem !important;
  }

  .menu-strip .capsule-btn {
    width: 36px;
    min-width: 36px;
    justify-content: center;
    padding: 0;
  }

  .search-inline {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }

  #itemsGrid {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .3rem;
  }

  .pos-item-cell {
    width: 100%;
    flex-basis: auto;
    padding: 0;
  }

  .food-tile {
    min-height: 158px;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(19, 21, 20, .05);
  }

  .food-tile img {
    width: min(100px, 98%);
    height: auto;
    border-radius: 10px;
    margin: .14rem auto .12rem;
  }

  .food-name {
    font-size: .98rem;
    line-height: 1.1;
    min-height: 2.2em;
    padding: 0 .12rem;
  }

  .food-price {
    font-size: .98rem;
    line-height: 1.05;
    margin-top: .02rem;
    padding: 0 .08rem .12rem;
  }

  .bill-panel {
    right: .5rem;
    left: .5rem;
    bottom: 74px;
  }

  .bill-panel.expanded {
    top: 64px;
    bottom: 72px;
  }

  .bill-summary {
    padding: .6rem !important;
  }

  .bill-summary .d-flex {
    flex-wrap: nowrap;
    align-items: center;
  }

  .bill-payment-row {
    justify-content: flex-start;
    margin-top: 0;
    gap: .28rem;
  }

  .bill-payment-row .payment-btn {
    min-width: 48px;
    height: 38px;
    padding: 0 .36rem;
    font-size: .76rem;
  }

  .bill-payment-row .btn {
    min-width: 50px;
    height: 38px;
    padding: 0 .36rem;
    font-size: .76rem;
    font-weight: 900;
  }

  .bill-payment-row #billBill {
    min-width: 58px;
  }

  .bill-payment-row #releaseBill {
    min-width: 58px;
  }

  .bill-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 auto;
  }

  .bill-expand-btn {
    flex: 1 1 auto;
    width: auto;
  }

  .bill-inline-meta {
    gap: .4rem;
    font-size: .95rem;
  }

  .bill-quick-actions .btn {
    width: auto;
    min-width: fit-content;
    min-height: 34px;
    padding: .35rem .55rem;
    font-size: .75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .bill-quick-actions .btn i {
    display: inline-block !important;
  }

  .bill-quick-actions .btn span {
    display: none !important;
  }
  .table-picker-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .45rem;
  }

  .table-picker-card {
    min-height: 68px;
    padding: .35rem .2rem;
  }

  .bill-action-row {
    gap: .4rem;
  }

  .bill-action-row .btn {
    min-height: 40px;
    padding: .42rem .55rem;
    font-size: .9rem;
  }

  .bill-action-row .btn {
    gap: .3rem;
  }

  .bill-action-row .btn i {
    display: inline-block;
    font-size: 1rem;
  }

  .bill-action-row .btn .action-text {
    display: none;
  }

  .bill-mini-totals {
    display: none;
  }

  .order-line {
    grid-template-columns: 1fr;
    padding: .6rem .65rem;
  }

  .order-line-main,
  .order-line-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .order-line-actions {
    justify-content: space-between;
  }

  .order-line-actions .btn {
    padding: .3rem .5rem;
    font-size: .75rem;
  }

  #itemsGrid.list-layout .food-tile {
    min-height: 66px;
    padding: .22rem .2rem .16rem;
  }
}

.qr-menu-card {
  height: 100%;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.qr-menu-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  align-self: center;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  background: #fff;
}

.qr-menu-page {
  min-height: 100vh;
  margin: 0;
  background: #f5f6f8;
  color: #151922;
  font-family: Roboto, "Noto Sans", "Droid Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  padding-bottom: 86px;
}

.qr-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: .85rem;
}

.qr-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e6e8ed;
}

.qr-header h1 {
  margin: .15rem 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.qr-header p {
  margin: 0;
  color: #5f6673;
  font-size: .95rem;
}

.qr-kicker {
  color: #d61f3b;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.qr-pill {
  flex: 0 0 auto;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}

.qr-status-strip {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  margin: .65rem 0 .75rem;
  min-height: 48px;
  padding: .55rem .9rem;
  border: 1px solid #f3b8c2;
  border-radius: 10px;
  background: #fff1f3;
  color: #99172b;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.qr-status-left,
.qr-status-right {
  min-width: 0;
  display: grid;
  gap: .12rem;
}

.qr-status-left {
  justify-items: start;
}

.qr-status-right {
  justify-items: end;
  text-align: right;
}

.qr-status-strip.ordered,
.qr-order-status.ordered {
  border-color: #f3b8c2;
  background: #fff1f3;
  color: #99172b;
}

.qr-status-strip.preparing,
.qr-order-status.preparing {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #9a3412;
}

.qr-status-strip.ready,
.qr-order-status.ready {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.qr-status-strip.cancelled,
.qr-order-status.cancelled {
  border-color: #e5e7eb;
  background: #f3f4f6;
  color: #4b5563;
}

.qr-status-strip strong,
.qr-status-strip span,
.qr-status-strip small {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.qr-status-strip small {
  color: inherit;
  opacity: .72;
  font-size: .82rem;
}

.qr-status-strip em,
.qr-order-status em {
  font-size: .86rem;
  font-style: normal;
  font-weight: 900;
}

.qr-status-strip a {
  color: #d61f3b;
  font-size: .8rem;
  font-weight: 900;
  text-decoration: underline;
  white-space: nowrap;
}

.qr-offer-banner {
  margin: 0 0 .7rem;
  padding: .55rem .75rem;
  border: 1px dashed #f59e0b;
  border-radius: 10px;
  background: #fffbeb;
  color: #92400e;
  font-size: .88rem;
  font-weight: 900;
}

.qr-customer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin: .75rem 0;
}

.qr-search-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .7rem;
}

.qr-menu-toggle {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid #d9dee7;
  border-radius: 10px;
  background: #fff;
  color: #111827;
  font-size: 1.25rem;
}

.qr-layout {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
}

.qr-categories {
  position: sticky;
  top: .65rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
  transition: width .18s ease, opacity .18s ease;
}

.qr-categories:not(.expanded) {
  width: 54px;
  max-width: 54px;
}

.qr-categories:not(.expanded) .qr-cat {
  min-width: 44px;
  padding: 0 .25rem;
  text-align: center;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.qr-categories::-webkit-scrollbar {
  display: none;
}

.qr-cat {
  border: 1px solid #d9dee7;
  background: #fff;
  color: #242936;
  border-radius: 10px;
  min-height: 38px;
  padding: 0 .6rem;
  font-weight: 800;
  text-align: left;
}

.qr-cat.active {
  background: #d61f3b;
  border-color: #d61f3b;
  color: #fff;
}

.qr-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
}

.qr-content {
  min-width: 0;
}

.qr-order-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin: 0 0 .7rem;
  padding: .75rem .9rem;
  border: 1px solid #f3b8c2;
  border-radius: 12px;
  background: #fff1f3;
  color: #99172b;
  font-weight: 900;
}

.qr-order-status em {
  margin-left: auto;
}

.qr-history {
  margin-bottom: .75rem;
}

.qr-history h2 {
  margin: 0 0 .45rem;
  color: #4b5563;
  font-size: .9rem;
  font-weight: 900;
}

.qr-history-card {
  margin-bottom: .45rem;
  padding: .65rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.qr-history-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}

.qr-history-card span,
.qr-history-card p {
  color: #667085;
  font-size: .82rem;
}

.qr-history-card p {
  margin: .35rem 0 0;
  line-height: 1.3;
}

.qr-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 .5rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c !important;
  font-weight: 900;
}

.qr-review-head,
.qr-review-customer,
.qr-review-lines > div,
.qr-review-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.qr-review-head,
.qr-review-total {
  font-weight: 900;
}

.qr-review-customer {
  margin: .45rem 0 .7rem;
  color: #667085;
  font-size: .9rem;
}

.qr-review-lines {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: .45rem 0;
}

.qr-review-lines > div {
  padding: .35rem 0;
}

.qr-review-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
}

.qr-review-qty {
  display: inline-grid;
  grid-template-columns: 28px 28px 28px;
  align-items: center;
  gap: .25rem;
  margin: 0 .45rem;
}

.qr-review-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #fff;
  color: #111827;
}

.qr-review-qty strong {
  text-align: center;
}

.qr-review-total {
  padding-top: .7rem;
  color: #d61f3b;
  font-size: 1.1rem;
}

.qr-food-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.qr-food-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  display: block;
  background: #f0f2f5;
}

.qr-food-body {
  padding: .5rem;
}

.qr-food-body h2 {
  min-height: 2.3em;
  margin: 0 0 .25rem;
  color: #161b26;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
  overflow: hidden;
}

.qr-food-body strong {
  display: block;
  color: #d61f3b;
  font-size: .9rem;
  font-weight: 900;
}

.qr-qty {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: .4rem;
  margin-top: .55rem;
}

.qr-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid #d9dee7;
  border-radius: 9px;
  background: #fff;
  color: #111827;
  font-size: 1.1rem;
}

.qr-thanks-slider {
  margin: 0 0 .75rem;
  overflow: hidden;
}

.qr-slide-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: .65rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.qr-slide-track::-webkit-scrollbar {
  display: none;
}

.qr-slide {
  min-height: 120px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  scroll-snap-align: start;
}

.qr-slide img,
.qr-slide video {
  width: 100%;
  height: 120px;
  object-fit: cover;
  opacity: .62;
  display: block;
}

.qr-slide div {
  position: absolute;
  inset: auto .75rem .75rem;
}

.qr-slide strong,
.qr-slide span {
  display: block;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .45);
}

.qr-slide strong {
  font-weight: 900;
}

.qr-slide span {
  font-size: .82rem;
}

.qr-qty span {
  text-align: center;
  font-weight: 900;
}

.qr-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem max(.85rem, env(safe-area-inset-left)) calc(.7rem + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #dde2ea;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, .08);
  font-family: Roboto, "Noto Sans", "Droid Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.qr-cart strong,
.qr-cart span {
  display: block;
}

.qr-cart strong {
  font-size: 1rem;
  font-weight: 900;
}

.qr-cart > div > span {
  color: #d61f3b;
  font-weight: 900;
}

.qr-cart .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 900;
}

@media (min-width: 768px) {
  .qr-items {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .qr-items {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .qr-shell {
    padding: .65rem;
  }

  .qr-header {
    padding: .85rem;
    gap: .5rem;
  }

  .qr-header h1 {
    font-size: 1.15rem;
  }

  .qr-status-strip {
    grid-template-columns: 1fr auto;
    gap: .35rem .55rem;
    padding: .5rem .65rem;
    min-height: 44px;
  }

  .qr-status-strip strong,
  .qr-status-strip span {
    font-size: .9rem;
  }

  .qr-status-strip a,
  .qr-status-strip em {
    font-size: .74rem;
  }

  .qr-status-strip a {
    text-align: right;
  }

  .qr-status-left span,
  .qr-status-left strong,
  .qr-status-left small,
  .qr-status-right strong,
  .qr-status-right span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .qr-customer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: .45rem;
  }

  .qr-customer .form-control {
    min-width: 0;
    padding-left: .55rem;
    padding-right: .55rem;
    font-size: .88rem;
  }

  .qr-layout {
    grid-template-columns: auto minmax(0, 1fr);
    gap: .45rem;
  }

  .qr-categories {
    width: 0;
    max-width: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .qr-categories.expanded {
    width: 84px;
    max-width: 84px;
    opacity: 1;
    pointer-events: auto;
  }

  .qr-cat {
    min-height: 34px;
    padding: 0 .45rem;
    font-size: .78rem;
    text-align: center;
  }

  .qr-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .35rem;
  }

  .qr-food-body {
    padding: .42rem;
  }

  .qr-food-body h2,
  .qr-food-body strong {
    font-size: .82rem;
  }

  .qr-qty {
    grid-template-columns: 24px 1fr 24px;
    gap: .25rem;
  }

  .qr-qty button {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    font-size: .9rem;
  }
}

@media (max-width: 991.98px) {
  .app-shell {
    padding-bottom: 96px;
  }

  .app-shell {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .navbar .container-fluid {
    align-items: flex-start;
    gap: .5rem;
  }

  .top-actions {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: .3rem !important;
  }

  .top-actions .btn {
    min-height: 38px;
  }

  .outlet-label-toggle {
    max-width: 60vw;
  }

  #itemsGrid.list-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .3rem;
  }

  #itemsGrid.list-layout .food-tile {
    min-height: 66px;
    padding: .22rem .22rem .18rem;
    border-radius: 12px;
  }
}

@media (min-width: 430px) and (max-width: 575.98px) {
  #itemsGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .food-tile,
  .pos-page .food-tile {
    min-height: 146px;
  }

  .food-tile img,
  .pos-page .food-tile img {
    width: min(82px, 96%);
  }
}

@media (max-width: 390px) {
  .bill-payment-row #clearCart span,
  .bill-payment-row #saveHoldBill span,
  .bill-payment-row #releaseBill span {
    display: none;
  }

  .bill-payment-row #clearCart,
  .bill-payment-row #saveHoldBill,
  .bill-payment-row #releaseBill {
    min-width: 38px;
    width: 38px;
    padding: 0;
  }

  .bill-payment-row #billBill span {
    display: inline;
  }
}

.report-status-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .7rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 999px;
  background: #fff;
  font-size: .9rem;
  line-height: 1;
}

.report-status-chip .form-check-input {
  width: 1rem;
  height: 1rem;
}

.report-range-btn {
  min-height: 42px;
  padding: .55rem .85rem;
}

.report-range-btn .range-short {
  display: none;
}

.report-order-status {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}

.report-order-status .badge {
  font-size: .75rem;
}

.receipt-action-label {
  display: none;
}

@media (max-width: 575.98px) {
  #itemsGrid.list-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .25rem;
  }

  #itemsGrid.list-layout .food-tile {
    min-height: 62px;
    padding: .18rem .16rem .14rem;
    border-radius: 10px;
  }

  #itemsGrid.list-layout .food-row-name,
  #itemsGrid.list-layout .food-row-price {
    font-size: .8rem;
  }

  .report-title-label {
    display: none;
  }

  .report-status-chip {
    padding: .35rem .5rem;
    font-size: .78rem;
    gap: .3rem;
  }

  .report-status-chip .status-long {
    display: none;
  }

  .report-status-chip .status-short {
    display: inline;
  }

  .report-range-group {
    width: 100%;
  }

  .report-range-btn {
    min-height: 36px;
    padding: .35rem .5rem;
    font-size: .72rem;
  }

  .report-range-btn .range-long {
    display: none;
  }

  .report-range-btn .range-short {
    display: inline;
  }

  .report-range-group .btn {
    flex: 1 1 0;
    white-space: nowrap;
  }

  #customDateWrap {
    width: 100%;
  }

  #customDateWrap .form-control {
    min-width: 0;
    flex: 1 1 0;
    font-size: .82rem;
    padding: .35rem .45rem;
  }
}

body.pos-page {
  --app-bg: #f8dadd;
  --surface: #ffffff;
  --surface-soft: #fff7f8;
  --ink: #202734;
  --muted: #747b85;
  --line: #efd4d9;
  --accent: #d61f3b;
  --accent-2: #d61f3b;
  font-family: Roboto, "Noto Sans", "Droid Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

@media (min-width: 768px) {
  body.pos-page {
    height: 100vh;
    overflow: hidden;
  }

  .pos-page .app-shell {
    height: calc(100vh - 138px);
    overflow: hidden;
  }

  .pos-page .app-shell > .row {
    height: 100%;
    min-height: 0;
  }

  .pos-page .app-shell > .row > section,
  .pos-page .app-shell > .row > aside {
    min-height: 0;
  }

  .pos-page .menu-layout {
    height: 100%;
    min-height: 0;
  }

  .pos-page #itemsGrid {
    align-content: start;
    max-height: 100%;
    overflow-y: auto;
    padding-right: .15rem;
  }

  .pos-page .bill-panel {
    max-height: 100%;
  }

  .pos-page .bill-details {
    max-height: calc(100vh - 250px);
    overflow: hidden;
  }

  .pos-page .cart-list {
    max-height: calc(100vh - 390px);
    overflow-y: auto;
  }
}

.pos-page .btn-dark,
.pos-page #saveHoldBill {
  background-color: #1f2b39;
  border-color: #1f2b39;
}

.pos-page .btn-success,
.pos-page #billBill {
  background-color: #d61f3b;
  border-color: #d61f3b;
}

.pos-page #bluetoothLastBill.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pos-page #bluetoothLastBill.btn-success {
  background-color: #198754;
  border-color: #198754;
  color: #fff;
}

.pos-page .bill-quick-actions {
  gap: .4rem;
}

.pos-page .bill-quick-actions .btn {
  min-width: 82px;
  min-height: 38px;
  padding: .45rem .7rem;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  gap: .38rem;
}

.pos-page .bill-quick-actions .btn i {
  display: inline-block;
  font-size: .95rem;
  line-height: 1;
}

.pos-page .bill-quick-actions .btn span {
  display: inline;
}

.pos-page #clearCart,
.pos-page #releaseBill {
  border-color: #d61f3b;
  color: #d61f3b;
  background: #fff;
}

.pos-page #clearCart:hover,
.pos-page #releaseBill:hover {
  color: #fff;
  background: #d61f3b;
}

.pos-page #saveHoldBill,
.pos-page #billBill {
  color: #fff;
}

.pos-page #itemsGrid {
  gap: .45rem;
}

.pos-page .food-tile {
  min-width: 0;
  overflow: hidden;
}

.pos-page .food-name {
  width: 100%;
  min-height: 2.45em;
  max-height: 2.45em;
  overflow: hidden;
  line-height: 1.18;
  word-break: break-word;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
}

.pos-page .food-price {
  width: 100%;
  overflow: hidden;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .pos-page .bill-quick-actions {
    gap: .3rem;
  }

  .pos-page .bill-quick-actions .btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 9px;
  }

  .pos-page .bill-quick-actions .btn span {
    display: none !important;
  }

  .pos-page #billBill {
    width: auto;
    min-width: 62px;
    padding: 0 .55rem;
  }

  .pos-page #billBill span {
    display: inline !important;
  }

  .pos-page .bill-quick-actions .btn i {
    display: inline-block !important;
    font-size: 1rem;
  }

.pos-page .bill-payment-row .btn,
.pos-page .bill-payment-row .payment-btn {
  width: auto;
  min-width: 50px;
  height: 38px;
  padding: 0 .36rem;
  gap: .36rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}

  .pos-page .bill-payment-row #billBill {
    min-width: 58px;
  }

  .pos-page .bill-payment-row #releaseBill {
    min-width: 58px;
  }

  .pos-page .bill-payment-row #billBill span {
    display: inline !important;
  }

  .pos-page #itemsGrid {
    gap: .3rem;
  }

  .pos-page .food-tile {
    min-width: 0;
    min-height: 158px;
    padding: 0;
    overflow: hidden;
  }

  .pos-page .food-tile img {
    width: min(100px, 98%);
    margin: .14rem auto .12rem;
  }

  .pos-page .food-name {
    width: 100%;
    min-height: 2.4em;
    max-height: 2.4em;
    overflow: hidden;
    color: #202734;
    font-size: clamp(.9rem, 3.8vw, 1rem);
    font-weight: 800;
    line-height: 1.08;
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 2;
  }

  .pos-page .food-price {
    width: 100%;
    overflow: hidden;
    color: #d61f3b;
    font-size: clamp(.9rem, 3.75vw, 1rem);
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
