:root {
  --ink: #0E2420;
  --ink-light: #15332C;
  --ink-lighter: #1C3F36;
  --paper: #F6F1E4;
  --paper-dim: #EAE3D2;
  --carbon: #1B1B16;
  --mist: #9FB8AE;
  --mist-dim: #6F8B83;
  --danger: #C1554A;
  --gold: var(--brand-primary, #D6A24A);
  --emerald: var(--brand-secondary, #1F6F54);
  --emerald-light: #2C8A6B;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-size: 14px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

body.locked .app-shell {
  display: none;
}

body:not(.locked) .login-screen {
  display: none;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 30%, rgba(214, 162, 74, 0.26), transparent 28rem),
    radial-gradient(circle at 10% 0%, rgba(37, 68, 87, 0.5), transparent 24rem),
    var(--ink);
}

.login-card {
  width: min(380px, 100%);
  display: grid;
  gap: 14px;
  padding: 30px 28px;
  text-align: center;
  background: var(--ink-light);
  border: 1px solid var(--ink-lighter);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.brand-badge-lg {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: var(--carbon);
  background: var(--gold);
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-badge {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--carbon);
  background: var(--gold);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}

.login-brand-mark {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  object-fit: contain;
}

.login-heading strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--paper);
}

.login-heading span {
  color: var(--mist);
  font-size: 0.85rem;
}

.login-card label {
  text-align: left;
}

.login-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.86rem;
}

.login-hint {
  margin: 0;
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

/* ---- Topbar ---- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-lighter);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.nav-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  border: none;
  color: var(--mist);
  background: transparent;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.nav-tab.active, .nav-tab:hover {
  color: var(--paper);
  background: var(--emerald);
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: 0 0 auto;
}

.user-chip {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink-light);
  font-size: 0.78rem;
}

@media (min-width: 720px) {
  .user-chip {
    display: inline-flex;
  }
}

.user-chip strong {
  color: var(--paper);
}

.app-main {
  padding: 22px 20px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-toolbar, .panel-header, .modal-header, .toolbar-controls, .modal-actions {
  display: flex;
  align-items: center;
}

.section-toolbar, .panel-header, .modal-header {
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section-toolbar h1, .section-toolbar h2 {
  margin: 0 0 2px;
  font-family: var(--font-display);
}

.section-toolbar h1 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.toolbar-controls, .modal-actions {
  gap: 10px;
  flex-wrap: wrap;
}

.primary-button, .ghost-button, .icon-button {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0 16px;
  font-weight: 700;
  font-size: 0.86rem;
}

.primary-button {
  color: var(--carbon);
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(214, 162, 74, 0.2);
}

.primary-button:hover {
  filter: brightness(1.06);
}

.primary-button:disabled {
  background: var(--ink-lighter);
  color: var(--mist-dim);
  box-shadow: none;
  cursor: not-allowed;
}

.ghost-button {
  color: var(--paper);
  background: var(--ink-light);
  border-color: var(--ink-lighter);
}

.ghost-button:hover {
  border-color: var(--gold);
}

.ghost-button.active {
  color: var(--carbon);
  background: var(--gold);
  border-color: var(--gold);
}

.table-action {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.8rem;
}

.compact-action {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.76rem;
}

.icon-button {
  width: 36px;
  padding: 0;
  background: var(--ink-lighter);
  color: var(--paper);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric, .panel, .panel-table {
  background: var(--ink-light);
  border: 1px solid var(--ink-lighter);
  box-shadow: var(--shadow);
  border-radius: 14px;
}

.metric {
  padding: 16px 18px;
}

.metric span {
  color: var(--mist);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.metric.warning strong {
  color: var(--danger);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.panel {
  padding: 18px 20px;
  margin-bottom: 16px;
}

.panel h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

th, td {
  padding: 10px 9px;
  border-bottom: 1px solid var(--ink-lighter);
  text-align: left;
  font-size: 0.86rem;
}

th {
  color: var(--mist);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

tbody tr:hover {
  background: var(--ink-lighter);
}

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

.worker-inactive {
  opacity: 0.5;
}

.settings-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.settings-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--ink-light);
  border: 1px solid var(--ink-lighter);
  border-radius: 10px;
}

.settings-list-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.settings-inline-form {
  margin-bottom: 14px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--ink-lighter);
  border-radius: 10px;
  background: var(--ink);
  padding: 10px 12px;
  color: var(--paper);
  outline: none;
}

input[type="color"] {
  padding: 4px;
  height: 42px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 162, 74, 0.18);
}

label {
  display: grid;
  gap: 6px;
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.brand-preview-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--ink-lighter);
  border-radius: 12px;
  background: var(--ink);
}

.brand-preview-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.palette-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 4px;
}

.palette-presets button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--ink-lighter);
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.82rem;
}

.date-control {
  width: 170px;
  color: var(--mist);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.modal {
  width: min(720px, calc(100vw - 24px));
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--paper);
}

.small-modal {
  width: min(440px, calc(100vw - 24px));
}

.modal::backdrop {
  background: rgba(4, 12, 10, 0.6);
}

.modal form {
  padding: 22px;
  background: var(--ink-light);
  border: 1px solid var(--ink-lighter);
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 15px;
  color: var(--carbon);
  background: var(--gold);
  box-shadow: var(--shadow);
  border-radius: 12px;
  transform: translateY(120%);
  transition: transform 180ms ease;
  z-index: 40;
  font-weight: 600;
}

.toast.visible {
  transform: translateY(0);
}

/* ---- Resumen / Dashboard ---- */

.stat-card strong {
  color: var(--paper);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  gap: 14px;
}

.dashboard-chart-card, .dashboard-side-card {
  margin-bottom: 0;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 200px;
  padding-top: 10px;
}

.chart-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
}

.chart-bar {
  width: 100%;
  max-width: 34px;
  background: var(--gold);
  border-radius: 6px 6px 0 0;
  min-height: 4px;
  transition: height 200ms ease;
}

.chart-bar-col span {
  color: var(--mist);
  font-size: 0.72rem;
  text-transform: capitalize;
}

.mini-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
}

.mini-list li strong {
  color: var(--danger);
}

.dashboard-last-sale {
  padding-top: 12px;
  border-top: 1px dashed var(--ink-lighter);
}

.dashboard-last-sale-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.dashboard-last-sale-row strong {
  color: var(--gold);
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Punto de venta ---- */

.pos-search-bar {
  position: sticky;
  top: 60px;
  z-index: 10;
  background: var(--ink);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.pos-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.pos-search-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.pos-shortcut-hint {
  font-size: 0.76rem;
  font-family: var(--font-mono);
}

.pos-search-wrap {
  position: relative;
}

#posSearch {
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.pos-search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: var(--ink-lighter);
  border: 1px solid var(--emerald);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 20;
}

.pos-search-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--paper);
}

.pos-search-item-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pos-search-item-meta {
  color: var(--mist-dim);
  font-size: 0.74rem;
  flex: 0 0 auto;
}

.pos-search-item.active, .pos-search-item:hover:not(:disabled) {
  background: var(--emerald);
}

.pos-search-item:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pos-search-hint {
  padding: 8px 14px;
  color: var(--mist-dim);
  font-size: 0.7rem;
  border-top: 1px solid var(--ink);
}

/* ---- Ticket / boleta ---- */

.ticket-card {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--carbon);
  margin-bottom: 20px;
}

.ticket-head {
  padding: 16px 22px 12px;
  border-bottom: 1px dashed rgba(27, 27, 22, 0.3);
}

.ticket-head strong {
  display: block;
  font-family: var(--font-display);
}

.ticket-head span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.ticket-body {
  padding: 4px 22px;
  max-height: 30vh;
  overflow-y: auto;
}

.ticket-table {
  min-width: 0;
}

.ticket-table td {
  border-bottom: none;
  padding: 8px 0;
  font-size: 0.82rem;
  vertical-align: top;
}

.ticket-item-name {
  display: block;
  font-family: var(--font-mono);
}

.ticket-item-meta {
  display: block;
  color: rgba(27, 27, 22, 0.55);
  font-size: 0.72rem;
  font-family: var(--font-mono);
}

.ticket-item-amount {
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-mono);
}

.ticket-empty {
  text-align: center;
  padding: 24px 0 !important;
  color: rgba(27, 27, 22, 0.5) !important;
}

.pos-cart-row-error {
  background: rgba(193, 85, 74, 0.12);
}

.ticket-foot {
  padding: 14px 22px 20px;
  border-top: 1px dashed rgba(27, 27, 22, 0.3);
}

.ticket-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.ticket-total {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-dark, #B6822F);
}

.pos-method-toggle {
  display: flex;
  gap: 8px;
}

.method-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: transparent;
  color: var(--carbon);
  border: 1px solid var(--carbon);
}

.method-chip em {
  opacity: 0.55;
  font-style: normal;
}

.method-chip.active {
  color: var(--paper);
  background: var(--carbon);
}

.pos-fiado-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.fiado-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(27, 27, 22, 0.75);
}

.fiado-check input {
  width: auto;
}

.pos-fiado-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.pos-fiado-fields label {
  color: var(--carbon);
}

.pos-charge-button {
  width: 100%;
  min-height: 48px;
}

.ticket-tear {
  height: 14px;
  background:
    linear-gradient(-45deg, var(--ink) 8px, transparent 0) 0 0 / 16px 16px repeat-x,
    linear-gradient(45deg, var(--ink) 8px, transparent 0) 0 0 / 16px 16px repeat-x;
}

/* ---- Categorias / mas vendidos / grid de productos ---- */

.pos-categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 14px;
}

.category-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink-light);
  border: 1px solid var(--ink-lighter);
  color: var(--mist);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.category-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--carbon);
}

.pos-top-sellers {
  margin-bottom: 14px;
}

.pos-top-sellers-label {
  margin: 0 0 8px;
  color: var(--mist);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pos-top-sellers-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.top-seller-chip {
  flex: 0 0 auto;
  min-width: 120px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--ink-lighter);
  border: 1px solid rgba(31, 111, 84, 0.4);
  color: var(--paper);
}

.top-seller-chip span {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 2px;
}

.top-seller-chip strong {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.pos-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.pos-product {
  display: grid;
  gap: 4px;
  padding: 12px;
  text-align: left;
  background: var(--ink-light);
  border: 1px solid var(--ink-lighter);
  border-radius: 12px;
}

.pos-product:hover:not(:disabled) {
  border-color: var(--gold);
}

.pos-product-out {
  opacity: 0.4;
  cursor: not-allowed;
}

.pos-scale-icon {
  font-size: 0.7rem;
  color: var(--mist);
}

.pos-product-price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold);
}

.pos-product-stock {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mist);
}

.pos-product-stock.stock-healthy {
  color: var(--emerald-light);
}

.pos-product-stock.stock-low {
  color: var(--gold);
}

.pos-product-stock.stock-critical {
  color: var(--danger);
}

.pos-product-qty-badge {
  margin-top: 2px;
  font-size: 0.7rem;
  color: var(--emerald-light);
}

/* ---- Modales de cantidad / cobro ---- */

.qty-quick-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.quick-chip {
  flex: 1;
  min-width: 56px;
  padding: 9px 0;
  border-radius: 10px;
  background: var(--ink);
  border: 1px solid var(--ink-lighter);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
}

.quick-chip-gold {
  background: var(--gold);
  color: var(--carbon);
  border-color: var(--gold);
}

.qty-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(31, 111, 84, 0.18);
}

.qty-preview-row strong {
  color: var(--emerald-light);
  font-family: var(--font-mono);
}

.cash-vuelto-row {
  background: rgba(193, 85, 74, 0.14);
}

.cash-vuelto-row strong {
  color: var(--danger);
  font-size: 1.05rem;
}

/* ---- Mi plan ---- */

.plan-current-card {
  max-width: 460px;
  margin-bottom: 26px;
}

.plan-current-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-current-head > div:first-child span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(27, 27, 22, 0.55);
}

.plan-current-price {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-dark, #B6822F);
}

.plan-current-price span {
  font-size: 0.72rem;
  font-family: var(--font-body);
  color: rgba(27, 27, 22, 0.55);
}

.plan-current-body {
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.plan-detail-row {
  display: flex;
  justify-content: space-between;
}

.plan-switch-title {
  font-family: var(--font-display);
  margin: 0 0 14px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--ink-light);
  border: 2px solid var(--ink-lighter);
  border-radius: 16px;
}

.plan-card.is-current {
  border-color: var(--gold);
}

.plan-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.plan-card-price {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin: 4px 0;
}

.plan-card-price span {
  font-size: 0.72rem;
  font-family: var(--font-body);
  color: var(--mist);
}

.plan-card-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 6px;
  flex: 1;
}

.plan-card-features li {
  font-size: 0.8rem;
  color: var(--mist);
  padding-left: 16px;
  position: relative;
}

.plan-card-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--emerald-light);
}

.plan-faq {
  max-width: 720px;
}

@media (max-width: 860px) {
  .app-main {
    padding: 18px 14px 50px;
  }
  .topbar-inner {
    padding: 10px 12px;
  }
  .nav-tab span {
    display: none;
  }
  .form-grid, .pos-fiado-fields {
    grid-template-columns: 1fr;
  }
}
