/* /Components/Cashier/CashierWorkspace.razor.rz.scp.css */
/* ===========================================
   CashierWorkspace.razor.css
   Three-column CSS Grid layout:
     Left:    Tables panel  (280px fixed)
     Center:  Order / Payment / Summary (fluid)
     Right:   Menu panel    (420px fixed)
   =========================================== */

.cashier-workspace[b-2dr9lukf7v] {
    display: grid;
    grid-template-columns: 280px 1fr 420px;
    gap: var(--space-md);
    height: 100%;
    padding: var(--space-md);
}

/* ---- Panel base ---- */

.cashier-workspace__panel[b-2dr9lukf7v] {
    min-height: 0;
}

/* ---- Panel: Tables (left) ---- */

.cashier-workspace__panel--tables[b-2dr9lukf7v] {
    /* Inherits 280px from grid */
}

/* ---- Panel: Center (Order / Payment / Summary) ---- */

.cashier-workspace__panel--center[b-2dr9lukf7v] {
    /* Inherits 1fr from grid */
    display: flex;
    flex-direction: column;
    min-height: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--panel);
    overflow: hidden;
}

/* ---- Panel: Menu (right) ---- */

.cashier-workspace__panel--menu[b-2dr9lukf7v] {
    /* Inherits 420px from grid */
}

/* ---- Workspace Header ---- */

.cashier-workspace__header[b-2dr9lukf7v] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--line);
    background: var(--panel);
}

.cashier-workspace__eyebrow[b-2dr9lukf7v] {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.cashier-workspace__title[b-2dr9lukf7v] {
    margin: var(--space-1) 0 0;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--weight-normal);
    line-height: var(--leading-none);
    color: var(--ink);
}

.cashier-workspace__meta[b-2dr9lukf7v] {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--ink-mute);
    white-space: nowrap;
}

/* ---- Queue Strip ---- */

.cashier-workspace__queue-strip[b-2dr9lukf7v] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
}

.cashier-workspace__queue-item[b-2dr9lukf7v] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-width: 0;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--panel);
}

.cashier-workspace__queue-label[b-2dr9lukf7v] {
    overflow: hidden;
    color: var(--ink-mute);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.12em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.cashier-workspace__queue-value[b-2dr9lukf7v] {
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    line-height: var(--leading-none);
}

.cashier-workspace__queue-item--waiting[b-2dr9lukf7v] {
    border-color: var(--status-kitchen);
}

.cashier-workspace__queue-item--cooking[b-2dr9lukf7v] {
    border-color: var(--status-occupied);
}

.cashier-workspace__queue-item--ready[b-2dr9lukf7v] {
    border-color: var(--status-available);
}

.cashier-workspace__queue-item--serving[b-2dr9lukf7v] {
    border-color: var(--status-served);
}

/* ---- State wrappers (loading / error / empty) ---- */

.cashier-state[b-2dr9lukf7v] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--space-lg);
}

/* ---- Responsive: Tablet ---- */

@media (max-width: 1024px) {
    .cashier-workspace[b-2dr9lukf7v] {
        grid-template-columns: 220px 1fr 360px;
    }

    .cashier-workspace__queue-strip[b-2dr9lukf7v] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* /Components/Cashier/CashierWorkspaceV2.razor.rz.scp.css */
.cashier-v2[b-o749lwim4m] {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 420px;
    height: 100%;
    min-height: 0;
    background: var(--canvas);
    color: var(--ink);
}

.cashier-v2-state[b-o749lwim4m] {
    display: grid;
    min-height: 100vh;
    place-items: center;
    background: var(--canvas);
}

.cashier-v2__sidebar[b-o749lwim4m],
.cashier-v2__workspace[b-o749lwim4m],
.cashier-v2__menu[b-o749lwim4m] {
    min-height: 0;
}

.cashier-v2__sidebar[b-o749lwim4m] {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    background: var(--canvas);
}

.cashier-v2__sidebar-header[b-o749lwim4m],
.cashier-v2__workspace-header[b-o749lwim4m] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--line);
    background: var(--panel);
}

.cashier-v2__brand[b-o749lwim4m],
.cashier-v2__workspace-header h2[b-o749lwim4m],
.cashier-v2__empty-round h3[b-o749lwim4m],
.cashier-v2__round-header h3[b-o749lwim4m] {
    margin: 0;
    font-family: var(--font-display);
    font-weight: var(--weight-normal);
    line-height: var(--leading-none);
    color: var(--ink);
}

.cashier-v2__brand[b-o749lwim4m] {
    margin-top: var(--space-1);
    font-size: var(--text-2xl);
}

.cashier-v2__eyebrow[b-o749lwim4m] {
    display: block;
    color: var(--ink-mute);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cashier-v2__live[b-o749lwim4m] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--ink-soft);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
}

.cashier-v2__live .pulse-dot[b-o749lwim4m] {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
}

.cashier-v2__status-grid[b-o749lwim4m] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
    padding: var(--space-md);
    border-bottom: 1px solid var(--line);
}

.cashier-v2__status-card[b-o749lwim4m],
.cashier-v2__session-strip > *[b-o749lwim4m],
.cashier-v2__queue-card[b-o749lwim4m] {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--panel);
}

.cashier-v2__status-card[b-o749lwim4m] {
    padding: var(--space-2) var(--space-3);
}

.cashier-v2__status-card span[b-o749lwim4m],
.cashier-v2__section-heading[b-o749lwim4m],
.cashier-v2__total-bar > span[b-o749lwim4m],
.cashier-v2__round-item span[b-o749lwim4m],
.cashier-v2__activity p[b-o749lwim4m],
.cashier-v2__workspace-header p[b-o749lwim4m] {
    color: var(--ink-mute);
    font-size: var(--text-sm);
}

.cashier-v2__status-card strong[b-o749lwim4m] {
    display: block;
    margin-top: var(--space-1);
    font-family: var(--font-mono);
    font-size: var(--text-xl);
}

.cashier-v2__sidebar-section[b-o749lwim4m] {
    display: grid;
    gap: var(--space-2);
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--line);
}

.cashier-v2__section-heading[b-o749lwim4m] {
    display: flex;
    justify-content: space-between;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cashier-v2__table-list[b-o749lwim4m] {
    min-height: 0;
    flex: 1;
}

.cashier-v2__workspace[b-o749lwim4m] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cashier-v2__table-mark[b-o749lwim4m] {
    display: grid;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: var(--radius-xl);
    background: var(--ink);
    color: var(--canvas);
    font-family: var(--font-display);
    font-size: var(--text-3xl);
}

.cashier-v2__session-title[b-o749lwim4m] {
    min-width: 0;
    flex: 1;
}

.cashier-v2__workspace-header h2[b-o749lwim4m] {
    margin-top: var(--space-1);
    font-size: var(--text-3xl);
}

.cashier-v2__workspace-header p[b-o749lwim4m] {
    margin: var(--space-1) 0 0;
}

.cashier-v2__session-strip[b-o749lwim4m],
.cashier-v2__queue-strip[b-o749lwim4m] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-3);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
}

.cashier-v2__metric[b-o749lwim4m],
.cashier-v2__queue-card[b-o749lwim4m] {
    padding: var(--space-3);
}

.cashier-v2__metric strong[b-o749lwim4m],
.cashier-v2__queue-card strong[b-o749lwim4m],
.cashier-v2__total-bar strong[b-o749lwim4m],
.cashier-v2__round-total[b-o749lwim4m] {
    display: block;
    margin-top: var(--space-1);
    font-family: var(--font-mono);
    font-weight: var(--weight-semibold);
    color: var(--ink);
}

.cashier-v2__timeline[b-o749lwim4m] {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    padding: var(--space-sm) var(--space-lg);
    border-bottom: 1px solid var(--line);
    background: var(--panel);
}

.cashier-v2__timeline-step[b-o749lwim4m] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    flex: 0 0 auto;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink-mute);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
}

.cashier-v2__timeline-step--complete[b-o749lwim4m] {
    background: var(--primary-soft);
    color: var(--primary);
}

.cashier-v2__queue-card--waiting[b-o749lwim4m] {
    border-color: var(--status-kitchen);
}

.cashier-v2__queue-card--cooking[b-o749lwim4m] {
    border-color: var(--status-occupied);
}

.cashier-v2__queue-card--ready[b-o749lwim4m] {
    border-color: var(--status-available);
}

.cashier-v2__queue-card--serving[b-o749lwim4m] {
    border-color: var(--status-served);
}

.cashier-v2__rounds[b-o749lwim4m] {
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
}

.cashier-v2__empty-round[b-o749lwim4m],
.cashier-v2__round-card[b-o749lwim4m],
.cashier-v2__activity[b-o749lwim4m] {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--panel);
    box-shadow: var(--shadow-panel);
}

.cashier-v2__empty-round[b-o749lwim4m] {
    display: grid;
    min-height: 220px;
    place-items: center;
    padding: var(--space-xl);
    text-align: center;
}

.cashier-v2__empty-round h3[b-o749lwim4m] {
    font-size: var(--text-3xl);
}

.cashier-v2__empty-round p[b-o749lwim4m] {
    max-width: 320px;
    margin: var(--space-2) auto 0;
    color: var(--ink-mute);
}

.cashier-v2__round-card[b-o749lwim4m] {
    overflow: hidden;
}

.cashier-v2__round-card--draft[b-o749lwim4m] {
    border-color: var(--primary);
    background: color-mix(in oklab, var(--primary-soft) 42%, var(--panel));
}

.cashier-v2__round-header[b-o749lwim4m],
.cashier-v2__round-footer[b-o749lwim4m],
.cashier-v2__total-bar[b-o749lwim4m],
.cashier-v2__activity header[b-o749lwim4m] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.cashier-v2__round-header[b-o749lwim4m] {
    padding: var(--space-md);
    border-bottom: 1px solid var(--line);
}

.cashier-v2__round-header h3[b-o749lwim4m] {
    margin-top: var(--space-1);
    font-size: var(--text-2xl);
}

.cashier-v2__round-items[b-o749lwim4m] {
    display: grid;
    gap: var(--space-2);
    padding: var(--space-md);
}

.cashier-v2__round-item[b-o749lwim4m] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--panel);
}

.cashier-v2__round-item strong[b-o749lwim4m] {
    display: block;
    color: var(--ink);
}

.cashier-v2__round-actions[b-o749lwim4m] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--ink);
    font-family: var(--font-mono);
}

.cashier-v2__round-actions button[b-o749lwim4m] {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--panel);
    color: var(--destructive);
}

.cashier-v2__round-footer[b-o749lwim4m] {
    padding: var(--space-md);
    border-top: 1px solid var(--line);
    background: var(--panel);
}

.cashier-v2__primary-action[b-o749lwim4m],
.cashier-v2__secondary-action[b-o749lwim4m] {
    min-height: 44px;
    border-radius: var(--radius-md);
    padding: 0 var(--space-md);
    font-weight: var(--weight-semibold);
}

.cashier-v2__primary-action[b-o749lwim4m] {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--primary-foreground);
}

.cashier-v2__secondary-action[b-o749lwim4m] {
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--ink-soft);
}

.cashier-v2__activity[b-o749lwim4m] {
    margin: 0 var(--space-lg) var(--space-md);
    padding: var(--space-md);
}

.cashier-v2__activity p[b-o749lwim4m] {
    margin: var(--space-2) 0 0;
}

.cashier-v2__total-bar[b-o749lwim4m] {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--line);
    background: var(--panel);
}

.cashier-v2__total-bar strong[b-o749lwim4m] {
    font-size: var(--text-3xl);
}

.cashier-v2__menu[b-o749lwim4m] {
    border-left: 1px solid var(--line);
    background: var(--panel);
}

@media (max-width: 1180px) {
    .cashier-v2[b-o749lwim4m] {
        grid-template-columns: 240px minmax(0, 1fr) 360px;
    }
}

@media (max-width: 960px) {
    .cashier-v2[b-o749lwim4m] {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .cashier-v2__sidebar[b-o749lwim4m],
    .cashier-v2__menu[b-o749lwim4m] {
        min-height: 420px;
    }

    .cashier-v2__session-strip[b-o749lwim4m],
    .cashier-v2__queue-strip[b-o749lwim4m] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* /Components/Cashier/Menu/MenuCard.razor.rz.scp.css */
.menu-card[b-984avvsxhv] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 96px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.menu-card:hover[b-984avvsxhv] {
    border-color: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.menu-card__top[b-984avvsxhv] {
    /* top section for name */
}

.menu-card__name[b-984avvsxhv] {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.menu-card__bottom[b-984avvsxhv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-card__price[b-984avvsxhv] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

.menu-card__add[b-984avvsxhv] {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.menu-card:hover .menu-card__add[b-984avvsxhv] {
    opacity: 1;
}
/* /Components/Cashier/Menu/MenuGrid.razor.rz.scp.css */
.menu-grid[b-mqs5lru85y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}
/* /Components/Cashier/Menu/MenuPanel.razor.rz.scp.css */
.menu-panel[b-hi9oy34o74] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-panel__header[b-hi9oy34o74] {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
}

.menu-panel__header-top[b-hi9oy34o74] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.menu-panel__title[b-hi9oy34o74] {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.menu-panel__status[b-hi9oy34o74] {
    font-size: 0.6875rem;
    color: var(--muted);
}

.menu-panel__search[b-hi9oy34o74] {
    position: relative;
    margin-top: 12px;
}

.menu-panel__search-input[b-hi9oy34o74] {
    width: 100%;
    height: 40px;
    padding: 0 12px 0 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--ink);
    font-size: 0.875rem;
    outline: none;
}

.menu-panel__search-input[b-hi9oy34o74]::placeholder {
    color: var(--muted);
}

.menu-panel__body[b-hi9oy34o74] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
/* /Components/Cashier/Orders/OrderItem.razor.rz.scp.css */
.order-item[b-xyjp8nqxm3] {
    padding: var(--space-xs) 0;
}

.order-item__container[b-xyjp8nqxm3] {
    display: block;
}

.order-item__content[b-xyjp8nqxm3] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
}

.order-item__info[b-xyjp8nqxm3] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.order-item__name[b-xyjp8nqxm3] {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
}

.order-item__detail[b-xyjp8nqxm3] {
    font-size: 0.8125rem;
    color: var(--muted);
}

.order-item__note[b-xyjp8nqxm3] {
    font-size: 0.8125rem;
    color: var(--muted);
    font-style: italic;
}

.order-item__total[b-xyjp8nqxm3] {
    font-size: 0.9375rem;
    color: var(--ink);
    font-weight: 600;
    white-space: nowrap;
}
/* /Components/Cashier/Orders/OrderPanel.razor.rz.scp.css */
/* ===========================================
   OrderPanel.razor.css
   Visual structure:
     Session Header
     Kitchen Queue Strip (placeholder — backend integration pending)
     Rounds (Order Items)
     Order Summary + Actions
   =========================================== */

.order-panel[b-h57lhor5t8] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ---- Session Header ---- */

.order-panel__session-header[b-h57lhor5t8] {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--line);
}

.order-panel__session-label[b-h57lhor5t8] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
}

/* ---- Kitchen Queue Strip (visual placeholder only) ---- */

/* ---- Body (Rounds section) ---- */

.order-panel__body[b-h57lhor5t8] {
    flex: 1;
    overflow-y: auto;
}

/* ---- Rounds container ---- */

.order-panel__rounds[b-h57lhor5t8] {
    padding: var(--space-sm) var(--space-md);
}

.order-panel__round-header[b-h57lhor5t8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
    margin-bottom: var(--space-xs);
}

.order-panel__round-label[b-h57lhor5t8] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink);
}

.order-panel__round-count[b-h57lhor5t8] {
    font-size: 0.75rem;
    color: var(--muted);
}

.order-panel__list[b-h57lhor5t8] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ---- Footer (Order Summary + Actions) ---- */

.order-panel__footer[b-h57lhor5t8] {
    border-top: 1px solid var(--line);
    padding: var(--space-md) var(--space-md) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.order-panel__summary-line[b-h57lhor5t8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--muted);
}

.order-panel__total[b-h57lhor5t8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    color: var(--ink);
}

.order-panel__total strong[b-h57lhor5t8] {
    font-size: 1.125rem;
}

.order-panel__checkout-btn[b-h57lhor5t8] {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted);
    font-size: 0.9375rem;
    cursor: not-allowed;
    opacity: 0.6;
}

.order-panel__cancel-btn[b-h57lhor5t8] {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted);
    font-size: 0.9375rem;
    cursor: not-allowed;
    opacity: 0.6;
}
/* /Components/Cashier/Tables/TableCard.razor.rz.scp.css */
.table-card[b-14r2ft4wq3] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.table-card:hover[b-14r2ft4wq3] {
    border-color: var(--primary);
}

.table-card--selected[b-14r2ft4wq3] {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}

.table-card__number[b-14r2ft4wq3] {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
}

.table-card__info[b-14r2ft4wq3] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.table-card__status[b-14r2ft4wq3] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink);
}

.table-card__dot[b-14r2ft4wq3] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.table-card__dot--available[b-14r2ft4wq3] {
    background: var(--status-available, #22c55e);
}

.table-card__dot--occupied[b-14r2ft4wq3] {
    background: var(--status-occupied, #f97316);
}

.table-card__dot--reserved[b-14r2ft4wq3] {
    background: var(--status-reserved, #3b82f6);
}

.table-card__seats[b-14r2ft4wq3] {
    font-size: 0.75rem;
    color: var(--muted);
}
/* /Components/Cashier/Tables/TableGrid.razor.rz.scp.css */
.table-grid[b-xv26ywwc6m] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

@media (max-width: 768px) {
    .table-grid[b-xv26ywwc6m] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Cashier/Tables/TablePanel.razor.rz.scp.css */
.table-panel[b-wnus737nn2] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.table-panel__body[b-wnus737nn2] {
    flex: 1;
    overflow-y: auto;
}
/* /Components/CashierV3/Insight/AlertCard.razor.rz.scp.css */
.cv3-alert-card[b-l89dt6jkes] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--panel, #fff);
}

.cv3-alert-card .cv3-insight-card__header[b-l89dt6jkes] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.cv3-alert-card .cv3-insight-card__title[b-l89dt6jkes] {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink, #1a1a1a);
}

.cv3-alert-card__empty[b-l89dt6jkes] {
    margin: 0;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
    color: var(--ink-mute, #7a756c);
    font-size: 0.875rem;
    font-weight: 600;
}

.cv3-alert-card__list[b-l89dt6jkes] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cv3-alert-card__badge[b-l89dt6jkes] {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border-left: 4px solid currentColor;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.25;
}

.cv3-alert-card__badge--waiting[b-l89dt6jkes] {
    background: color-mix(in oklab, #d97706 14%, transparent);
    color: #b45309;
}

.cv3-alert-card__badge--delay[b-l89dt6jkes] {
    background: color-mix(in oklab, #dc2626 12%, transparent);
    color: #b91c1c;
}

.cv3-alert-card__badge--ready[b-l89dt6jkes] {
    background: color-mix(in oklab, #16a34a 14%, transparent);
    color: #15803d;
}

.cv3-alert-card__badge--payment[b-l89dt6jkes] {
    background: color-mix(in oklab, #7c3aed 12%, transparent);
    color: #6d28d9;
}
/* /Components/CashierV3/Insight/KitchenStatusCard.razor.rz.scp.css */
.cv3-kitchen-status[b-cq8i07jsc9] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--panel, #fff);
}

.cv3-kitchen-status .cv3-insight-card__header[b-cq8i07jsc9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.cv3-kitchen-status .cv3-insight-card__title[b-cq8i07jsc9] {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink, #1a1a1a);
}

.cv3-kitchen-status__badge[b-cq8i07jsc9] {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cv3-kitchen-status__badge--cooking[b-cq8i07jsc9] {
    background: color-mix(in oklab, #d97706 18%, transparent);
    color: #b45309;
}

.cv3-kitchen-status__badge--waiting[b-cq8i07jsc9] {
    background: color-mix(in oklab, #2563eb 16%, transparent);
    color: #1d4ed8;
}

.cv3-kitchen-status__badge--ready[b-cq8i07jsc9] {
    background: color-mix(in oklab, #16a34a 16%, transparent);
    color: #15803d;
}

.cv3-kitchen-status__badge--complete[b-cq8i07jsc9] {
    background: color-mix(in oklab, #0f766e 16%, transparent);
    color: #0f766e;
}

.cv3-kitchen-status__badge--idle[b-cq8i07jsc9] {
    background: var(--canvas, #f7f5f0);
    color: var(--ink-mute, #7a756c);
}

.cv3-kitchen-status__round[b-cq8i07jsc9] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
}

.cv3-kitchen-status__counts[b-cq8i07jsc9] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
}

.cv3-kitchen-status__count[b-cq8i07jsc9] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.45rem 0.4rem;
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
    text-align: center;
}

.cv3-insight-card__label[b-cq8i07jsc9] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}

.cv3-insight-card__value[b-cq8i07jsc9] {
    font-size: 1.125rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--ink, #1a1a1a);
    line-height: 1.2;
}
/* /Components/CashierV3/Insight/ServiceProgressCard.razor.rz.scp.css */
.cv3-service-progress[b-omudy9m8f7] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--panel, #fff);
}

.cv3-service-progress .cv3-insight-card__header[b-omudy9m8f7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.cv3-service-progress .cv3-insight-card__title[b-omudy9m8f7] {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink, #1a1a1a);
}

.cv3-service-progress__priority[b-omudy9m8f7] {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cv3-service-progress__priority--high[b-omudy9m8f7] {
    background: color-mix(in oklab, #dc2626 16%, transparent);
    color: #b91c1c;
}

.cv3-service-progress__priority--normal[b-omudy9m8f7] {
    background: color-mix(in oklab, #d97706 16%, transparent);
    color: #b45309;
}

.cv3-service-progress__priority--low[b-omudy9m8f7] {
    background: var(--canvas, #f7f5f0);
    color: var(--ink-mute, #7a756c);
}

.cv3-service-progress__rows[b-omudy9m8f7] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0;
}

.cv3-service-progress__row[b-omudy9m8f7] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
}

.cv3-service-progress__row .cv3-insight-card__value[b-omudy9m8f7],
.cv3-service-progress__text[b-omudy9m8f7] {
    margin: 0;
}

.cv3-service-progress__text[b-omudy9m8f7] {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--ink, #1a1a1a);
}

.cv3-service-progress .cv3-insight-card__label[b-omudy9m8f7] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}

.cv3-service-progress .cv3-insight-card__value[b-omudy9m8f7] {
    font-size: 1.125rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--ink, #1a1a1a);
    line-height: 1.2;
}
/* /Components/CashierV3/Insight/SessionInsight.razor.rz.scp.css */
.cv3-session-insight[b-l24uo95z27] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
}

.cv3-session-insight__empty[b-l24uo95z27] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 8rem;
    padding: 1.25rem 1rem;
    border: 1px dashed var(--line, #ebe6dc);
    border-radius: 10px;
    background: color-mix(in oklch, var(--panel, #fff) 88%, var(--canvas, #f7f5f0));
    text-align: center;
}

.cv3-session-insight__empty-title[b-l24uo95z27] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink, #1a1a1a);
}

.cv3-session-insight__empty-meta[b-l24uo95z27] {
    font-size: 0.875rem;
    color: var(--ink-mute, #7a756c);
    line-height: 1.35;
}
/* /Components/CashierV3/Insight/TimelineSummaryCard.razor.rz.scp.css */
.cv3-timeline-summary[b-09yclntnpn] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--panel, #fff);
}

.cv3-timeline-summary .cv3-insight-card__header[b-09yclntnpn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.cv3-timeline-summary .cv3-insight-card__title[b-09yclntnpn] {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink, #1a1a1a);
}

.cv3-timeline-summary__metrics[b-09yclntnpn] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
}

.cv3-timeline-summary__metric[b-09yclntnpn] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem 0.4rem;
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
    text-align: center;
}

.cv3-timeline-summary .cv3-insight-card__label[b-09yclntnpn] {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}

.cv3-timeline-summary .cv3-insight-card__value[b-09yclntnpn] {
    font-size: 1.125rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--ink, #1a1a1a);
    line-height: 1.2;
}
/* /Components/CashierV3/Layout/CashierV3Layout.razor.rz.scp.css */
/* Cashier V3 Zone A–F — application workspace layout (Blueprint 224).
   Hierarchy fills parent. Only Zones C, D, E scroll vertically.
   Zone A hidden (Sprint UI.1) — kept in markup for future use.
   Zone B sits directly under the Application Bar. */

.cv3-layout[b-6vgtln4aaj] {
    --cv3-zone-a-height: 3rem;
    --cv3-zone-b-height: 6.25rem;
    --cv3-zone-c-width: 280px;
    --cv3-zone-e-width: 300px;
    --cv3-zone-f-shell-height: 3.5rem;
    --cv3-line: var(--line, #ebe6dc);
    --cv3-panel: var(--panel, #fff);
    --cv3-canvas: var(--canvas, #f7f5f0);
    --cv3-ink: var(--ink, #1a1a1a);
    --cv3-mute: var(--ink-mute, #7a756c);

    display: grid;
    /* A hidden → B | body | F */
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-columns: minmax(0, 1fr);
    height: 100%;
    max-height: 100%;
    min-height: 0;
    min-width: 0;
    background: var(--cv3-canvas);
    color: var(--cv3-ink);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cv3-line);
    border-radius: 8px;
}

.cv3-zone[b-6vgtln4aaj] {
    position: relative;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--cv3-panel);
    overflow: hidden;
}

.cv3-zone-label[b-6vgtln4aaj] {
    position: absolute;
    top: 0.35rem;
    right: 0.5rem;
    z-index: 1;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cv3-mute);
    pointer-events: none;
}

.cv3-zone-body[b-6vgtln4aaj] {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ---- Zone A — hidden (retained for future; do not delete) ---- */
.cv3-zone-a[b-6vgtln4aaj] {
    display: none;
}

.cv3-zone-a .cv3-zone-body[b-6vgtln4aaj] {
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 1rem;
    overflow: hidden;
}

/* ---- Zone B — Service Timeline (first visible row under App Bar) ---- */
.cv3-zone-b[b-6vgtln4aaj] {
    grid-row: 1;
    flex: 0 0 auto;
    min-height: var(--cv3-zone-b-height);
    border-bottom: 1px solid var(--cv3-line);
    z-index: 2;
}

.cv3-zone-b .cv3-zone-body[b-6vgtln4aaj] {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 0.75rem 0.35rem;
    overflow: hidden;
}

/* ---- Body: C | D | E (only vertical scroll regions) ---- */
.cv3-body[b-6vgtln4aaj] {
    grid-row: 2;
    display: grid;
    grid-template-columns: var(--cv3-zone-c-width) minmax(0, 1fr) var(--cv3-zone-e-width);
    grid-template-rows: minmax(0, 1fr);
    grid-template-areas: "c d e";
    min-height: 0;
    min-width: 0;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.cv3-zone-c[b-6vgtln4aaj] {
    grid-area: c;
    border-right: 1px solid var(--cv3-line);
}

.cv3-zone-d[b-6vgtln4aaj] {
    grid-area: d;
    background: var(--cv3-canvas);
}

.cv3-zone-e[b-6vgtln4aaj] {
    grid-area: e;
    border-left: 1px solid var(--cv3-line);
}

/* Zone C / E — independent vertical scroll */
.cv3-zone-c .cv3-zone-body[b-6vgtln4aaj],
.cv3-zone-e .cv3-zone-body[b-6vgtln4aaj] {
    padding: 0.75rem;
    gap: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Zone D — contain; RoundList scrolls; ActionBar sticky inside SessionWorkspace */
.cv3-zone-d .cv3-zone-body[b-6vgtln4aaj] {
    padding: 0.75rem;
    gap: 0.5rem;
    overflow: hidden;
}

/* ---- Zone F — Dialog Host mount (no chrome; overlay is position:fixed) ---- */
.cv3-zone-f--shell[b-6vgtln4aaj] {
    grid-row: 3;
    flex: 0 0 auto;
    min-height: 0;
    height: 0;
    border: none;
    background: transparent;
    overflow: visible;
    z-index: 4;
    pointer-events: none;
}

.cv3-zone-f--shell .cv3-zone-label[b-6vgtln4aaj] {
    display: none;
}

.cv3-zone-f--shell .cv3-zone-body[b-6vgtln4aaj] {
    padding: 0;
    overflow: visible;
    pointer-events: none;
}

.cv3-zone-f--shell .cv3-zone-body[b-6vgtln4aaj]  .jlek-dialog-host {
    pointer-events: auto;
}

/* Placeholder chrome */
[b-6vgtln4aaj] .cv3-placeholder-panel {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px dashed var(--cv3-line);
    border-radius: 6px;
    background: color-mix(in oklch, var(--cv3-panel) 88%, var(--cv3-canvas));
    color: var(--cv3-mute);
    font-size: 0.8125rem;
    min-height: 2.5rem;
}

[b-6vgtln4aaj] .cv3-placeholder-panel__title {
    font-weight: 600;
    color: var(--cv3-ink);
    font-size: 0.8125rem;
}

[b-6vgtln4aaj] .cv3-placeholder-panel__meta {
    font-size: 0.7rem;
    color: var(--cv3-mute);
}

[b-6vgtln4aaj] .cv3-zone-placeholder {
    padding: 0.25rem 0;
    color: var(--cv3-mute);
    font-size: 0.875rem;
}

/* ---- Tablet portrait: C on top, D|E side-by-side ---- */
@media (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
    .cv3-body[b-6vgtln4aaj] {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: minmax(0, 28%) minmax(0, 1fr);
        grid-template-areas:
            "c c"
            "d e";
    }

    .cv3-zone-c[b-6vgtln4aaj] {
        border-right: none;
        border-bottom: 1px solid var(--cv3-line);
        max-height: none;
    }
}

/* ---- Tablet landscape: C|D|E row fills remaining height ---- */
@media (max-width: 1279px) and (min-width: 768px) and (orientation: landscape) {
    .cv3-body[b-6vgtln4aaj] {
        grid-template-columns: minmax(0, 22%) minmax(0, 1fr) minmax(0, 24%);
        grid-template-rows: minmax(0, 1fr);
        grid-template-areas: "c d e";
    }

    .cv3-zone-c[b-6vgtln4aaj] {
        border-right: 1px solid var(--cv3-line);
        border-bottom: none;
        max-height: none;
    }
}

/* ---- Desktop (≥1280) ---- */
@media (min-width: 1280px) {
    .cv3-body[b-6vgtln4aaj] {
        grid-template-columns: var(--cv3-zone-c-width) minmax(0, 1fr) var(--cv3-zone-e-width);
        grid-template-rows: minmax(0, 1fr);
        grid-template-areas: "c d e";
    }
}

/* ---- Mobile: stacked C/D/E inside fixed shell (no document scroll) ---- */
@media (max-width: 767px) {
    .cv3-body[b-6vgtln4aaj] {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
        grid-template-areas:
            "c"
            "d"
            "e";
        height: 100%;
        max-height: 100%;
        overflow: hidden;
    }

    .cv3-zone-c[b-6vgtln4aaj],
    .cv3-zone-d[b-6vgtln4aaj],
    .cv3-zone-e[b-6vgtln4aaj] {
        border: none;
        border-bottom: 1px solid var(--cv3-line);
        max-height: none;
        min-height: 0;
    }

    .cv3-zone-c .cv3-zone-body[b-6vgtln4aaj],
    .cv3-zone-e .cv3-zone-body[b-6vgtln4aaj] {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .cv3-zone-d .cv3-zone-body[b-6vgtln4aaj] {
        overflow: hidden;
    }

    .cv3-zone-b[b-6vgtln4aaj] {
        min-height: 4rem;
    }
}
/* /Components/CashierV3/MenuToday/MenuTodayDrawer.razor.rz.scp.css */
.cv3-menu-today[b-z56nhw8v4t] {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    justify-items: end;
}

.cv3-menu-today__backdrop[b-z56nhw8v4t] {
    position: absolute;
    inset: 0;
    background: color-mix(in oklch, #1a1a1a 40%, transparent);
}

.cv3-menu-today__drawer[b-z56nhw8v4t] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(24rem, 100%);
    height: 100%;
    background: var(--panel, #fff);
    color: var(--ink, #1a1a1a);
    border-left: 1px solid var(--hairline, #ebe6dc);
    box-shadow: -12px 0 32px color-mix(in oklch, #1a1a1a 16%, transparent);
    animation: cv3-menu-today-slide-b-z56nhw8v4t 0.18s ease-out;
}

@keyframes cv3-menu-today-slide-b-z56nhw8v4t {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.cv3-menu-today__header[b-z56nhw8v4t] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.35rem;
}

.cv3-menu-today__eyebrow[b-z56nhw8v4t] {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}

.cv3-menu-today__title[b-z56nhw8v4t] {
    margin: 0.15rem 0 0;
    font-size: 1.25rem;
    font-weight: 800;
}

.cv3-menu-today__close[b-z56nhw8v4t] {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--hairline, #ebe6dc);
    border-radius: 8px;
    background: var(--muted-bg, #f7f5f0);
    color: var(--ink, #1a1a1a);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.cv3-menu-today__hint[b-z56nhw8v4t] {
    margin: 0;
    padding: 0 1rem 0.5rem;
    font-size: 0.85rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-menu-today__toolbar[b-z56nhw8v4t] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0 1rem 0.75rem;
    border-bottom: 1px solid var(--hairline, #ebe6dc);
}

.cv3-menu-today__search[b-z56nhw8v4t] {
    width: 100%;
    min-height: 2.4rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--hairline, #ebe6dc);
    border-radius: 8px;
    background: var(--muted-bg, #f7f5f0);
    color: var(--ink, #1a1a1a);
    font: inherit;
    font-size: 0.9rem;
}

.cv3-menu-today__search:focus[b-z56nhw8v4t] {
    outline: 2px solid #2563eb;
    outline-offset: 1px;
}

.cv3-menu-today__chips[b-z56nhw8v4t] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cv3-menu-today__chip[b-z56nhw8v4t] {
    min-height: 1.9rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--hairline, #ebe6dc);
    background: var(--panel, #fff);
    color: var(--ink-mute, #7a756c);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

.cv3-menu-today__chip--active[b-z56nhw8v4t] {
    background: color-mix(in oklab, #2563eb 12%, white);
    border-color: color-mix(in oklch, #2563eb 40%, var(--hairline, #ebe6dc));
    color: #1d4ed8;
}

.cv3-menu-today__bulk[b-z56nhw8v4t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.cv3-menu-today__bulk-btn[b-z56nhw8v4t] {
    min-height: 2.1rem;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--hairline, #ebe6dc);
    background: var(--muted-bg, #f7f5f0);
    color: var(--ink, #1a1a1a);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
}

.cv3-menu-today__bulk-btn:disabled[b-z56nhw8v4t] {
    opacity: 0.55;
    cursor: not-allowed;
}

.cv3-menu-today__bulk-btn--danger[b-z56nhw8v4t] {
    background: color-mix(in oklab, #b91c1c 10%, white);
    border-color: color-mix(in oklab, #b91c1c 35%, white);
    color: #991b1b;
}

.cv3-menu-today__state[b-z56nhw8v4t] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.25rem 1rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-menu-today__state--error[b-z56nhw8v4t] {
    color: #b91c1c;
}

.cv3-menu-today__retry[b-z56nhw8v4t] {
    border: 1px solid var(--hairline, #ebe6dc);
    border-radius: 8px;
    background: var(--muted-bg, #f7f5f0);
    padding: 0.4rem 0.75rem;
    cursor: pointer;
}

.cv3-menu-today__list[b-z56nhw8v4t] {
    margin: 0;
    padding: 0.35rem 0.65rem 1.25rem;
    overflow: auto;
    flex: 1;
}

.cv3-menu-today__group[b-z56nhw8v4t] {
    margin-top: 0.65rem;
}

.cv3-menu-today__group-title[b-z56nhw8v4t] {
    margin: 0 0 0.25rem;
    padding: 0.35rem 0.55rem 0.2rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
    border-bottom: 1px solid var(--hairline, #ebe6dc);
}

.cv3-menu-today__group-list[b-z56nhw8v4t] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cv3-menu-today__row[b-z56nhw8v4t] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.55rem;
    border-bottom: 1px solid var(--hairline, #ebe6dc);
}

.cv3-menu-today__row--sold-out .cv3-menu-today__name[b-z56nhw8v4t] {
    opacity: 0.75;
}

.cv3-menu-today__dot[b-z56nhw8v4t] {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
}

.cv3-menu-today__dot--ok[b-z56nhw8v4t] {
    background: #15803d;
}

.cv3-menu-today__dot--sold[b-z56nhw8v4t] {
    background: #b91c1c;
}

.cv3-menu-today__meta[b-z56nhw8v4t] {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}

.cv3-menu-today__name[b-z56nhw8v4t] {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}

.cv3-menu-today__category[b-z56nhw8v4t] {
    font-size: 0.7rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-menu-today__status[b-z56nhw8v4t] {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}

.cv3-menu-today__toggle[b-z56nhw8v4t] {
    min-width: 5.75rem;
    min-height: 2.25rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-menu-today__toggle:disabled[b-z56nhw8v4t] {
    opacity: 0.65;
    cursor: wait;
}

.cv3-menu-today__toggle--ok[b-z56nhw8v4t] {
    background: color-mix(in oklab, #15803d 14%, white);
    color: #166534;
    border-color: color-mix(in oklab, #15803d 35%, white);
}

.cv3-menu-today__toggle--sold[b-z56nhw8v4t] {
    background: color-mix(in oklab, #b91c1c 12%, white);
    color: #991b1b;
    border-color: color-mix(in oklab, #b91c1c 35%, white);
}

.cv3-menu-today__spinner[b-z56nhw8v4t] {
    width: 0.85rem;
    height: 0.85rem;
    margin: 0;
    border-width: 2px;
}

.cv3-menu-today__toast[b-z56nhw8v4t] {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.85rem;
    z-index: 2;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    border: 1px solid color-mix(in oklch, #2563eb 30%, var(--hairline, #ebe6dc));
    background: color-mix(in oklab, #2563eb 10%, white);
    color: #1e3a8a;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 8px 20px color-mix(in oklch, #1a1a1a 12%, transparent);
}

.cv3-menu-today__modal[b-z56nhw8v4t] {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: color-mix(in oklch, #1a1a1a 45%, transparent);
}

.cv3-menu-today__modal-dialog[b-z56nhw8v4t] {
    width: min(22rem, 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--hairline, #ebe6dc);
    background: var(--panel, #fff);
    box-shadow: 0 16px 40px color-mix(in oklch, #1a1a1a 18%, transparent);
}

.cv3-menu-today__modal-title[b-z56nhw8v4t] {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.cv3-menu-today__modal-body[b-z56nhw8v4t] {
    margin: 0 0 0.9rem;
    font-size: 0.88rem;
    color: var(--ink-mute, #7a756c);
    line-height: 1.4;
}

.cv3-menu-today__modal-actions[b-z56nhw8v4t] {
    display: flex;
    justify-content: flex-end;
    gap: 0.45rem;
}
/* /Components/CashierV3/QuickEntry/FloorLayout.razor.rz.scp.css */
/* Restaurant floor — recognition over density (two-column dining + Take Home). */

.cv3-floor-layout[b-2jm0v8x42c] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    min-width: 0;
    min-height: 0;
}

.cv3-floor-layout--empty[b-2jm0v8x42c] {
    padding: 1rem;
    border: 1px dashed var(--line, #ebe6dc);
    border-radius: 10px;
    color: var(--ink-mute, #7a756c);
    font-size: 0.875rem;
    text-align: center;
}

.cv3-floor-layout__dining[b-2jm0v8x42c] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.65rem 0.75rem;
    align-items: start;
}

.cv3-floor-layout__col[b-2jm0v8x42c] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.cv3-floor-layout__divider[b-2jm0v8x42c] {
    height: 0;
    border: none;
    border-top: 1px dashed var(--line, #ebe6dc);
    margin: 0.15rem 0 0;
}

.cv3-floor-layout__take-home[b-2jm0v8x42c] {
    min-width: 0;
}

/* Narrow Zone C (desktop sidebar / tablet landscape): keep two columns, slightly tighter. */
@media (max-width: 1279px) and (orientation: landscape) {
    .cv3-floor-layout__dining[b-2jm0v8x42c] {
        gap: 0.55rem 0.6rem;
    }

    .cv3-floor-layout__col[b-2jm0v8x42c] {
        gap: 0.55rem;
    }
}

/* Portrait tablet: Zone C is wider on top — give cards more breathing room. */
@media (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
    .cv3-floor-layout__dining[b-2jm0v8x42c] {
        max-width: 28rem;
        gap: 0.75rem 1rem;
    }

    .cv3-floor-layout__col[b-2jm0v8x42c] {
        gap: 0.75rem;
    }

    .cv3-floor-layout__take-home[b-2jm0v8x42c] {
        max-width: 28rem;
    }
}
/* /Components/CashierV3/QuickEntry/FloorTableCard.razor.rz.scp.css */
/* Floor table card — large touch target, name + status only. */

.cv3-table-card[b-iqnv9uwega] {
    --table-accent: var(--ink-mute, #7a756c);
    --table-bg: var(--panel, #fff);
    --table-border: var(--line, #ebe6dc);

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    min-height: 4.25rem;
    padding: 0.65rem 0.75rem 0.65rem 0.95rem;
    margin: 0;
    border: 2px solid var(--table-border);
    border-radius: 12px;
    background: var(--table-bg);
    color: var(--ink, #1a1a1a);
    text-align: left;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cv3-table-card:focus-visible[b-iqnv9uwega] {
    outline: 2px solid var(--table-accent);
    outline-offset: 2px;
}

.cv3-table-card:active[b-iqnv9uwega] {
    transform: scale(0.98);
}

.cv3-table-card__accent[b-iqnv9uwega] {
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 4px;
    border-radius: 0 3px 3px 0;
    background: var(--table-accent);
}

.cv3-table-card__name[b-iqnv9uwega] {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.cv3-table-card__status[b-iqnv9uwega] {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--table-accent);
}

.cv3-table-card--available[b-iqnv9uwega] {
    --table-accent: #6b7280;
}

.cv3-table-card--ordering[b-iqnv9uwega] {
    --table-accent: #2563eb;
}

.cv3-table-card--preparing[b-iqnv9uwega] {
    --table-accent: #d97706;
}

.cv3-table-card--ready[b-iqnv9uwega] {
    --table-accent: #16a34a;
}

.cv3-table-card--payment[b-iqnv9uwega] {
    --table-accent: #7c3aed;
}

.cv3-table-card--selected[b-iqnv9uwega] {
    border-color: var(--table-accent);
    box-shadow: 0 0 0 1px var(--table-accent), 0 4px 12px color-mix(in oklch, var(--table-accent) 22%, transparent);
    background: color-mix(in oklch, var(--table-accent) 8%, var(--table-bg));
}
/* /Components/CashierV3/QuickEntry/QuickEntry.razor.rz.scp.css */
.cv3-quick-entry[b-amnyoyas7h] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
    min-height: 0;
}

.cv3-quick-entry__header[b-amnyoyas7h] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.15rem;
}

.cv3-quick-entry__title[b-amnyoyas7h] {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink, #1a1a1a);
}

.cv3-quick-entry__meta[b-amnyoyas7h] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}
/* /Components/CashierV3/QuickEntry/TakeHomeCard.razor.rz.scp.css */
/* Take Home — separate from dining floor, same interaction model. */

.cv3-take-home-card[b-4gd0l879vf] {
    --th-accent: var(--ink-mute, #7a756c);
    --th-bg: var(--panel, #fff);
    --th-border: var(--line, #ebe6dc);

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    min-height: 4.25rem;
    padding: 0.7rem 0.85rem 0.7rem 1rem;
    margin: 0;
    border: 2px dashed var(--th-border);
    border-radius: 12px;
    background: var(--th-bg);
    color: var(--ink, #1a1a1a);
    text-align: left;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cv3-take-home-card:focus-visible[b-4gd0l879vf] {
    outline: 2px solid var(--th-accent);
    outline-offset: 2px;
}

.cv3-take-home-card:active[b-4gd0l879vf] {
    transform: scale(0.98);
}

.cv3-take-home-card__accent[b-4gd0l879vf] {
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 4px;
    border-radius: 0 3px 3px 0;
    background: var(--th-accent);
}

.cv3-take-home-card__label[b-4gd0l879vf] {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.15;
}

.cv3-take-home-card__status[b-4gd0l879vf] {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--th-accent);
}

.cv3-take-home-card--available[b-4gd0l879vf] {
    --th-accent: #6b7280;
}

.cv3-take-home-card--ordering[b-4gd0l879vf] {
    --th-accent: #2563eb;
}

.cv3-take-home-card--preparing[b-4gd0l879vf] {
    --th-accent: #d97706;
}

.cv3-take-home-card--ready[b-4gd0l879vf] {
    --th-accent: #16a34a;
}

.cv3-take-home-card--payment[b-4gd0l879vf] {
    --th-accent: #7c3aed;
}

.cv3-take-home-card--selected[b-4gd0l879vf] {
    border-style: solid;
    border-color: var(--th-accent);
    box-shadow: 0 0 0 1px var(--th-accent), 0 4px 12px color-mix(in oklch, var(--th-accent) 22%, transparent);
    background: color-mix(in oklch, var(--th-accent) 8%, var(--th-bg));
}
/* /Components/CashierV3/Session/CancelItemDialog.razor.rz.scp.css */
.cv3-cancel-item-dialog[b-i8rd1236wa] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(100vw - 1.5rem, 28rem);
    padding: 1rem 1.1rem 1.15rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 14px;
    background: var(--panel, #fff);
    box-shadow: 0 12px 36px color-mix(in oklab, #000 14%, transparent);
}

.cv3-cancel-item-dialog__header[b-i8rd1236wa] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-cancel-item-dialog__title[b-i8rd1236wa] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink, #1a1a1a);
}

.cv3-cancel-item-dialog__close[b-i8rd1236wa] {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink-mute, #7a756c);
    cursor: pointer;
}

.cv3-cancel-item-dialog__summary[b-i8rd1236wa] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--canvas, #f7f5f0);
}

.cv3-cancel-item-dialog__row[b-i8rd1236wa] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-cancel-item-dialog__label[b-i8rd1236wa] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}

.cv3-cancel-item-dialog__value[b-i8rd1236wa] {
    font-size: 0.95rem;
    color: var(--ink, #1a1a1a);
    text-align: right;
}

.cv3-cancel-item-dialog__reasons[b-i8rd1236wa] {
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cv3-cancel-item-dialog__legend[b-i8rd1236wa] {
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink, #1a1a1a);
}

.cv3-cancel-item-dialog__reason[b-i8rd1236wa] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 48px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--panel, #fff);
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-cancel-item-dialog__reason:has(input:checked)[b-i8rd1236wa] {
    border-color: color-mix(in oklch, #b91c1c 45%, var(--line, #ebe6dc));
    background: color-mix(in oklab, #b91c1c 6%, white);
}

.cv3-cancel-item-dialog__reason input[b-i8rd1236wa] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #b91c1c;
}

.cv3-cancel-item-dialog__footer[b-i8rd1236wa] {
    display: flex;
}

.cv3-cancel-item-dialog__submit[b-i8rd1236wa] {
    flex: 1;
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    background: #b91c1c;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-cancel-item-dialog__submit:disabled[b-i8rd1236wa] {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .cv3-cancel-item-dialog[b-i8rd1236wa] {
        width: 100%;
        border-radius: 16px 16px 12px 12px;
    }
}
/* /Components/CashierV3/Session/CancelSessionDialog.razor.rz.scp.css */
.cv3-cancel-session-dialog[b-ghrx5vq015] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(100vw - 1.5rem, 28rem);
    padding: 1rem 1.1rem 1.15rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 14px;
    background: var(--panel, #fff);
    box-shadow: 0 12px 36px color-mix(in oklab, #000 14%, transparent);
}

.cv3-cancel-session-dialog__header[b-ghrx5vq015] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-cancel-session-dialog__title[b-ghrx5vq015] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink, #1a1a1a);
}

.cv3-cancel-session-dialog__close[b-ghrx5vq015] {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink-mute, #7a756c);
    cursor: pointer;
}

.cv3-cancel-session-dialog__body[b-ghrx5vq015] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.cv3-cancel-session-dialog__lead[b-ghrx5vq015] {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ink, #1a1a1a);
}

.cv3-cancel-session-dialog__list[b-ghrx5vq015] {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.9rem;
    color: var(--ink-soft, #3d3a34);
    line-height: 1.45;
}

.cv3-cancel-session-dialog__dev[b-ghrx5vq015] {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 0.25rem;
    padding: 0.65rem 0.75rem;
    border: 1px dashed color-mix(in oklch, var(--status-pay-ink, #b45309) 45%, var(--line));
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--ink, #1a1a1a);
    cursor: pointer;
}

.cv3-cancel-session-dialog__dev input[b-ghrx5vq015] {
    margin-top: 0.15rem;
}

.cv3-cancel-session-dialog__dev em[b-ghrx5vq015] {
    color: var(--ink-mute, #7a756c);
    font-style: normal;
    font-weight: 600;
}

.cv3-cancel-session-dialog__footer[b-ghrx5vq015] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.cv3-cancel-session-dialog__keep[b-ghrx5vq015],
.cv3-cancel-session-dialog__confirm[b-ghrx5vq015] {
    min-height: 48px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-cancel-session-dialog__keep[b-ghrx5vq015] {
    border: 1px solid var(--line, #ebe6dc);
    background: var(--canvas, #f7f5f0);
    color: var(--ink, #1a1a1a);
}

.cv3-cancel-session-dialog__confirm[b-ghrx5vq015] {
    border: 0;
    background: #b91c1c;
    color: #fff;
}

@media (min-width: 768px) {
    .cv3-cancel-session-dialog__footer[b-ghrx5vq015] {
        flex-direction: row;
    }

    .cv3-cancel-session-dialog__keep[b-ghrx5vq015],
    .cv3-cancel-session-dialog__confirm[b-ghrx5vq015] {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .cv3-cancel-session-dialog[b-ghrx5vq015] {
        width: 100%;
        border-radius: 16px 16px 12px 12px;
    }
}
/* /Components/CashierV3/Session/EmptySessionDialog.razor.rz.scp.css */
.cv3-empty-session-dialog[b-y52e4880h7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(100vw - 1.5rem, 28rem);
    padding: 1rem 1.1rem 1.15rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 14px;
    background: var(--panel, #fff);
    box-shadow: 0 12px 36px color-mix(in oklab, #000 14%, transparent);
}

.cv3-empty-session-dialog__header[b-y52e4880h7] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-empty-session-dialog__title[b-y52e4880h7] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink, #1a1a1a);
}

.cv3-empty-session-dialog__close[b-y52e4880h7] {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink-mute, #7a756c);
    cursor: pointer;
}

.cv3-empty-session-dialog__body[b-y52e4880h7] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cv3-empty-session-dialog__message[b-y52e4880h7] {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ink, #1a1a1a);
}

.cv3-empty-session-dialog__prompt[b-y52e4880h7] {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-empty-session-dialog__footer[b-y52e4880h7] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.cv3-empty-session-dialog__continue[b-y52e4880h7],
.cv3-empty-session-dialog__close-session[b-y52e4880h7] {
    min-height: 48px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-empty-session-dialog__continue[b-y52e4880h7] {
    border: 1px solid var(--line, #ebe6dc);
    background: var(--canvas, #f7f5f0);
    color: var(--ink, #1a1a1a);
}

.cv3-empty-session-dialog__close-session[b-y52e4880h7] {
    border: 0;
    background: #b91c1c;
    color: #fff;
}

@media (min-width: 768px) {
    .cv3-empty-session-dialog__footer[b-y52e4880h7] {
        flex-direction: row;
    }

    .cv3-empty-session-dialog__continue[b-y52e4880h7],
    .cv3-empty-session-dialog__close-session[b-y52e4880h7] {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .cv3-empty-session-dialog[b-y52e4880h7] {
        width: 100%;
        border-radius: 16px 16px 12px 12px;
    }
}
/* /Components/CashierV3/Session/ItemActionSheet.razor.rz.scp.css */
.cv3-item-action-sheet[b-p3n6hmtwz2] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(100vw - 1.5rem, 28rem);
    padding: 1rem 1rem 1.15rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 16px 16px 12px 12px;
    background: var(--panel, #fff);
    box-shadow: 0 -8px 28px color-mix(in oklab, #000 12%, transparent);
}

.cv3-item-action-sheet__header[b-p3n6hmtwz2] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-item-action-sheet__title[b-p3n6hmtwz2] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink, #1a1a1a);
}

.cv3-item-action-sheet__meta[b-p3n6hmtwz2] {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-item-action-sheet__close[b-p3n6hmtwz2] {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink-mute, #7a756c);
    cursor: pointer;
}

.cv3-item-action-sheet__actions[b-p3n6hmtwz2] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cv3-item-action-sheet__action[b-p3n6hmtwz2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 48px;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--canvas, #f7f5f0);
    color: var(--ink, #1a1a1a);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-item-action-sheet__action:disabled[b-p3n6hmtwz2] {
    opacity: 0.55;
    cursor: not-allowed;
}

.cv3-item-action-sheet__action:not(:disabled):hover[b-p3n6hmtwz2] {
    background: color-mix(in oklab, #2563eb 8%, white);
    border-color: color-mix(in oklch, #2563eb 35%, var(--line, #ebe6dc));
}

.cv3-item-action-sheet__action--danger[b-p3n6hmtwz2] {
    color: #b91c1c;
}

.cv3-item-action-sheet__badge[b-p3n6hmtwz2] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}
/* /Components/CashierV3/Session/RoundCard.razor.rz.scp.css */
.cv3-round-card[b-2404xviv0c] {
    --round-accent: var(--ink-mute, #7a756c);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line, #ebe6dc);
    border-left: 4px solid var(--round-accent);
    border-radius: 10px;
    background: var(--panel, #fff);
}

.cv3-round-card__top[b-2404xviv0c],
.cv3-round-card__bottom[b-2404xviv0c] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-round-card__number[b-2404xviv0c] {
    font-weight: 700;
    font-size: 0.95rem;
}

.cv3-round-card__status[b-2404xviv0c] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--round-accent);
}

.cv3-round-card__items[b-2404xviv0c] {
    font-size: 0.8125rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-round-card__line[b-2404xviv0c] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

.cv3-round-card__line--cancelled[b-2404xviv0c] {
    opacity: 0.55;
}

.cv3-round-card__line--cancelled .cv3-round-card__items[b-2404xviv0c],
.cv3-round-card__line--cancelled .cv3-round-card__subtotal[b-2404xviv0c] {
    text-decoration: line-through;
    color: var(--ink-mute, #7a756c);
}

.cv3-round-card__cancelled-badge[b-2404xviv0c],
.cv3-round-card__kitchen-badge[b-2404xviv0c] {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    border: 1px solid color-mix(in oklch, #7a756c 40%, var(--line, #ebe6dc));
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--ink-mute, #7a756c);
    vertical-align: middle;
}

.cv3-round-card__kitchen-badge[b-2404xviv0c] {
    border-color: color-mix(in oklch, #0f766e 45%, var(--line, #ebe6dc));
    color: #0f766e;
}

.cv3-round-card__subtotal[b-2404xviv0c] {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.cv3-round-card--draft[b-2404xviv0c] { --round-accent: #2563eb; }
.cv3-round-card--confirmed[b-2404xviv0c] { --round-accent: #0f766e; }
.cv3-round-card--kitchen[b-2404xviv0c] { --round-accent: #d97706; }
.cv3-round-card--served[b-2404xviv0c] { --round-accent: #16a34a; }
/* /Components/CashierV3/Session/RoundList.razor.rz.scp.css */
.cv3-round-list[b-7f86jtqm1u] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
}

.cv3-round-list__items[b-7f86jtqm1u] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding-right: 0.15rem;
}

.cv3-round-list__empty[b-7f86jtqm1u] {
    padding: 1rem;
    border: 1px dashed var(--line, #ebe6dc);
    border-radius: 10px;
    color: var(--ink-mute, #7a756c);
    font-size: 0.875rem;
    text-align: center;
}
/* /Components/CashierV3/Session/SessionActionBar.razor.rz.scp.css */
.cv3-session-action-bar[b-9s2pxe1sya] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border: 0;
    border-top: 1px solid var(--line, #ebe6dc);
    border-radius: 0;
    background: transparent;
    flex: 0 0 auto;
}

.cv3-session-action-bar__btn[b-9s2pxe1sya] {
    min-height: 44px;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--canvas, #f7f5f0);
    color: var(--ink-mute, #7a756c);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.72;
    touch-action: manipulation;
}

.cv3-session-action-bar__btn--enabled[b-9s2pxe1sya] {
    cursor: pointer;
    opacity: 1;
    color: var(--ink, #1a1a1a);
    background: var(--panel, #fff);
}

.cv3-session-action-bar__btn--enabled:hover[b-9s2pxe1sya] {
    background: color-mix(in oklab, #2563eb 8%, white);
    border-color: color-mix(in oklch, #2563eb 35%, var(--line, #ebe6dc));
    color: #1d4ed8;
}

.cv3-session-action-bar__btn--enabled:focus-visible[b-9s2pxe1sya] {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.cv3-session-action-bar__btn--primary[b-9s2pxe1sya] {
    background: color-mix(in oklch, #2563eb 12%, white);
    border-color: color-mix(in oklch, #2563eb 35%, var(--line, #ebe6dc));
    color: #1d4ed8;
}

@media (max-width: 767px) {
    .cv3-session-action-bar[b-9s2pxe1sya] {
        grid-template-columns: 1fr;
    }
}
/* /Components/CashierV3/Session/SessionHeader.razor.rz.scp.css */
.cv3-session-header[b-7m3xyz3rx3] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--line, #ebe6dc);
    border-radius: 0;
    background: transparent;
}

.cv3-session-header--empty[b-7m3xyz3rx3] {
    color: var(--ink-mute, #7a756c);
}

.cv3-session-header__empty-title[b-7m3xyz3rx3] {
    font-weight: 600;
    color: var(--ink, #1a1a1a);
}

.cv3-session-header__empty-meta[b-7m3xyz3rx3] {
    font-size: 0.8125rem;
}

.cv3-session-header__primary[b-7m3xyz3rx3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-session-header__table[b-7m3xyz3rx3] {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.cv3-session-header__status[b-7m3xyz3rx3] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: color-mix(in oklch, var(--status-accent, #7a756c) 14%, white);
    color: var(--status-accent, #7a756c);
}

.cv3-session-header__status--ordering[b-7m3xyz3rx3] { --status-accent: #2563eb; }
.cv3-session-header__status--preparing[b-7m3xyz3rx3] { --status-accent: #d97706; }
.cv3-session-header__status--ready[b-7m3xyz3rx3] { --status-accent: #16a34a; }
.cv3-session-header__status--payment[b-7m3xyz3rx3] { --status-accent: #7c3aed; }

.cv3-session-header__meta[b-7m3xyz3rx3] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: var(--ink-mute, #7a756c);
}
/* /Components/CashierV3/Session/SessionPaymentDialog.razor.rz.scp.css */
.cv3-payment-dialog[b-ucxdq4ct5k] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(100vw - 1.5rem, 32rem);
    max-height: min(90vh, 40rem);
    padding: 1rem 1.1rem 1.15rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 14px;
    background: var(--panel, #fff);
    box-shadow: 0 12px 36px color-mix(in oklab, #000 14%, transparent);
    overflow: hidden;
}

.cv3-payment-dialog__header[b-ucxdq4ct5k] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-payment-dialog__title[b-ucxdq4ct5k] {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink, #1a1a1a);
}

.cv3-payment-dialog__close[b-ucxdq4ct5k] {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ink-mute, #7a756c);
    cursor: pointer;
}

.cv3-payment-dialog__body[b-ucxdq4ct5k] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow: auto;
    min-height: 0;
}

.cv3-payment-dialog__summary[b-ucxdq4ct5k] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--canvas, #f7f5f0);
}

.cv3-payment-dialog__row[b-ucxdq4ct5k] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.cv3-payment-dialog__row--total[b-ucxdq4ct5k] {
    margin-top: 0.25rem;
    padding-top: 0.45rem;
    border-top: 1px solid var(--line, #ebe6dc);
    font-size: 1.1rem;
}

.cv3-payment-dialog__label[b-ucxdq4ct5k] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}

.cv3-payment-dialog__methods[b-ucxdq4ct5k] {
    margin: 0;
    padding: 0;
    border: 0;
}

.cv3-payment-dialog__legend[b-ucxdq4ct5k] {
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.cv3-payment-dialog__method-grid[b-ucxdq4ct5k] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.cv3-payment-dialog__method[b-ucxdq4ct5k] {
    min-height: 48px;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--panel, #fff);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-payment-dialog__method--selected[b-ucxdq4ct5k] {
    border-color: color-mix(in oklch, #2563eb 45%, var(--line, #ebe6dc));
    background: color-mix(in oklab, #2563eb 8%, white);
    color: #1d4ed8;
}

.cv3-payment-dialog__cash[b-ucxdq4ct5k],
.cv3-payment-dialog__qr[b-ucxdq4ct5k],
.cv3-payment-dialog__card[b-ucxdq4ct5k] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.cv3-payment-dialog__cash-label[b-ucxdq4ct5k] {
    font-size: 0.8rem;
    font-weight: 700;
}

.cv3-payment-dialog__cash-input[b-ucxdq4ct5k] {
    min-height: 48px;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
}

.cv3-payment-dialog__cash-quick[b-ucxdq4ct5k] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
}

.cv3-payment-dialog__quick[b-ucxdq4ct5k] {
    min-height: 40px;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.cv3-payment-dialog__change-ok[b-ucxdq4ct5k] { color: #15803d; }
.cv3-payment-dialog__change-bad[b-ucxdq4ct5k] { color: #b91c1c; }

.cv3-payment-dialog__hint[b-ucxdq4ct5k] {
    margin: 0;
    font-size: 0.85rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-payment-dialog__check[b-ucxdq4ct5k] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    cursor: pointer;
}

.cv3-payment-dialog__check input[b-ucxdq4ct5k] {
    width: 1.15rem;
    height: 1.15rem;
    accent-color: #2563eb;
}

.cv3-payment-dialog__error[b-ucxdq4ct5k] {
    margin: 0;
    color: #b91c1c;
    font-size: 0.875rem;
}

.cv3-payment-dialog__footer[b-ucxdq4ct5k] {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0.55rem;
}

.cv3-payment-dialog__cancel[b-ucxdq4ct5k],
.cv3-payment-dialog__submit[b-ucxdq4ct5k] {
    min-height: 48px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-payment-dialog__cancel[b-ucxdq4ct5k] {
    border: 1px solid var(--line, #ebe6dc);
    background: var(--canvas, #f7f5f0);
    color: var(--ink, #1a1a1a);
}

.cv3-payment-dialog__submit[b-ucxdq4ct5k] {
    border: 0;
    background: #2563eb;
    color: #fff;
}

.cv3-payment-dialog__submit:disabled[b-ucxdq4ct5k],
.cv3-payment-dialog__cancel:disabled[b-ucxdq4ct5k],
.cv3-payment-dialog__method:disabled[b-ucxdq4ct5k],
.cv3-payment-dialog__quick:disabled[b-ucxdq4ct5k] {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .cv3-payment-dialog[b-ucxdq4ct5k] {
        width: 100%;
        border-radius: 16px 16px 12px 12px;
    }

    .cv3-payment-dialog__method-grid[b-ucxdq4ct5k] {
        grid-template-columns: 1fr;
    }

    .cv3-payment-dialog__footer[b-ucxdq4ct5k] {
        grid-template-columns: 1fr;
    }
}
/* /Components/CashierV3/Session/SessionReceiptDialog.razor.rz.scp.css */
.cv3-receipt-dialog[b-yrrzpdsmeb] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: min(100vw - 1.5rem, 28rem);
    max-height: min(90vh, 42rem);
    padding: 1rem 1.1rem 1.15rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 14px;
    background: var(--panel, #fff);
    box-shadow: 0 12px 36px color-mix(in oklab, #000 14%, transparent);
    overflow: hidden;
}

.cv3-receipt-dialog__header[b-yrrzpdsmeb] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cv3-receipt-dialog__title[b-yrrzpdsmeb] {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.cv3-receipt-dialog__close[b-yrrzpdsmeb] {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font-size: 1.4rem;
    color: var(--ink-mute, #7a756c);
    cursor: pointer;
}

.cv3-receipt-dialog__body[b-yrrzpdsmeb] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: auto;
    min-height: 0;
}

.cv3-receipt-dialog__shop[b-yrrzpdsmeb] {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.cv3-receipt-dialog__meta[b-yrrzpdsmeb],
.cv3-receipt-dialog__totals[b-yrrzpdsmeb] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--canvas, #f7f5f0);
}

.cv3-receipt-dialog__row[b-yrrzpdsmeb] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.cv3-receipt-dialog__row--total[b-yrrzpdsmeb] {
    font-size: 1.05rem;
    padding-bottom: 0.25rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid var(--line, #ebe6dc);
}

.cv3-receipt-dialog__lines[b-yrrzpdsmeb] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cv3-receipt-dialog__line[b-yrrzpdsmeb] {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 0.45fr 0.7fr 0.7fr;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}

.cv3-receipt-dialog__line--head[b-yrrzpdsmeb] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
    border-bottom: 1px solid var(--line, #ebe6dc);
    padding-bottom: 0.3rem;
}

.cv3-receipt-dialog__item[b-yrrzpdsmeb] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.cv3-receipt-dialog__notes[b-yrrzpdsmeb] {
    font-size: 0.75rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-receipt-dialog__thanks[b-yrrzpdsmeb] {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--ink-mute, #7a756c);
}

.cv3-receipt-dialog__error[b-yrrzpdsmeb] {
    margin: 0;
    color: #b91c1c;
}

.cv3-receipt-dialog__footer[b-yrrzpdsmeb] {
    display: flex;
}

.cv3-receipt-dialog__done[b-yrrzpdsmeb] {
    flex: 1;
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
}

@media (max-width: 767px) {
    .cv3-receipt-dialog[b-yrrzpdsmeb] {
        width: 100%;
        border-radius: 16px 16px 12px 12px;
    }
}
/* /Components/CashierV3/Session/SessionSummary.razor.rz.scp.css */
.cv3-session-summary[b-2shkwi736m] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--line, #ebe6dc);
    border-radius: 0;
    background: transparent;
}

.cv3-session-summary--empty[b-2shkwi736m] {
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    color: var(--ink-mute, #7a756c);
}

.cv3-session-summary__metric[b-2shkwi736m] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
}

.cv3-session-summary__label[b-2shkwi736m] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-mute, #7a756c);
}

.cv3-session-summary__value[b-2shkwi736m] {
    font-size: 1.05rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
/* /Components/CashierV3/Session/SessionWorkspace.razor.rz.scp.css */
.cv3-session-workspace[b-y74avdamr6] {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 12px;
    background: var(--panel, #fff);
}

.cv3-session-workspace[b-y74avdamr6] >  .cv3-session-header,
.cv3-session-workspace[b-y74avdamr6] >  .cv3-session-summary,
.cv3-session-workspace[b-y74avdamr6] >  .cv3-session-action-bar {
    flex: 0 0 auto;
}

.cv3-session-workspace__rounds[b-y74avdamr6] {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0.75rem 1rem;
}
/* /Components/CashierV3/Session/SwipeItem.razor.rz.scp.css */
.cv3-swipe-item[b-h5wxaizw6z] {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.cv3-swipe-item__hint[b-h5wxaizw6z] {
    position: absolute;
    inset-block: 0;
    display: flex;
    align-items: center;
    padding: 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    pointer-events: none;
}

.cv3-swipe-item__hint--left[b-h5wxaizw6z] {
    inset-inline-end: 0;
    background: color-mix(in oklch, #2563eb 85%, black);
}

.cv3-swipe-item__hint--right[b-h5wxaizw6z] {
    inset-inline-start: 0;
    background: color-mix(in oklch, #0f766e 85%, black);
}

.cv3-swipe-item__content[b-h5wxaizw6z] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem 0.15rem;
    background: var(--panel, #fff);
    transition: transform 120ms ease-out;
    cursor: pointer;
}

.cv3-swipe-item--dragging .cv3-swipe-item__content[b-h5wxaizw6z] {
    transition: none;
}
/* /Components/CashierV3/Timeline/ServiceTimeline.razor.rz.scp.css */
/* Service Timeline — horizontal scroll, tablet-first. */

.cv3-service-timeline[b-n5irgq5cod] {
    display: flex;
    flex: 1;
    min-width: 0;
    min-height: 0;
    height: 100%;
    align-items: stretch;
}

.cv3-service-timeline__track[b-n5irgq5cod] {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    padding: 0.15rem 0.1rem 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: thin;
}

.cv3-service-timeline__track[b-n5irgq5cod]::-webkit-scrollbar {
    height: 6px;
}

.cv3-service-timeline__track[b-n5irgq5cod]::-webkit-scrollbar-thumb {
    background: color-mix(in oklch, var(--ink-mute, #7a756c) 45%, transparent);
    border-radius: 999px;
}

.cv3-service-timeline__item[b-n5irgq5cod] {
    flex: 0 0 auto;
}

.cv3-service-timeline__empty[b-n5irgq5cod] {
    display: flex;
    align-items: center;
    min-height: 4.5rem;
    padding: 0 0.75rem;
    color: var(--ink-mute, #7a756c);
    font-size: 0.875rem;
}
/* /Components/CashierV3/Timeline/SessionChip.razor.rz.scp.css */
/* Session chip — tablet-first touch target (min 44px). */

.cv3-session-chip-wrap[b-g300o77zq4] {
    position: relative;
    flex: 0 0 auto;
}

.cv3-session-chip__cancel[b-g300o77zq4] {
    position: absolute;
    top: 0.15rem;
    right: 0.15rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: color-mix(in oklch, var(--panel, #fff) 80%, transparent);
    color: var(--ink-mute, #7a756c);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-session-chip__cancel:hover:not(:disabled)[b-g300o77zq4] {
    background: color-mix(in oklch, #b91c1c 14%, var(--panel, #fff));
    color: #b91c1c;
}

.cv3-session-chip__cancel:disabled[b-g300o77zq4] {
    opacity: 0.4;
    cursor: not-allowed;
}

.cv3-session-chip[b-g300o77zq4] {
    --chip-accent: var(--ink-mute, #7a756c);
    --chip-bg: var(--panel, #fff);
    --chip-border: var(--line, #ebe6dc);
    --chip-ink: var(--ink, #1a1a1a);
    --chip-mute: var(--ink-mute, #7a756c);

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    min-width: 9.5rem;
    max-width: 11.5rem;
    min-height: 4.5rem;
    padding: 0.55rem 1.75rem 0.55rem 0.9rem;
    margin: 0;
    border: 2px solid var(--chip-border);
    border-radius: 10px;
    background: var(--chip-bg);
    color: var(--chip-ink);
    text-align: left;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cv3-session-chip:focus-visible[b-g300o77zq4] {
    outline: 2px solid var(--chip-accent);
    outline-offset: 2px;
}

.cv3-session-chip:active:not(:disabled)[b-g300o77zq4] {
    transform: scale(0.98);
}

.cv3-session-chip:disabled[b-g300o77zq4] {
    opacity: 0.55;
    cursor: not-allowed;
}

.cv3-session-chip__accent[b-g300o77zq4] {
    position: absolute;
    left: 0;
    top: 0.45rem;
    bottom: 0.45rem;
    width: 4px;
    border-radius: 0 3px 3px 0;
    background: var(--chip-accent);
}

.cv3-session-chip__row[b-g300o77zq4] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.cv3-session-chip__row--meta[b-g300o77zq4] {
    font-size: 0.75rem;
    color: var(--chip-mute);
}

.cv3-session-chip__table[b-g300o77zq4] {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.cv3-session-chip__status[b-g300o77zq4] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--chip-accent);
}

.cv3-session-chip__guests[b-g300o77zq4],
.cv3-session-chip__elapsed[b-g300o77zq4] {
    white-space: nowrap;
}

.cv3-session-chip__amount[b-g300o77zq4] {
    font-size: 0.875rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* Status colors */
.cv3-session-chip--ordering[b-g300o77zq4] {
    --chip-accent: #2563eb;
}

.cv3-session-chip--preparing[b-g300o77zq4] {
    --chip-accent: #d97706;
}

.cv3-session-chip--ready[b-g300o77zq4] {
    --chip-accent: #16a34a;
}

.cv3-session-chip--payment[b-g300o77zq4] {
    --chip-accent: #7c3aed;
}

.cv3-session-chip--selected[b-g300o77zq4] {
    border-color: var(--chip-accent);
    box-shadow: 0 0 0 1px var(--chip-accent), 0 4px 12px color-mix(in oklch, var(--chip-accent) 22%, transparent);
    background: color-mix(in oklch, var(--chip-accent) 8%, var(--chip-bg));
}
/* /Components/CashierV3/Workspace/CashierWorkspaceV3.razor.rz.scp.css */
/* Cashier V3 workspace — fills page; delegates scroll to zones C/D/E. */

.cv3-workspace[b-3rpnxxrjgn] {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
}

.cv3-workspace[b-3rpnxxrjgn]  .cv3-layout {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

/* UI.2 verification trigger — does not alter workspace workflows. */
.cv3-dialog-verify[b-3rpnxxrjgn] {
    position: absolute;
    top: 0.45rem;
    right: 0.55rem;
    z-index: 5;
    min-height: 2rem;
    padding: 0.25rem 0.65rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 8px;
    background: var(--panel, #fff);
    color: var(--ink-mute, #7a756c);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: manipulation;
}

.cv3-dialog-verify:hover[b-3rpnxxrjgn] {
    color: var(--ink, #1a1a1a);
    background: var(--canvas, #f7f5f0);
}

.cv3-dialog-verify:focus-visible[b-3rpnxxrjgn] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.cv3-zone-a-header[b-3rpnxxrjgn] {
    flex: 1;
    border-style: solid;
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.35rem 0.75rem;
    min-height: 0;
}
/* /Layout/ApplicationBar.razor.rz.scp.css */
/* Application Bar — full-width top navigation (replaces left rail).
   ::deep required for NavLink-rendered anchors (Blazor CSS isolation). */

.pos-appbar[b-a1viq93dbr] {
    --appbar-height: 56px;
    --appbar-bg: #ffffff;
    --appbar-border: #e6e8ee;
    --appbar-ink: #1e202b;
    --appbar-mute: #6b7080;
    --appbar-accent: #3b82f6;
    --appbar-live: #22c55e;

    flex: 0 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.25rem;
    min-height: var(--appbar-height);
    height: var(--appbar-height);
    padding: 0 1.25rem;
    background: var(--appbar-bg);
    border-bottom: 1px solid var(--appbar-border);
    z-index: 50;
}

.pos-appbar__brand[b-a1viq93dbr] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    color: var(--appbar-ink);
}

.pos-appbar__brand-mark[b-a1viq93dbr] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    background: #1a1e2b;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.pos-appbar__brand-name[b-a1viq93dbr] {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.pos-appbar__nav[b-a1viq93dbr] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pos-appbar__nav[b-a1viq93dbr]::-webkit-scrollbar {
    display: none;
}

.pos-appbar[b-a1viq93dbr]  .pos-appbar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    color: var(--appbar-mute);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease, color 0.15s ease;
}

.pos-appbar[b-a1viq93dbr]  .pos-appbar__link:hover {
    color: var(--appbar-ink);
    background: #f0f1f5;
}

.pos-appbar[b-a1viq93dbr]  .pos-appbar__link:focus-visible {
    outline: 2px solid var(--appbar-accent);
    outline-offset: 2px;
}

.pos-appbar[b-a1viq93dbr]  .pos-appbar__link.active {
    color: var(--appbar-accent);
    background: color-mix(in oklab, var(--appbar-accent) 12%, transparent);
}

.pos-appbar__status[b-a1viq93dbr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    color: var(--appbar-mute);
    font-size: 0.8125rem;
    font-weight: 600;
}

.pos-appbar__online[b-a1viq93dbr] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.pos-appbar__online .pos-live-dot[b-a1viq93dbr],
.pos-appbar .pos-live-dot[b-a1viq93dbr] {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--appbar-live);
    animation: pos-appbar-pulse-b-a1viq93dbr 2s ease-in-out infinite;
}

@keyframes pos-appbar-pulse-b-a1viq93dbr {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.pos-appbar__profile[b-a1viq93dbr] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: #e8eaff;
    color: var(--appbar-accent);
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    touch-action: manipulation;
}

.pos-appbar__profile:hover[b-a1viq93dbr] {
    background: #d0d5ff;
}

.pos-appbar__profile:focus-visible[b-a1viq93dbr] {
    outline: 2px solid var(--appbar-accent);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .pos-appbar[b-a1viq93dbr] {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.5rem 0.75rem;
        padding: 0 0.75rem;
    }

    .pos-appbar__brand-name[b-a1viq93dbr] {
        font-size: 0.9rem;
    }

    .pos-appbar[b-a1viq93dbr]  .pos-appbar__link {
        padding: 0.35rem 0.65rem;
        font-size: 0.875rem;
        min-height: 2.35rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   MainLayout — POS Application Shell
   Hierarchy: #app → .pos-shell → ApplicationBar → .pos-content → page
   No left sidebar. Full horizontal workspace.
   ═══════════════════════════════════════════ */

.pos-shell[b-iat2cmhxa4] {
    --pos-appbar-height: 56px;
    --pos-bg: #f5f6fa;
    --pos-surface: #ffffff;
    --pos-topbar-border: #e6e8ee;
    --pos-text-primary: #1e202b;
    --pos-text-secondary: #6b7080;
    --pos-accent: #3b82f6;
    --pos-live-color: #22c55e;
    --pos-content-pad: 16px;

    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    background: var(--pos-bg);
    color: var(--pos-text-primary);
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ── Content — remaining viewport under Application Bar ──
   Never scrolls as a document. Page children opt into scroll or app-fill
   via global rules in design-system.css (.pos-content > * / .app-fill). */
.pos-content[b-iat2cmhxa4] {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: var(--pos-content-pad);
    background: var(--pos-bg);
    overflow: hidden;
}

@media (max-width: 767px) {
    .pos-shell[b-iat2cmhxa4] {
        --pos-content-pad: 12px;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-43n1zc4dpc] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-43n1zc4dpc] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-43n1zc4dpc] {
    font-size: 1.1rem;
}

.bi[b-43n1zc4dpc] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-43n1zc4dpc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-43n1zc4dpc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-43n1zc4dpc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-43n1zc4dpc] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-43n1zc4dpc] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-43n1zc4dpc] {
        padding-bottom: 1rem;
    }

    .nav-item[b-43n1zc4dpc]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-43n1zc4dpc]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-43n1zc4dpc]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-43n1zc4dpc] {
        display: none;
    }

    .collapse[b-43n1zc4dpc] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-43n1zc4dpc] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Cashier/CashierPage.razor.rz.scp.css */
.cashier-page[b-w12gj652ah] {
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* /Pages/Cashier/CashierPageV2.razor.rz.scp.css */
.cashier-page-v2[b-9jcggchz94] {
    height: 100vh;
    min-height: 0;
    background: var(--canvas);
}
/* /Pages/Cashier/CashierPageV3.razor.rz.scp.css */
/* Cashier V3 page — app-fill child of .pos-content.
   Hierarchy: pos-content → .cashier-page-v3.app-fill → .cv3-workspace → .cv3-layout */

.cashier-page-v3.app-fill[b-aijvlzao0h] {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.cashier-page-v3[b-aijvlzao0h] >  .cv3-workspace {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}
/* /Pages/Kitchen/KitchenPage.razor.rz.scp.css */
/* Kitchen V3 page — app-fill child of .pos-content. */

.kitchen-page-v3.app-fill[b-bz8i940lyy] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.kitchen-page-v3.app-fill[b-bz8i940lyy] >  .kv3-shell {
    flex: 1;
    min-height: 0;
}
/* /Presentation/AddonDialog.razor.rz.scp.css */
.jlek-addon-dialog[b-u2rssmoqo3] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
    overflow: auto;
    padding: 0.25rem 0.15rem 0.5rem;
}

.jlek-addon-dialog__base[b-u2rssmoqo3] {
    margin: 0;
    color: var(--ink-mute, #7a756c);
    font-size: 0.9rem;
}

.jlek-addon-dialog__group[b-u2rssmoqo3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jlek-addon-dialog__group-head[b-u2rssmoqo3] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.jlek-addon-dialog__rule[b-u2rssmoqo3] {
    color: var(--ink-mute, #7a756c);
    font-size: 0.8rem;
}

.jlek-addon-dialog__options[b-u2rssmoqo3] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.jlek-addon-dialog__chip[b-u2rssmoqo3] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--canvas, #f7f5f0);
    color: var(--ink, #1a1a1a);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    touch-action: manipulation;
}

.jlek-addon-dialog__chip--selected[b-u2rssmoqo3] {
    border-color: color-mix(in oklch, #2563eb 45%, var(--line, #ebe6dc));
    background: color-mix(in oklab, #2563eb 10%, white);
    color: #1d4ed8;
}

.jlek-addon-dialog__adj[b-u2rssmoqo3] {
    color: var(--ink-mute, #7a756c);
    font-weight: 500;
    font-size: 0.8rem;
}

.jlek-addon-dialog__error[b-u2rssmoqo3] {
    margin: 0;
    color: #b91c1c;
    font-size: 0.8rem;
}

.jlek-addon-dialog__qty[b-u2rssmoqo3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.jlek-addon-dialog__qty-controls[b-u2rssmoqo3] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.jlek-addon-dialog__notes[b-u2rssmoqo3] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.875rem;
}

.jlek-addon-dialog__notes textarea[b-u2rssmoqo3] {
    width: 100%;
    min-height: 4rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    resize: vertical;
    font: inherit;
}

.jlek-addon-dialog__subtotal[b-u2rssmoqo3] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 0.35rem;
    border-top: 1px solid var(--line, #ebe6dc);
    font-size: 1rem;
}
/* /Presentation/BaseDialog.razor.rz.scp.css */
.jlek-base-dialog[b-bden8nbjjk] {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: inherit;
    overflow: hidden;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 14px;
    background: var(--panel, #fff);
    color: var(--ink, #1a1a1a);
    box-shadow: 0 18px 48px color-mix(in oklab, #0f1218 22%, transparent);
}

.jlek-base-dialog__header[b-bden8nbjjk] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.75rem;
    flex: 0 0 auto;
}

.jlek-base-dialog__title[b-bden8nbjjk] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.jlek-base-dialog__close[b-bden8nbjjk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: -0.25rem -0.25rem 0 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--ink-mute, #7a756c);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
}

.jlek-base-dialog__close:hover[b-bden8nbjjk] {
    background: var(--canvas, #f7f5f0);
    color: var(--ink, #1a1a1a);
}

.jlek-base-dialog__close:focus-visible[b-bden8nbjjk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.jlek-base-dialog__body[b-bden8nbjjk] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 0 1rem 1rem;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--ink-soft, #3f3a34);
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.jlek-base-dialog__footer[b-bden8nbjjk] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 0.85rem 1rem 1rem;
    border-top: 1px solid var(--line, #ebe6dc);
    background: color-mix(in oklch, var(--panel, #fff) 92%, var(--canvas, #f7f5f0));
    flex: 0 0 auto;
}

.jlek-base-dialog__footer[b-bden8nbjjk]  .jlek-dialog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 6.5rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--line, #ebe6dc);
    background: var(--panel, #fff);
    color: var(--ink, #1a1a1a);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
}

.jlek-base-dialog__footer[b-bden8nbjjk]  .jlek-dialog-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.jlek-base-dialog__footer[b-bden8nbjjk]  .jlek-dialog-btn--primary {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.jlek-base-dialog__footer[b-bden8nbjjk]  .jlek-dialog-btn--primary:hover {
    background: #1d4ed8;
}

.jlek-base-dialog__footer[b-bden8nbjjk]  .jlek-dialog-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.jlek-base-dialog__footer[b-bden8nbjjk]  .jlek-dialog-btn--ghost:hover {
    background: var(--canvas, #f7f5f0);
}
/* /Presentation/CategoryTabs.razor.rz.scp.css */
.jlek-category-tabs[b-178uxtoxzx] {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    padding: 0.1rem 0.05rem 0.25rem;
}

.jlek-category-tabs__tab[b-178uxtoxzx] {
    flex: 0 0 auto;
    min-height: 2.5rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 999px;
    background: var(--panel, #fff);
    color: var(--ink-mute, #7a756c);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
}

.jlek-category-tabs__tab:hover[b-178uxtoxzx] {
    color: var(--ink, #1a1a1a);
    background: var(--canvas, #f7f5f0);
}

.jlek-category-tabs__tab--active[b-178uxtoxzx] {
    border-color: #2563eb;
    background: color-mix(in oklab, #2563eb 12%, white);
    color: #1d4ed8;
}

.jlek-category-tabs__tab:focus-visible[b-178uxtoxzx] {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}
/* /Presentation/DialogHost.razor.rz.scp.css */
/* Dialog Host — full-viewport overlay (Zone F). Closed = renders nothing. */

.jlek-dialog-host[b-wp430qgu34] {
    --dialog-z: 1200;
    --dialog-backdrop: color-mix(in oklab, #0f1218 48%, transparent);
    --dialog-ease: cubic-bezier(0.22, 1, 0.36, 1);

    position: fixed;
    inset: 0;
    z-index: var(--dialog-z);
    display: grid;
    place-items: center;
    padding: 1rem;
    outline: none;
    animation: jlek-dialog-host-fade-in-b-wp430qgu34 180ms var(--dialog-ease) both;
}

.jlek-dialog-host--closing[b-wp430qgu34] {
    animation: jlek-dialog-host-fade-out-b-wp430qgu34 180ms var(--dialog-ease) both;
    pointer-events: none;
}

.jlek-dialog-host__backdrop[b-wp430qgu34] {
    position: absolute;
    inset: 0;
    background: var(--dialog-backdrop);
    cursor: pointer;
}

.jlek-dialog-host__stage[b-wp430qgu34] {
    position: relative;
    z-index: 1;
    width: min(100%, 28rem);
    max-height: min(90dvh, 40rem);
    display: flex;
    flex-direction: column;
    animation: jlek-dialog-stage-in-b-wp430qgu34 200ms var(--dialog-ease) both;
}

.jlek-dialog-host__stage--wide[b-wp430qgu34] {
    width: min(100%, 52rem);
    max-height: min(92dvh, 48rem);
}

.jlek-dialog-host__stage--sheet[b-wp430qgu34] {
    width: min(100%, 28rem);
    max-height: none;
    align-self: end;
    margin-bottom: 0.5rem;
}

.jlek-dialog-host--closing .jlek-dialog-host__stage[b-wp430qgu34] {
    animation: jlek-dialog-stage-out-b-wp430qgu34 160ms var(--dialog-ease) both;
}

@keyframes jlek-dialog-host-fade-in-b-wp430qgu34 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes jlek-dialog-host-fade-out-b-wp430qgu34 {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes jlek-dialog-stage-in-b-wp430qgu34 {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(0.5rem);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes jlek-dialog-stage-out-b-wp430qgu34 {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.96) translateY(0.35rem);
    }
}

@media (max-width: 767px) {
    .jlek-dialog-host[b-wp430qgu34] {
        padding: 0.75rem;
        align-items: end;
    }

    .jlek-dialog-host__stage[b-wp430qgu34] {
        width: 100%;
        max-height: min(88dvh, 36rem);
    }
}
/* /Presentation/MenuDialog.razor.rz.scp.css */
.jlek-menu-dialog[b-17vg2dykcz] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
    height: min(58dvh, 28rem);
}

.jlek-menu-dialog__controls[b-17vg2dykcz] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 0 0 auto;
}

.jlek-menu-dialog__grid[b-17vg2dykcz] {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
    gap: 0.65rem;
    align-content: start;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0.15rem 0.1rem 0.35rem;
}

.jlek-menu-dialog__cell[b-17vg2dykcz] {
    min-width: 0;
}

.jlek-menu-dialog__empty[b-17vg2dykcz] {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1.25rem 0.75rem;
    text-align: center;
    color: var(--ink-mute, #7a756c);
    font-size: 0.9375rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .jlek-menu-dialog[b-17vg2dykcz] {
        height: min(62dvh, 32rem);
    }

    .jlek-menu-dialog__grid[b-17vg2dykcz] {
        grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
        gap: 0.75rem;
    }
}
/* /Presentation/ProductCard.razor.rz.scp.css */
.jlek-product-card-wrap[b-ffn6o13zpt] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.jlek-product-card__customize[b-ffn6o13zpt] {
    margin: 0;
    padding: 0.45rem 0.55rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
    color: var(--ink, #1a1a1a);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: manipulation;
}

.jlek-product-card__customize:disabled[b-ffn6o13zpt] {
    opacity: 0.55;
    cursor: not-allowed;
}

.jlek-product-card[b-ffn6o13zpt] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
    min-height: 9.5rem;
    padding: 0.7rem;
    margin: 0;
    border: 2px solid var(--line, #ebe6dc);
    border-radius: 12px;
    background: var(--panel, #fff);
    color: var(--ink, #1a1a1a);
    text-align: left;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.jlek-product-card__badge[b-ffn6o13zpt] {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    z-index: 1;
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    background: #b91c1c;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.jlek-product-card:focus-visible[b-ffn6o13zpt] {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.jlek-product-card:active:not(:disabled)[b-ffn6o13zpt] {
    transform: scale(0.98);
}

.jlek-product-card__media[b-ffn6o13zpt] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    border-radius: 8px;
    background: var(--canvas, #f7f5f0);
}

.jlek-product-card__placeholder[b-ffn6o13zpt] {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink-mute, #7a756c);
}

.jlek-product-card__body[b-ffn6o13zpt] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.jlek-product-card__name[b-ffn6o13zpt] {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.jlek-product-card__price[b-ffn6o13zpt] {
    font-size: 0.95rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--ink, #1a1a1a);
}

.jlek-product-card__status[b-ffn6o13zpt] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #15803d;
}

.jlek-product-card--sold-out[b-ffn6o13zpt] {
    opacity: 0.55;
    cursor: not-allowed;
}

.jlek-product-card--sold-out .jlek-product-card__status[b-ffn6o13zpt] {
    color: #b91c1c;
}

.jlek-product-card--selected[b-ffn6o13zpt] {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb, 0 6px 16px color-mix(in oklab, #2563eb 18%, transparent);
    background: color-mix(in oklab, #2563eb 6%, white);
}
/* /Presentation/SearchBar.razor.rz.scp.css */
.jlek-menu-search[b-9729dtkm4g] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.jlek-menu-search__label[b-9729dtkm4g] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.jlek-menu-search__input[b-9729dtkm4g] {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--line, #ebe6dc);
    border-radius: 10px;
    background: var(--canvas, #f7f5f0);
    color: var(--ink, #1a1a1a);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}

.jlek-menu-search__input:focus[b-9729dtkm4g] {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px color-mix(in oklab, #2563eb 22%, transparent);
}

.jlek-menu-search__input[b-9729dtkm4g]::placeholder {
    color: var(--ink-mute, #7a756c);
    font-weight: 500;
}
/* /Presentation/TestDialog.razor.rz.scp.css */
.jlek-test-dialog__text[b-rqrwkoupix] {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}
