@import url("/assets/css/app-core.css");

    .menu-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px;
      margin: 12px 0;
      box-shadow: none;
    }
    .menu-category-accordion {
      border-top: 1px solid rgba(0, 0, 0, 0.04);
      padding-top: 6px;
    }
    .menu-category-toggle {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 4px 0 10px;
    }
    .menu-category-toggle::-webkit-details-marker { display: none; }
    .menu-category-toggle::after {
      content: '\25BC';
      font-size: 12px;
      color: #2d8471;
      transform: rotate(0deg);
      transition: transform .2s ease;
    }
    .menu-category-accordion[open] .menu-category-toggle::after {
      transform: rotate(180deg);
    }
    .menu-category-toggle h2 {
      margin: 0;
      font-size: 30px;
      line-height: 1.1;
    }
    .menu-list { list-style: none; margin: 0; padding: 0; }
    .menu-list li { display: flex; flex-direction: column; gap: 8px; border-bottom: 1px dashed var(--border); padding: 12px 0; }
    .menu-list li:last-child { border-bottom: none; }
    .menu-item-content { display: flex; flex-direction: row; gap: 14px; align-items: center; }
    .menu-item-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
    .menu-item-name { font-size: 17px; line-height: 1.2; font-weight: 700; margin: 0; }
    .menu-item-desc { margin: 0; max-width: 66ch; font-size: 13px; line-height: 1.4; }
    .menu-item-image-wrap {
      flex-shrink: 0;
      width: 148px;
      max-width: 148px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #f8f4ee;
      align-self: center;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
    }
    .menu-item-image {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      object-position: center;
    }
    .price {
      font-weight: 700;
      color: var(--brand);
      white-space: nowrap;
      background: color-mix(in srgb, var(--brand) 12%, var(--surface));
      border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--surface));
      border-radius: 999px;
      padding: 6px 12px;
      margin-top: 6px;
      width: fit-content;
      letter-spacing: 0.2px;
    }
    .notice {
      background: color-mix(in srgb, var(--accent) 16%, #ffffff);
      border: 1px solid color-mix(in srgb, var(--accent) 40%, #ffffff);
      padding: 10px 12px;
      border-radius: 10px;
      color: color-mix(in srgb, var(--accent) 62%, #2f1b10);
    }
    .support-thread {
      display: grid;
      gap: 14px;
    }
    .support-thread-message {
      margin: 0;
      padding: 16px 18px;
      border-radius: 12px;
      line-height: 1.5;
    }
    .support-thread-message strong {
      display: inline-block;
      margin-bottom: 4px;
    }
    .support-thread-message p {
      margin-top: 10px;
    }
    .support-thread-message.is-support {
      background: color-mix(in srgb, var(--brand) 10%, var(--surface));
      border-color: color-mix(in srgb, var(--brand) 24%, var(--border));
    }
    .support-thread-message.is-customer {
      background: var(--surface);
      border-color: color-mix(in srgb, var(--text) 10%, var(--border));
    }
    .inline-check { display: flex; align-items: center; gap: 8px; margin-top: 22px; }
    .panel-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
    .admin-product-list { display: grid; gap: 12px; }
    .product-row { margin: 0; }
    .code-block { width: 100%; box-sizing: border-box; font-family: Menlo, Monaco, Consolas, monospace; }
    .menu-section {
      display: grid;
      gap: 12px;
      margin: 18px 0;
    }
    .menu-category-sort-list {
      display: grid;
      gap: 14px;
    }
    .menu-sort-status {
      min-height: 18px;
      color: var(--brand);
      font-size: 13px;
      font-weight: 700;
      opacity: 0;
      transform: translateY(-4px);
      transition: opacity 160ms ease, transform 160ms ease;
    }
    .menu-sort-status.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .menu-sort-status.is-error {
      color: #b42318;
    }
    .menu-add-section {
      background: color-mix(in srgb, var(--surface) 94%, var(--brand) 6%);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 20px;
    }
    .menu-add-section h3 {
      margin-top: 0;
      margin-bottom: 16px;
      font-size: 18px;
    }
    .menu-category-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 0;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
    }
    .menu-category-card.is-dragging,
    .menu-product-row.is-dragging,
    .menu-nav-category.is-dragging,
    .menu-nav-product-row.is-dragging {
      opacity: 0.55;
      border-color: var(--brand);
      box-shadow: 0 16px 34px rgba(12, 49, 41, 0.16);
    }
    .menu-category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 16px;
      border-bottom: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 92%, var(--brand) 8%);
    }
    .menu-category-heading {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }
    .menu-category-title {
      margin: 0;
      font-size: 20px;
      overflow-wrap: anywhere;
    }
    .menu-category-meta {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .menu-category-count {
      font-size: 13px;
      color: var(--muted);
    }
    .menu-create-btn {
      justify-self: start;
      align-self: end;
      width: auto;
    }
    .menu-category-form {
      padding: 16px;
      background: color-mix(in srgb, var(--surface) 96%, var(--brand) 4%);
      border-bottom: 1px solid var(--border);
    }
    .menu-category-form h4 {
      margin: 0 0 10px 0;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #685e53;
    }
    .menu-products-section {
      padding: 16px;
    }
    .menu-products-sort-list {
      display: grid;
      gap: 12px;
    }
    .menu-products-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 14px;
    }
    .menu-products-header h4 {
      margin: 0;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #685e53;
    }
    .menu-product-row {
      background: var(--surface-strong);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px;
      transition: all 150ms ease;
    }
    .menu-product-row:hover {
      border-color: var(--brand);
      box-shadow: inset 0 0 0 1px rgba(15, 108, 91, 0.1);
    }
    .menu-product-row:last-child {
      margin-bottom: 0;
    }
    .menu-product-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
    }
    .drag-handle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      border: 1px solid color-mix(in srgb, var(--brand) 34%, var(--border));
      border-radius: 10px;
      background: color-mix(in srgb, var(--surface) 92%, var(--brand) 8%);
      color: var(--brand);
      cursor: grab;
      font-size: 15px;
      font-weight: 900;
      line-height: 1;
      touch-action: none;
    }
    .drag-handle:active {
      cursor: grabbing;
    }
    .drag-handle:hover,
    .drag-handle:focus-visible {
      background: color-mix(in srgb, var(--brand) 14%, var(--surface));
      outline: none;
      box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
    }
    .product-drag-handle {
      width: 30px;
      height: 30px;
      border-radius: 9px;
      font-size: 13px;
    }
    .menu-product-title {
      margin: 0;
      font-size: 16px;
      flex: 1;
    }
    .menu-product-price {
      font-size: 18px;
      font-weight: 900;
      color: var(--brand);
      white-space: nowrap;
    }
    .menu-product-status {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .menu-product-desc {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
      margin-bottom: 12px;
    }
    .menu-product-form {
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px dashed var(--border);
    }
    .menu-product-form .form-field {
      gap: 4px;
    }
    .menu-product-form label {
      font-size: 13px;
      font-weight: 600;
    }
    .menu-product-form input,
    .menu-product-form select,
    .menu-product-form textarea {
      padding: 7px 9px;
      font-size: 13px;
    }
    .menu-product-form select {
      min-height: 36px;
      padding-right: 36px;
    }
    .menu-product-form .app-select-button {
      min-height: 36px;
      padding: 7px 9px;
      font-size: 13px;
    }
    .menu-stats {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      margin-bottom: 18px;
    }
    .menu-stat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px;
      text-align: center;
      box-shadow: var(--shadow);
    }
    .menu-stat-value {
      font-size: 24px;
      font-weight: 700;
      color: #17130f;
      margin: 0 0 4px;
    }
    .menu-stat-label {
      font-size: 12px;
      color: var(--muted);
      margin: 0;
    }
    .menu-nav-section {
      background: color-mix(in srgb, var(--surface) 95%, var(--brand) 5%);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px;
      margin: 16px 0 20px;
      box-shadow: var(--shadow);
    }
    .menu-nav-header {
      margin-bottom: 14px;
    }
    .menu-nav-header h3 {
      margin: 0 0 6px;
      font-size: 16px;
    }
    .menu-nav-header p {
      margin: 0;
      font-size: 13px;
    }
    .menu-nav-tree {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .menu-nav-category {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface-strong);
      transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
    }
    .menu-nav-category-head {
      display: flex;
      align-items: stretch;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
    }
    .menu-nav-toggle {
      flex: 1;
      text-align: left;
      background: transparent;
      border: none;
      padding: 12px 14px;
      cursor: pointer;
      font-weight: 600;
      color: #17130f;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background 120ms ease;
    }
    .menu-nav-toggle:hover {
      background: #f8f4ee;
    }
    .toggle-icon {
      display: inline-block;
      font-size: 12px;
      transition: transform 150ms ease;
    }
    .toggle-text {
      flex: 1;
      font-size: 14px;
    }
    .menu-nav-products {
      display: flex;
      flex-direction: column;
      gap: 0;
      background: var(--surface-strong);
    }
    .menu-nav-product-row {
      display: flex;
      align-items: stretch;
      border-bottom: 1px dashed var(--border);
      transition: background 120ms ease, opacity 160ms ease;
    }
    .menu-nav-product-row:last-child {
      border-bottom: none;
    }
    .menu-nav-product {
      flex: 1;
      padding: 10px 14px 10px 8px;
      background: transparent;
      border: none;
      text-align: left;
      cursor: pointer;
      font-size: 13px;
      color: #2a241c;
      transition: background 120ms ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
    }
    .menu-nav-product:hover {
      background: color-mix(in srgb, var(--brand) 8%, var(--surface));
      color: var(--brand);
    }
    .nav-drag-handle {
      width: 36px;
      min-height: 100%;
      height: auto;
      border-width: 0 1px 0 0;
      border-radius: 0;
      background: color-mix(in srgb, var(--surface) 90%, var(--brand) 10%);
    }
    .nav-product-drag-handle {
      width: 32px;
      font-size: 12px;
      background: transparent;
    }
    .service-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .planning-toolbar {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
    }
    .planning-nav-actions,
    .planning-filter-form {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }
    .planning-nav-actions .btn {
      min-height: 42px;
    }
    .planning-filter-form {
      justify-content: flex-end;
      margin: 0;
    }
    .planning-filter-form .form-field {
      margin: 0;
    }
    .planning-filter-form .form-field > .muted,
    .planning-filter-form .app-date-picker > label {
      color: var(--text);
      font-weight: 800;
    }
    .planning-filter-field {
      width: 170px;
      min-width: 170px;
    }
    .planning-filter-employee {
      width: 270px;
      min-width: 240px;
    }
    .planning-filter-form .app-date-picker {
      width: 190px;
      min-width: 190px;
    }
    .planning-filter-form select,
    .planning-filter-form .app-select-button,
    .planning-filter-form .reservation-calendar-input-row input {
      min-height: 42px;
    }
    .planning-agenda-head {
      margin-bottom: 14px;
      align-items: flex-start;
    }
    .planning-agenda-head h2 {
      margin-bottom: 2px;
    }
    .planning-agenda-head .form-actions {
      margin: 0;
    }
    .employee-agenda {
      --agenda-hour-height: 56px;
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--surface-strong);
    }
    .employee-agenda-header,
    .employee-agenda-body {
      display: grid;
      grid-template-columns: 68px repeat(var(--agenda-days, 7), minmax(128px, 1fr));
      min-width: max(980px, calc(68px + (var(--agenda-days, 7) * 150px)));
    }
    .employee-agenda-corner,
    .employee-agenda-day-head {
      min-height: 58px;
      padding: 10px;
      border-bottom: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 94%, var(--brand) 6%);
    }
    .employee-agenda-day-head {
      display: grid;
      gap: 3px;
      border-left: 1px solid var(--border);
    }
    .employee-agenda-day-head strong {
      font-size: 14px;
    }
    .employee-agenda-day-head span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }
    .employee-agenda-day-head.is-today {
      color: var(--brand);
      background: color-mix(in srgb, var(--brand) 12%, var(--surface));
    }
    .employee-agenda-times,
    .employee-agenda-day {
      position: relative;
      height: calc(var(--agenda-hours) * var(--agenda-hour-height));
      min-height: calc(var(--agenda-hours) * var(--agenda-hour-height));
    }
    .employee-agenda-times {
      background: var(--surface);
      border-right: 1px solid var(--border);
    }
    .employee-agenda-times span {
      position: relative;
      display: block;
      height: var(--agenda-hour-height);
      padding: 4px 8px 0 0;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      text-align: right;
      border-bottom: 1px solid color-mix(in srgb, var(--border) 74%, transparent);
    }
    .employee-agenda-day {
      border-left: 1px solid var(--border);
      background:
        repeating-linear-gradient(to bottom, transparent 0, transparent calc(var(--agenda-hour-height) - 1px), color-mix(in srgb, var(--border) 68%, transparent) calc(var(--agenda-hour-height) - 1px), color-mix(in srgb, var(--border) 68%, transparent) var(--agenda-hour-height)),
        var(--surface);
    }
    .employee-agenda-day.is-today {
      background:
        repeating-linear-gradient(to bottom, transparent 0, transparent calc(var(--agenda-hour-height) - 1px), color-mix(in srgb, var(--border) 68%, transparent) calc(var(--agenda-hour-height) - 1px), color-mix(in srgb, var(--border) 68%, transparent) var(--agenda-hour-height)),
        color-mix(in srgb, var(--brand) 4%, var(--surface));
    }
    .employee-agenda-empty {
      position: absolute;
      top: 12px;
      left: 10px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }
    .planning-month-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(140px, 1fr));
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--surface-strong);
    }
    .planning-month-day {
      min-height: 148px;
      padding: 0;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
    }
    .planning-month-day:nth-child(7n) {
      border-right: 0;
    }
    .planning-month-day.is-outside {
      background: color-mix(in srgb, var(--surface) 78%, var(--bg));
      color: var(--muted);
    }
    .planning-month-day.is-today {
      background: color-mix(in srgb, var(--brand) 6%, var(--surface));
    }
    .planning-month-day-head {
      min-height: 48px;
      border-left: 0;
    }
    .planning-month-shifts {
      display: grid;
      gap: 6px;
      padding: 10px;
    }
    .planning-month-shift {
      appearance: none;
      display: grid;
      grid-template-columns: auto minmax(64px, auto) minmax(0, 1fr);
      align-items: center;
      gap: 6px;
      width: 100%;
      min-width: 0;
      padding: 3px 0;
      border: 0;
      background: transparent;
      color: var(--text);
      font: inherit;
      font-size: 12px;
      text-align: left;
    }
    button.planning-month-shift {
      cursor: pointer;
    }
    .planning-month-shift strong {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      font-size: 12px;
    }
    .planning-month-shift > span:not(.planning-month-dot) {
      overflow: hidden;
      color: var(--brand);
      font-size: 11px;
      font-weight: 800;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .planning-month-shift small {
      grid-column: 3;
      overflow: hidden;
      color: var(--muted);
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .planning-month-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--brand);
    }
    .planning-month-shift.is-draft .planning-month-dot {
      background: var(--muted);
    }
    .planning-month-empty {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }
    .employee-shift-block {
      appearance: none;
      position: absolute;
      top: calc((var(--shift-top) / 60) * var(--agenda-hour-height));
      left: calc(8px + (var(--shift-lane, 0) * ((100% - 16px) / var(--shift-lanes, 1))));
      width: calc(((100% - 16px) / var(--shift-lanes, 1)) - 6px);
      min-height: calc((var(--shift-height) / 60) * var(--agenda-hour-height));
      padding: 9px;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--border));
      border-radius: 10px;
      background: color-mix(in srgb, var(--brand) 10%, var(--surface));
      box-shadow: 0 8px 20px rgba(12, 49, 41, 0.08);
      color: var(--text);
      font: inherit;
      text-align: left;
      transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    }
    .employee-shift-block:hover,
    .employee-shift-block:focus-visible {
      z-index: 3;
      transform: translateY(-1px);
      border-color: color-mix(in srgb, var(--brand) 48%, var(--border));
      box-shadow: 0 12px 26px rgba(12, 49, 41, 0.12);
      outline: none;
    }
    .employee-shift-block.is-draft {
      border-style: dashed;
      background: color-mix(in srgb, #f1a22b 12%, var(--surface));
    }
    .employee-shift-block strong,
    .employee-shift-block span,
    .employee-shift-block small,
    .employee-shift-block em {
      display: block;
      line-height: 1.25;
    }
    .employee-shift-block strong {
      font-size: 13px;
      margin-bottom: 4px;
      overflow-wrap: anywhere;
    }
    .employee-shift-block span,
    .employee-shift-block small {
      color: var(--brand);
      font-size: 12px;
      font-weight: 800;
    }
    .employee-shift-block em {
      margin-top: 5px;
      color: var(--muted);
      font-size: 11px;
      font-style: normal;
    }
    .employee-shift-members {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      margin-top: 7px;
    }
    .employee-shift-members span {
      max-width: 100%;
      padding: 2px 6px;
      border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
      border-radius: 999px;
      background: color-mix(in srgb, var(--surface) 88%, var(--brand) 12%);
      color: var(--text);
      font-size: 10px;
      font-weight: 800;
      line-height: 1.2;
      overflow-wrap: anywhere;
    }
    @media (max-width: 900px) {
      .planning-toolbar {
        align-items: stretch;
        flex-direction: column;
      }
      .planning-nav-actions,
      .planning-filter-form {
        justify-content: flex-start;
      }
      .planning-filter-field,
      .planning-filter-employee,
      .planning-filter-form .app-date-picker {
        width: min(100%, 260px);
        min-width: min(100%, 220px);
      }
    }
    .team-shift-detail-modal {
      max-width: 560px;
    }
    .team-shift-detail-list {
      display: grid;
      gap: 10px;
    }
    .team-shift-detail-toolbar {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 12px;
    }
    .team-shift-detail-item {
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: color-mix(in srgb, var(--surface) 96%, var(--brand) 4%);
    }
    .team-shift-detail-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 6px;
    }
    .team-shift-detail-head strong {
      overflow-wrap: anywhere;
    }
    .team-shift-detail-head span {
      flex: 0 0 auto;
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
    }
    .team-shift-detail-item p {
      margin: 0;
      color: var(--brand);
      font-size: 13px;
      font-weight: 800;
    }
    .team-shift-detail-item small {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      line-height: 1.35;
    }
    .team-shift-detail-actions {
      display: flex;
      justify-content: flex-end;
      margin-top: 10px;
    }
    .team-shift-edit-form {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }
    .team-shift-edit-form[hidden] {
      display: none !important;
    }
    .team-shift-assignment-form {
      margin-bottom: 14px;
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: color-mix(in srgb, var(--surface) 94%, var(--brand) 6%);
    }
    .team-shift-assignment-form[hidden] {
      display: none !important;
    }
    .team-shift-edit-wide,
    .team-shift-edit-actions {
      grid-column: 1 / -1;
    }
    .team-shift-edit-check {
      display: flex;
      align-items: center;
      gap: 8px;
      align-self: flex-end;
      min-height: 44px;
      font-weight: 800;
    }
    .service-edit-row td {
      background: #fffdf9;
      border-top: none;
    }
    .service-edit-form {
      margin-top: 4px;
      padding: 10px;
      border: 1px dashed var(--border);
      border-radius: 12px;
      background: #fffcf8;
    }
    .service-edit-actions {
      grid-column: 1 / -1;
      display: flex;
      gap: 10px;
      justify-content: flex-end;
    }
    .product-price {
      font-weight: 700;
      color: var(--brand);
      white-space: nowrap;
      font-size: 12px;
    }
    .empty-nav {
      padding: 10px 14px 10px 36px;
      color: var(--muted);
      font-size: 12px;
      font-style: italic;
    }
    .empty-state {
      border: 1px dashed #d3c4b5;
      border-radius: 14px;
      padding: 16px;
      color: #695f53;
      background: #fffcf8;
    }
    .dashboard-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 16px;
    }
    .dashboard-date {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--surface);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }
    .dashboard-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.85fr);
      gap: 14px;
      align-items: start;
      margin-bottom: 14px;
    }
    .dashboard-card-head,
    .dashboard-reservation-row {
      display: flex;
      align-items: center;
    }
    .dashboard-card-head {
      justify-content: space-between;
      gap: 16px;
    }
    .dashboard-reservations-card,
    .dashboard-tools-card,
    .dashboard-admin-card {
      margin: 0;
    }
    .dashboard-action-icon,
    .dashboard-metric-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: color-mix(in srgb, var(--brand) 12%, var(--surface));
      color: var(--brand);
      border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--border));
      font-weight: 800;
      flex: 0 0 auto;
    }
    .dashboard-action-icon svg,
    .dashboard-metric-icon svg {
      width: 18px;
      height: 18px;
    }
    .dashboard-count-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 42px;
      height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      text-decoration: none;
      font-weight: 900;
      font-size: 16px;
    }
    .dashboard-empty {
      color: var(--muted);
      text-align: center;
      margin: 42px 0 28px;
      font-size: 15px;
    }
    .dashboard-reservation-list {
      display: grid;
      gap: 8px;
      margin-top: 14px;
    }
    .dashboard-reservation-row {
      justify-content: space-between;
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr) minmax(112px, auto) 42px;
      gap: 12px;
      padding: 11px 12px;
      border-radius: 10px;
      background: color-mix(in srgb, var(--brand) 6%, var(--surface));
      border: 1px solid color-mix(in srgb, var(--brand) 14%, var(--border));
      color: var(--text);
      text-decoration: none;
      transition: border-color 140ms ease, background 140ms ease;
    }
    .dashboard-reservation-row:hover {
      background: color-mix(in srgb, var(--brand) 10%, var(--surface));
      border-color: color-mix(in srgb, var(--brand) 30%, var(--border));
      text-decoration: none;
    }
    .dashboard-reservation-time {
      min-width: 48px;
      color: var(--brand);
      font-weight: 900;
    }
    .dashboard-reservation-row em {
      font-style: normal;
      color: var(--brand);
      font-weight: 800;
    }
    .dashboard-reservation-status {
      justify-self: center;
      white-space: nowrap;
    }
    .dashboard-reservation-row strong {
      min-width: 0;
    }
    .dashboard-action-list {
      display: grid;
      gap: 10px;
      margin-top: 12px;
    }
    .dashboard-action-card,
    .dashboard-module-card {
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px;
      color: var(--text);
      text-decoration: none;
      background: var(--surface-strong);
      transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
    }
    .dashboard-action-card:hover,
    .dashboard-module-card:hover {
      transform: translateY(-1px);
      border-color: color-mix(in srgb, var(--brand) 32%, var(--border));
      background: color-mix(in srgb, var(--brand) 5%, var(--surface));
      text-decoration: none;
    }
    .dashboard-action-card > span:last-child,
    .dashboard-module-card {
      min-width: 0;
    }
    .dashboard-action-card strong,
    .dashboard-module-card strong {
      display: block;
      font-size: 15px;
      margin-bottom: 2px;
    }
    .dashboard-action-card small,
    .dashboard-module-card small {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }
    .dashboard-module-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 10px;
      margin-top: 12px;
    }
    .dashboard-module-card {
      flex-direction: column;
      align-items: flex-start;
      min-height: 116px;
    }
    .dashboard-metric-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
    }
    .dashboard-metric-card .metric-value {
      margin: 0 0 3px;
    }
    .dashboard-admin-card {
      margin-top: 14px;
    }
    .table-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 14px;
    }
    .table-stats article,
    .table-zone-card,
    .magic-menu-controls details,
    .paper-preview {
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .table-stats article {
      border-radius: 8px;
      padding: 14px;
    }
    .table-stats strong {
      display: block;
      color: var(--brand);
      font-size: 26px;
      line-height: 1;
    }
    .table-stats span {
      color: var(--muted);
      font-size: 13px;
    }
    .table-zone-board {
      display: grid;
      gap: 14px;
    }
    .table-zone-card {
      border-radius: 10px;
      padding: 16px;
    }
    .table-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 12px;
      margin-top: 12px;
    }
    .table-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border-radius: 8px;
      background: color-mix(in srgb, var(--brand) 7%, #ffffff);
      border: 1px solid color-mix(in srgb, var(--brand) 18%, #ffffff);
    }
    .table-card.is-inactive {
      background: #f6f2ef;
      opacity: 0.72;
    }
    .table-card-shape {
      width: 76px;
      min-height: 58px;
      border-radius: 18px;
      background: #27b565;
      color: #fff;
      display: grid;
      place-items: center;
      padding: 8px;
      text-align: center;
      box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.08);
    }
    .table-card-shape span {
      font-size: 12px;
      font-weight: 800;
      background: rgba(255, 255, 255, 0.9);
      color: #1e6a3f;
      border-radius: 999px;
      padding: 1px 8px;
    }
    .table-card-meta {
      display: grid;
      gap: 8px;
      justify-items: stretch;
    }
    .magic-menu-shell {
      display: grid;
      gap: 18px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow-x: clip;
    }
    .magic-menu-head {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: flex-start;
    }
    .magic-menu-stats {
      display: grid;
      place-items: center;
      min-width: 112px;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 94%, var(--brand) 6%);
      color: var(--brand);
    }
    .magic-menu-stats strong {
      font-size: 28px;
      line-height: 1;
    }
    .magic-menu-stats span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }
    .magic-menu-layout {
      display: grid;
      grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow-x: clip;
    }
    .magic-menu-controls {
      display: grid;
      gap: 12px;
      min-width: 0;
      max-width: 100%;
    }
    .magic-menu-submit-row {
      display: grid;
      gap: 8px;
    }
    .magic-menu-controls details {
      border-radius: 8px;
      padding: 0;
      overflow: hidden;
    }
    .magic-menu-controls summary {
      cursor: pointer;
      padding: 16px;
      font-weight: 800;
      color: #3a3f3b;
      list-style: none;
    }
    .magic-menu-controls details > *:not(summary) {
      margin: 0 16px 14px;
    }
    .magic-menu-control-grid {
      display: grid;
      gap: 10px;
    }
    .magic-style-section {
      margin-top: 4px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .magic-style-section:first-child {
      margin-top: 0;
      padding-top: 0;
      border-top: 0;
    }
    .magic-font-picker {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }
    .magic-font-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .magic-font-option span {
      display: grid;
      gap: 4px;
      min-height: 64px;
      padding: 10px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
    }
    .magic-font-option input:checked + span {
      border-color: var(--brand);
      box-shadow: inset 0 0 0 1px var(--brand);
      background: color-mix(in srgb, var(--brand) 5%, #ffffff);
    }
    .magic-font-option strong {
      color: #17130f;
      font-size: 18px;
      line-height: 1;
    }
    .magic-font-option small {
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
    }
    .magic-font-option[data-font-preview="classic"] strong { font-family: Arial, Helvetica, sans-serif; }
    .magic-font-option[data-font-preview="modern"] strong { font-family: "Trebuchet MS", "Liberation Sans", Arial, sans-serif; }
    .magic-font-option[data-font-preview="serif"] strong { font-family: Georgia, "Times New Roman", serif; }
    .magic-font-option[data-font-preview="elegant"] strong { font-family: "Times New Roman", Times, serif; }
    .magic-font-option[data-font-preview="rounded"] strong { font-family: Verdana, Geneva, sans-serif; }
    .magic-font-option[data-font-preview="mono"] strong { font-family: "Courier New", Courier, monospace; }
    .magic-theme-picker {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }
    .magic-theme-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .magic-theme-option span {
      display: grid;
      grid-template-columns: auto 16px 16px;
      align-items: center;
      gap: 8px;
      min-height: 58px;
      padding: 10px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
    }
    .magic-theme-option input:checked + span {
      border-color: var(--brand);
      box-shadow: inset 0 0 0 1px var(--brand);
      background: color-mix(in srgb, var(--brand) 5%, #ffffff);
    }
    .magic-theme-option strong {
      color: #17130f;
      font-size: 14px;
      font-weight: 900;
    }
    .magic-theme-option i {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--swatch);
      border: 1px solid rgba(0,0,0,.08);
    }
    .magic-theme-option small {
      grid-column: 1 / -1;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
    }
    .magic-category-list {
      display: grid;
      gap: 8px;
    }
    .magic-category-check {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px;
      border-radius: 8px;
      background: color-mix(in srgb, var(--brand) 5%, #ffffff);
    }
    .magic-category-check input {
      width: auto;
      margin-top: 3px;
    }
    .magic-category-check small {
      display: block;
      color: var(--muted);
    }
    .magic-menu-preview {
      min-width: 0;
      max-width: 100%;
      overflow-x: clip;
      overflow-y: visible;
      width: 100%;
      padding: 26px;
      border-radius: 10px;
      background: color-mix(in srgb, var(--brand) 5%, #ffffff);
      border: 1px solid var(--border);
    }
    .paper-preview {
      box-sizing: border-box;
      width: 100%;
      max-width: 794px;
      min-width: 0;
      aspect-ratio: 794 / 1123;
      min-height: auto;
      margin: 0 auto;
      border-radius: 8px;
      padding: 48px 34px;
      color: #31503b;
      background: var(--preview-paper, #fbfaf4);
    }
    .paper-preview.is-paginated {
      overflow: hidden;
    }
    .magic-menu-preview[data-font-family="classic"] .paper-preview { font-family: Arial, Helvetica, sans-serif; }
    .magic-menu-preview[data-font-family="modern"] .paper-preview { font-family: "Trebuchet MS", "Liberation Sans", Arial, sans-serif; }
    .magic-menu-preview[data-font-family="serif"] .paper-preview { font-family: Georgia, "Times New Roman", serif; }
    .magic-menu-preview[data-font-family="elegant"] .paper-preview { font-family: "Times New Roman", Times, serif; }
    .magic-menu-preview[data-font-family="rounded"] .paper-preview { font-family: Verdana, Geneva, sans-serif; }
    .magic-menu-preview[data-font-family="mono"] .paper-preview { font-family: "Courier New", monospace; }
    .paper-logo {
      display: block;
      max-width: 150px;
      max-height: 92px;
      object-fit: contain;
      margin: 0 auto 18px;
    }
    .paper-preview h2,
    .paper-title,
    .paper-subtitle {
      text-align: center;
    }
    .paper-title {
      color: var(--preview-brand);
      font-size: 22px;
      font-style: italic;
      margin: 0 auto 6px;
    }
    .paper-subtitle {
      color: var(--muted);
      margin: 0 0 18px;
    }
    .paper-menu-grid {
      display: grid;
      gap: 26px;
      margin-top: 28px;
    }
    .paper-menu-grid.has-two-column-products .paper-product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 28px;
    }
    .paper-product-grid {
      display: grid;
      gap: 0;
    }
    .paper-category {
      break-inside: avoid;
      padding-top: 10px;
    }
    .paper-category:first-child {
      padding-top: 0;
    }
    .paper-category h3 {
      color: var(--preview-brand);
      border-bottom: 2px solid color-mix(in srgb, var(--preview-brand) 50%, #ffffff);
      display: block;
      width: fit-content;
      margin: 0 auto 16px;
      letter-spacing: 0;
      text-align: center;
    }
    .paper-product {
      padding: 8px 0;
      border-bottom: 1px solid #edf0ea;
    }
    .paper-product-line {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--preview-brand);
    }
    .paper-product-line span {
      color: var(--preview-accent, var(--preview-brand));
      font-weight: 900;
    }
    .paper-product p,
    .paper-product em {
      display: block;
      color: #6b756e;
      font-size: 13px;
      line-height: 1.35;
      margin: 4px 0 0;
    }
    .magic-menu-preview[data-show-descriptions="0"] .paper-product-desc,
    .magic-menu-preview[data-show-allergens="0"] .paper-product-allergens {
      display: none;
    }
    .paper-product-allergens {
      color: #856534;
    }
    .paper-daily-page {
      break-after: page;
      page-break-after: always;
    }
    .paper-daily-main-title {
      font-size: 22px;
      font-style: italic;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.08;
      text-transform: none;
    }
    .paper-daily-list {
      display: grid;
      gap: 18px;
      margin-top: 26px;
    }
    .paper-daily-feature {
      border: 1px solid color-mix(in srgb, var(--preview-brand) 20%, #d8ded6);
      border-radius: 8px;
      display: grid;
      gap: 14px;
      padding: 20px;
      position: relative;
    }
    .paper-daily-feature-head {
      align-items: center;
      display: block;
      min-height: 42px;
      position: relative;
    }
    .paper-daily-feature-title {
      align-items: center;
      display: flex;
      gap: 12px;
      justify-content: center;
      min-width: 0;
      padding: 0 110px;
      text-align: center;
    }
    .paper-daily-feature-title span {
      background: color-mix(in srgb, var(--preview-accent) 54%, transparent);
      flex: 1 1 72px;
      height: 1px;
      max-width: 120px;
    }
    .paper-daily-feature-title h3 {
      color: var(--preview-brand);
      font-size: 24px;
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1.08;
      margin: 0;
      text-transform: none;
    }
    .paper-daily-feature-price {
      align-items: center;
      border: 0;
      color: var(--preview-accent, var(--preview-brand));
      display: inline-flex;
      font-size: 15px;
      font-weight: 900;
      justify-content: center;
      min-height: 42px;
      padding: 0;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      white-space: nowrap;
    }
    .paper-daily-feature-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .paper-daily-feature-badges span {
      align-items: center;
      border-radius: 999px;
      background: color-mix(in srgb, var(--preview-brand) 9%, #ffffff);
      color: var(--preview-brand);
      display: inline-flex;
      font-size: 12px;
      font-weight: 900;
      min-height: 26px;
      padding: 4px 12px;
      text-transform: uppercase;
    }
    .paper-daily-feature-desc {
      color: #6b756e;
      font-size: 14px;
      margin: -4px auto 0;
      max-width: 620px;
      text-align: center;
    }
    .paper-daily-feature-choices {
      display: grid;
      gap: 0;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      padding: 10px 0 8px;
    }
    .paper-daily-feature-choices section {
      display: grid;
      gap: 10px;
      justify-items: center;
      min-height: 150px;
      padding: 0 18px;
      text-align: center;
    }
    .paper-daily-feature-choices section + section {
      border-left: 1px solid color-mix(in srgb, var(--preview-brand) 18%, #d8ded6);
    }
    .paper-daily-choice-icon {
      align-items: center;
      color: var(--preview-brand);
      display: inline-flex;
      height: 34px;
      justify-content: center;
      line-height: 1;
      width: 34px;
    }
    .paper-daily-choice-icon svg {
      display: block;
      fill: none;
      height: 30px;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.9;
      width: 30px;
    }
    .paper-daily-feature-choices h4 {
      color: var(--preview-brand);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 0.04em;
      line-height: 1.1;
      margin: 0;
      text-transform: uppercase;
    }
    .paper-daily-feature-choices ul {
      color: #424842;
      display: grid;
      gap: 6px;
      font-size: 14px;
      line-height: 1.35;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .paper-daily-feature-notes {
      border-top: 1px solid color-mix(in srgb, var(--preview-brand) 18%, #d8ded6);
      color: #6b756e;
      margin: 0 auto;
      max-width: 620px;
      padding-top: 12px;
      text-align: center;
    }
    .paper-daily-feature-notes strong {
      color: var(--preview-brand);
      text-transform: uppercase;
    }
    .paper-daily-dishes-section {
      margin-top: 8px;
    }
    .magic-menu-preview[data-include-daily-menus="0"] .paper-daily-page {
      display: none;
    }
    .magic-menu-preview[data-show-daily-menu-date="0"] .paper-daily-date {
      display: none;
    }
    .magic-menu-preview .paper-preview + .paper-preview {
      margin-top: 24px;
    }
    .service-seat-form {
      display: grid;
      width: 100%;
      grid-template-columns: 1fr;
      gap: 8px;
      align-items: stretch;
    }
    .service-seat-form label,
    .service-split-field {
      display: grid;
      gap: 4px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }
    .service-seat-form input,
    .service-split-field input {
      min-height: 36px;
      padding: 7px 9px;
      margin: 0;
    }
    .service-seat-form button {
      grid-column: 1 / -1;
      justify-self: stretch;
      width: 100%;
    }
    .service-category-card {
      margin-bottom: 14px;
    }
    .service-category-accordion {
      overflow: hidden;
    }
    .service-category-summary {
      cursor: pointer;
      list-style: none;
      user-select: none;
    }
    .service-category-summary::-webkit-details-marker {
      display: none;
    }
    .service-category-summary::after {
      content: '▾';
      color: var(--brand);
      font-size: 13px;
      transition: transform 140ms ease;
      margin-left: auto;
    }
    .service-category-accordion[open] .service-category-summary::after {
      transform: rotate(180deg);
    }
    .service-category-accordion:not([open]) {
      box-shadow: none;
    }
    .service-product-grid {
      display: grid;
      gap: 8px;
      padding: 14px;
    }
    .service-product-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto 76px;
      gap: 12px;
      align-items: center;
      padding: 10px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--surface-strong);
    }
    .service-product-row small {
      display: block;
      color: var(--muted);
      margin-top: 2px;
    }
    .service-product-row em {
      color: var(--brand);
      font-style: normal;
      font-weight: 800;
      white-space: nowrap;
    }
    .service-product-row input {
      margin: 0;
      text-align: center;
    }
    .service-checkout {
      position: sticky;
      top: 24px;
      display: grid;
      gap: 14px;
    }
    .service-ticket {
      display: grid;
      gap: 8px;
      margin: 14px 0;
    }
    .service-ticket-row,
    .service-total,
    .service-split-result {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: baseline;
    }
    .service-ticket-row {
      padding-bottom: 8px;
      border-bottom: 1px dashed var(--border);
      font-size: 14px;
    }
    .service-ticket-row > span {
      flex: 1;
      display: grid;
      gap: 3px;
    }
    .service-ticket-remove-form {
      margin: 0;
    }
    .service-ticket-quantity-actions {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .service-ticket-remove {
      border: 1px solid color-mix(in srgb, #b42318 26%, var(--border));
      border-radius: 999px;
      background: color-mix(in srgb, #b42318 6%, var(--surface));
      color: #b42318;
      cursor: pointer;
      font: inherit;
      font-size: 12px;
      font-weight: 800;
      padding: 5px 9px;
    }
    .service-ticket-remove:hover {
      background: color-mix(in srgb, #b42318 11%, var(--surface));
    }
    .service-ticket-step {
      border-color: color-mix(in srgb, var(--brand) 24%, var(--border));
      background: color-mix(in srgb, var(--brand) 7%, var(--surface));
      color: var(--brand);
      min-width: 32px;
      padding: 5px 8px;
    }
    .service-ticket-step:hover {
      background: color-mix(in srgb, var(--brand) 13%, var(--surface));
    }
    .service-ticket-status,
    .kitchen-order-items small {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }
    .service-total {
      margin: 16px 0;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      color: var(--brand);
    }
    .service-total strong,
    .service-split-result strong {
      font-size: 22px;
    }
    .service-split-result {
      margin: 0;
      color: var(--muted);
    }
    .service-checkout-actions {
      display: grid;
      gap: 12px;
      margin-top: 4px;
    }
    .service-checkout-actions form,
    .service-checkout-actions .btn {
      width: 100%;
    }
    .service-checkout-actions .btn {
      min-height: 46px;
      justify-content: center;
    }
    .service-checkout-divider {
      height: 1px;
      background: var(--border);
      margin: 2px 0;
    }
    .kitchen-order-card {
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: var(--surface);
      box-shadow: var(--shadow);
      margin-bottom: 12px;
    }
    .kitchen-order-head,
    .kitchen-order-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .kitchen-order-items {
      display: grid;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .kitchen-order-items li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 10px;
      padding: 7px 0;
      border-bottom: 1px dashed var(--border);
    }
    .kitchen-order-items li > span:first-child {
      flex: 1;
    }
    .menu-product-row .menu-product-form {
      display: none;
      margin-top: 12px;
    }
    .menu-product-row.product-expanded .menu-product-form {
      display: grid;
    }
    .menu-product-head {
      cursor: pointer;
      user-select: none;
      padding-right: 8px;
      position: relative;
    }
    .menu-product-head::after {
      content: '▸';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 120ms ease;
      font-size: 12px;
    }
    .menu-product-row.product-expanded .menu-product-head::after {
      transform: translateY(-50%) rotate(90deg);
    }
    .product-close-btn {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--muted);
    }
    .product-close-btn:hover {
      background: #f8f4ee;
      color: #2a241c;
    }
