:root {
  --ink: #17383b;
  --ink-soft: #526769;
  --forest: #173f42;
  --forest-2: #24575a;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --line: #dfe5df;
  --line-dark: #c7d1cb;
  --accent: #d7653b;
  --accent-hover: color-mix(in srgb, var(--accent) 82%, black);
  --gold: #c8a55c;
  --success: #2f7656;
  --danger: #a53e34;
  --shadow: 0 18px 50px rgba(24, 55, 58, .10);
  --radius: 16px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

[hidden] { display: none !important; }

* { box-sizing: border-box; }

html { min-width: 320px; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% -10%, rgba(200, 165, 92, .16), transparent 32rem),
    var(--paper);
}

button, input { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, a:focus-visible {
  outline: 3px solid rgba(215, 101, 59, .28);
  outline-offset: 2px;
}

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.muted { color: var(--ink-soft); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 38px;
  padding: 0 9px;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: .03em;
}

.brand-mark-large {
  width: 88px;
  height: 58px;
  margin-bottom: 54px;
  font-size: 29px;
}
.brand-mark.has-image { border-color: transparent; padding: 0; }
.brand-mark img { display: block; max-width: 150px; max-height: 52px; object-fit: contain; }
.app-header .brand-mark img { max-width: 100px; max-height: 42px; }

.button {
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 750;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}

.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: .48; transform: none; }
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover:not(:disabled) { background: var(--accent-hover); }
.button-secondary { border-color: var(--line-dark); background: #fff; }
.button-secondary:hover:not(:disabled), .button-quiet:hover:not(:disabled) { background: #edf2ee; }
.button-quiet { border-color: transparent; background: transparent; }
.button-small { min-height: 34px; padding: 7px 11px; font-size: 13px; }
.language-switch { display: inline-flex; align-self: flex-end; margin-bottom: 24px; padding: 3px; border: 1px solid var(--line); border-radius: 9px; background: #f4f6f2; }
.language-switch button { min-height: 29px; padding: 5px 9px; border: 0; border-radius: 6px; background: transparent; color: var(--ink-soft); cursor: pointer; font-size: 10px; font-weight: 800; }
.language-switch button.active { background: var(--forest); color: #fff; }
.header-language { align-self: auto; margin: 0; flex: 0 0 auto; }

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(410px, .85fr);
  min-height: 100vh;
}

.login-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 132px);
  color: #fff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--forest) 98%, black), color-mix(in srgb, var(--forest) 88%, white)),
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(255,255,255,.03) 24px 25px);
  position: relative;
  overflow: hidden;
}
.login-brand > *:not(.login-hero-image) { position: relative; z-index: 2; }
.login-hero-image { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.login-brand::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(135deg, color-mix(in srgb, var(--forest) 94%, transparent), color-mix(in srgb, var(--forest) 72%, transparent)); }

.login-brand::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  z-index: 1;
}

.login-brand .eyebrow { color: #efb493; }
.login-brand h1 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.login-lead {
  max-width: 610px;
  margin: 28px 0 42px;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.65;
}

.login-trust { display: flex; flex-wrap: wrap; gap: 12px 24px; color: rgba(255,255,255,.82); font-size: 13px; }
.login-trust span { display: inline-flex; align-items: center; gap: 8px; }
.login-trust b { font-weight: 500; }
.login-trust i { width: 7px; height: 7px; border-radius: 50%; background: #efb493; }

.login-card {
  align-self: center;
  width: min(440px, calc(100% - 64px));
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(23, 56, 59, .08);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.login-card h2 { margin: 0 0 10px; font: 500 34px/1.18 Georgia, serif; }
.login-card > .muted { margin: 0 0 30px; line-height: 1.55; }
.auth-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin: -8px 0 22px; padding: 4px; border-radius: 10px; background: #edf1ed; }
.auth-methods button { min-height: 36px; border: 0; border-radius: 7px; background: transparent; color: var(--ink-soft); cursor: pointer; font-size: 12px; font-weight: 750; }
.auth-methods button.active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(23,56,59,.08); }
.form-stack { display: grid; gap: 11px; }
.form-stack label { font-size: 13px; font-weight: 750; }
.form-stack input, .search-bar input {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}
.form-stack input { min-height: 50px; padding: 12px 14px; margin-bottom: 4px; }
.form-stack + .form-stack { margin-top: 20px; }
.setup-heading { display: grid; gap: 4px; margin-bottom: 8px; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.setup-heading strong { font: 600 18px Georgia, serif; }
.setup-heading span { color: var(--ink-soft); font-size: 12px; }
.password-rule { margin: -5px 0 4px; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.form-stack .check-option { display: flex; align-items: flex-start; gap: 10px; margin: 3px 0 5px; padding: 11px; border: 1px solid var(--line); border-radius: 9px; background: #f8faf7; cursor: pointer; }
.form-stack .check-option input { flex: 0 0 auto; width: 17px; min-height: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--forest); }
.check-option span { display: grid; gap: 3px; }
.check-option b { font-size: 12px; }
.check-option small { color: var(--ink-soft); font-size: 10px; font-weight: 500; line-height: 1.4; }
.privacy-note { margin: 26px 0 0; color: #778587; font-size: 11px; line-height: 1.5; }

.message { margin-top: 18px; padding: 12px 14px; border-radius: 8px; background: #edf4ef; color: var(--success); font-size: 13px; line-height: 1.45; }
.message.error { background: #f9ece9; color: var(--danger); }
.freshness-notice { margin: -12px 0 18px; background: #fff3e7; color: #8a4a24; }

.app-shell { min-height: 100vh; }
.app-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(23, 56, 59, .10);
  background: rgba(247, 244, 237, .92);
  backdrop-filter: blur(14px);
}

.app-brand { display: flex; align-items: center; gap: 13px; color: inherit; text-decoration: none; }
.app-brand > span:last-child { display: grid; gap: 1px; }
.app-brand strong { font: 600 16px Georgia, serif; }
.app-brand small { color: var(--ink-soft); font-size: 10px; letter-spacing: .04em; }
.desktop-nav { display: flex; align-self: stretch; gap: 4px; }
.nav-item {
  position: relative;
  padding: 0 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.nav-item::after { content: ""; position: absolute; right: 20px; bottom: 0; left: 20px; height: 3px; background: transparent; }
.nav-item.active::after { background: var(--accent); }
.count-badge { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px; background: var(--forest); color: white; font-size: 10px; }
.account-menu { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.account-name { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 700; }

.page-frame { width: min(1440px, calc(100% - 64px)); margin: 0 auto; padding: 55px 0 90px; }
.panel { display: none; }
.panel.active { display: block; animation: panel-in .25s ease-out; }
@keyframes panel-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.page-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.page-heading h1 { margin: 0; font: 500 clamp(36px, 4vw, 54px)/1.05 Georgia, serif; letter-spacing: -.025em; }
.page-heading .muted { margin: 12px 0 0; }
.sync-card { display: flex; align-items: center; gap: 11px; min-width: 210px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.7); }
.sync-card > span:last-child { display: grid; gap: 2px; }
.sync-card small { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.sync-card strong { font-size: 12px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(47,118,86,.12); }

.search-bar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; padding: 7px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 26px rgba(31,60,62,.05); }
.search-bar input { height: 44px; padding: 8px 10px; border: 0; outline: 0; font-size: 15px; }
.search-icon { padding-left: 12px; color: var(--ink-soft); font-size: 24px; transform: rotate(-15deg); }
.inventory-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 28px; margin-top: 28px; }
.filter-card { align-self: start; padding: 21px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.64); }
.filter-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.text-button { padding: 0; border: 0; background: transparent; color: var(--accent); cursor: pointer; font-size: 12px; font-weight: 700; }
.filter-card fieldset { display: grid; gap: 7px; margin: 20px 0 0; padding: 0; border: 0; }
.filter-card legend { margin-bottom: 9px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.filter-chip { padding: 7px 10px; border: 1px solid var(--line); border-radius: 7px; background: #fff; cursor: pointer; text-align: left; font-size: 12px; }
.filter-chip:hover, .filter-chip.active { border-color: var(--forest-2); background: var(--forest); color: #fff; }
.filter-note { display: grid; gap: 6px; margin-top: 24px; padding: 15px; border-radius: 9px; background: #e9efea; font-size: 11px; line-height: 1.45; }
.results-toolbar { display: flex; justify-content: space-between; min-height: 33px; }
.results-toolbar p { margin: 0; font-size: 12px; }

.inventory-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.inventory-table { width: 100%; border-collapse: collapse; }
.inventory-table th { padding: 12px 15px; border-bottom: 1px solid var(--line); background: #f0f1ec; color: var(--ink-soft); font-size: 10px; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.inventory-table td { padding: 15px; border-bottom: 1px solid #edf0ec; font-size: 12px; vertical-align: middle; }
.inventory-table tbody tr:last-child td { border-bottom: 0; }
.inventory-table tbody tr:hover { background: #fbfaf6; }
.numeric { text-align: right !important; }
.product-cell { display: flex; align-items: center; gap: 13px; min-width: 250px; }
.product-thumb { display: grid; place-items: center; flex: 0 0 58px; width: 58px; height: 58px; overflow: hidden; border-radius: 8px; background: #edf0eb; color: #9ca7a0; font: 20px Georgia, serif; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-copy { min-width: 0; }
.product-name { display: block; margin: 0 0 4px; border: 0; padding: 0; background: transparent; cursor: pointer; color: var(--ink); font-weight: 750; text-align: left; }
.product-name:hover { color: var(--accent); }
.product-meta { color: var(--ink-soft); font-size: 10px; }
.stock { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; padding: 5px 8px; border-radius: 20px; background: #e4f0e7; color: var(--success); font-weight: 800; }
.stock.low { background: #f7eadb; color: #9c5a24; }
.price-main { display: block; font-weight: 750; white-space: nowrap; }
.price-reference { display: block; margin-top: 3px; color: var(--ink-soft); font-size: 10px; white-space: nowrap; }
.add-button { min-width: 76px; }
.inventory-cards { display: none; }

.pagination { display: flex; align-items: center; justify-content: flex-end; gap: 15px; margin-top: 18px; font-size: 12px; }
.loading-grid { display: grid; gap: 10px; }
.loading-grid div { height: 85px; border-radius: 10px; background: linear-gradient(90deg, #e9ebe6 25%, #f6f5f0 50%, #e9ebe6 75%); background-size: 200% 100%; animation: shimmer 1.3s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.empty-state { padding: 56px 24px; border: 1px dashed var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.55); color: var(--ink-soft); text-align: center; line-height: 1.6; }

.updates-list { display: grid; gap: 15px; }
.update-card { padding: 24px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.update-card h2 { margin: 0 0 8px; font: 500 24px Georgia, serif; }
.update-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.update-card .update-body { margin-top: 12px; white-space: pre-line; }
.update-card .button { margin-top: 18px; }

.order-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; }
.order-items { display: grid; gap: 10px; }
.order-row { display: grid; grid-template-columns: minmax(0, 1fr) 112px 130px 34px; align-items: center; gap: 16px; padding: 17px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.order-product strong { display: block; }
.order-product small { color: var(--ink-soft); }
.quantity-control { display: grid; grid-template-columns: 32px 46px 32px; }
.quantity-control button, .quantity-control input { height: 34px; border: 1px solid var(--line-dark); background: #fff; text-align: center; }
.quantity-control button { cursor: pointer; font-weight: 800; }
.quantity-control button:first-child { border-radius: 7px 0 0 7px; }
.quantity-control button:last-child { border-radius: 0 7px 7px 0; }
.quantity-control input { width: 46px; border-right: 0; border-left: 0; border-radius: 0; }
.order-line-price { text-align: right; font-weight: 750; }
.remove-button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; color: var(--ink-soft); font-size: 19px; }
.remove-button:hover { background: #f8e9e6; color: var(--danger); }
.order-summary { align-self: start; position: sticky; top: 104px; padding: 24px; border-radius: var(--radius); background: var(--forest); color: #fff; box-shadow: var(--shadow); }
.order-summary .eyebrow { color: #efb493; }
.order-summary > div:not(.message) { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.confirmation-notice { margin: 20px 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.55; }
.order-summary .button { width: 100%; margin-top: 8px; }
.order-summary .button-secondary, .order-summary .button-quiet { border-color: rgba(255,255,255,.25); background: transparent; color: white; }
.order-summary .message { background: rgba(255,255,255,.12); color: white; }

.product-dialog { width: min(720px, calc(100% - 32px)); padding: 0; border: 0; border-radius: 16px; color: var(--ink); box-shadow: 0 28px 90px rgba(12,38,40,.26); }
.product-dialog::backdrop { background: rgba(10,33,35,.55); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); cursor: pointer; font-size: 25px; }
.dialog-product { display: grid; grid-template-columns: 42% 58%; min-height: 400px; }
.dialog-image { display: grid; place-items: center; min-height: 320px; background: #edf0eb; color: #879590; font: 34px Georgia, serif; }
.dialog-image img { width: 100%; height: 100%; object-fit: cover; }
.dialog-copy { padding: 52px 42px 38px; }
.dialog-copy h2 { margin: 0 0 8px; font: 500 31px/1.15 Georgia, serif; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.detail-grid span { display: grid; gap: 4px; }
.detail-grid small { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.dialog-copy .button { width: 100%; }

.mobile-nav { display: none; }

@media (max-width: 980px) {
  .login-shell { grid-template-columns: 1fr 390px; }
  .login-brand { padding: 55px; }
  .login-brand h1 { font-size: 54px; }
  .app-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .inventory-layout { grid-template-columns: 1fr; }
  .filter-card { display: flex; align-items: center; gap: 12px; overflow-x: auto; padding: 11px; }
  .filter-heading { flex: 0 0 auto; border: 0; padding: 0 8px; }
  .filter-heading strong, .filter-card legend, .filter-note { display: none; }
  .filter-card fieldset { display: flex; flex: 0 0 auto; margin: 0; }
  .order-layout { grid-template-columns: 1fr 290px; }
  .account-name { display: none; }
}

@media (max-width: 720px) {
  body { background: #f8f6f0; }
  .login-shell { display: block; min-height: 100vh; background: var(--forest); }
  .login-brand { min-height: 330px; padding: 38px 25px 46px; justify-content: flex-end; }
  .brand-mark-large { width: 68px; height: 46px; margin-bottom: 32px; font-size: 23px; }
  .login-brand h1 { font-size: 43px; }
  .login-lead { margin: 19px 0 0; font-size: 15px; }
  .login-trust { display: none; }
  .login-card { width: 100%; margin: 0; padding: 34px 25px 40px; border: 0; border-radius: 24px 24px 0 0; box-shadow: none; }
  .login-card h2 { font-size: 29px; }
  .app-header { position: static; min-height: 66px; padding: 0 18px; }
  .app-brand small { display: none; }
  .app-brand strong { font-size: 14px; }
  .account-menu { gap: 3px; }
  .header-language button { padding: 4px 7px; }
  .page-frame { width: calc(100% - 32px); padding: 30px 0 98px; }
  .page-heading { display: block; margin-bottom: 22px; }
  .page-heading h1 { font-size: 37px; }
  .page-heading .muted { font-size: 13px; line-height: 1.5; }
  .sync-card { margin-top: 19px; width: 100%; }
  .search-bar { grid-template-columns: auto 1fr; }
  .search-bar .button { grid-column: 1 / -1; width: 100%; }
  .inventory-layout { margin-top: 18px; gap: 17px; }
  .inventory-table-wrap { display: none !important; }
  .inventory-cards { display: grid; gap: 11px; }
  .inventory-card { display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: white; }
  .inventory-card .product-thumb { width: 78px; height: 78px; }
  .inventory-card h2 { margin: 1px 0 5px; font-size: 14px; line-height: 1.35; }
  .inventory-card .card-meta { color: var(--ink-soft); font-size: 10px; }
  .inventory-card .card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 11px; }
  .inventory-card .card-stock-price { display: grid; gap: 4px; font-size: 11px; }
  .inventory-card .stock { width: fit-content; }
  .pagination { justify-content: center; }
  .order-layout { grid-template-columns: 1fr; }
  .order-row { grid-template-columns: minmax(0, 1fr) 34px; gap: 11px; }
  .quantity-control { grid-row: 2; }
  .order-line-price { grid-column: 2; grid-row: 2; }
  .remove-button { grid-column: 2; grid-row: 1; }
  .order-summary { position: static; }
  .dialog-product { grid-template-columns: 1fr; }
  .dialog-image { min-height: 230px; max-height: 280px; }
  .dialog-copy { padding: 30px 24px; }
  .mobile-nav { position: fixed; z-index: 30; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); padding: 7px max(8px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left)); border-top: 1px solid var(--line); background: rgba(255,255,255,.96); box-shadow: 0 -8px 25px rgba(24,55,58,.08); }
  .mobile-nav-item { position: relative; display: grid; place-items: center; gap: 3px; min-height: 48px; border: 0; background: transparent; color: var(--ink-soft); font-size: 10px; font-weight: 750; }
  .mobile-nav-item span { font-size: 21px; line-height: 1; }
  .mobile-nav-item i { font-style: normal; }
  .mobile-nav-item.active { color: var(--accent); }
  .mobile-nav-item b { position: absolute; top: 0; left: calc(50% + 8px); display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 10px; background: var(--accent); color: white; font-size: 9px; }
}

@media print {
  body { background: white; }
  .app-header, .mobile-nav, #inventoryPanel, #updatesPanel, #clearOrderButton, .order-summary .button, .confirmation-notice { display: none !important; }
  .page-frame { width: 100%; padding: 0; }
  #orderPanel { display: block !important; }
  .order-layout { display: block; }
  .order-summary { margin-top: 24px; position: static; color: black; background: white; box-shadow: none; border: 1px solid #ccc; }
  .order-row { break-inside: avoid; }
}
