/* ===== Schnellbestellung — order.css ===== */
:root {
  --primary: oklch(0.42 0.18 255);
  --primary-deep: oklch(0.30 0.16 255);
  --primary-soft: oklch(0.95 0.04 255);
  --bg: oklch(0.985 0.004 80);
  --bg-2: oklch(0.96 0.008 80);
  --surface: #ffffff;
  --border: oklch(0.89 0.008 80);
  --border-strong: oklch(0.80 0.01 80);
  --text: oklch(0.14 0.018 255);
  --text-2: oklch(0.40 0.015 255);
  --text-3: oklch(0.60 0.012 255);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.07);
  --shadow: 0 4px 16px rgba(15,23,42,0.09);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.13);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Manrope', system-ui, sans-serif; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ===== Nav ===== */
.ord-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.ord-nav-inner {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 12px 0;
}
.ord-logo { display: inline-flex; align-items: center; gap: 10px; }
.ord-logo img { height: 36px; width: auto; }
.ord-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.ord-logo-name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.ord-logo-sub { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); letter-spacing: 0.02em; margin-top: 1px; }
.ord-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
  padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px;
  transition: 140ms;
}
.ord-back:hover { color: var(--text); border-color: var(--border-strong); }

/* ===== Hero ===== */
.ord-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}
.ord-hero-inner {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap;
}
.ord-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-soft); padding: 5px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.ord-hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.03em; line-height: 1;
  margin: 0 0 10px; color: var(--text);
}
.ord-hero p { margin: 0; font-size: 16px; color: var(--text-2); max-width: 52ch; }
.ord-stats { display: flex; gap: 32px; flex-shrink: 0; }
.ord-stat { text-align: right; }
.ord-stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.ord-stat-lbl { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ===== Filter Bar ===== */
.ord-filter-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.ord-filter-inner {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  display: flex; align-items: center; gap: 12px; padding: 10px 0; flex-wrap: wrap;
}
.ord-filter-inner--compact {
  flex-wrap: nowrap;
  gap: 10px;
  padding: 8px 0;
}
.ord-search-wrap {
  display: flex; align-items: center; gap: 8px;
  flex: 1; min-width: 220px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 7px 12px;
  transition: 140ms;
}
.ord-search-wrap:focus-within { border-color: var(--primary); background: var(--surface); box-shadow: 0 0 0 3px var(--primary-soft); }
.ord-search-wrap svg { color: var(--text-3); flex-shrink: 0; }
.ord-search-wrap input { border: 0; outline: 0; background: transparent; flex: 1; font-size: 14px; }
.ord-select-wrap {
  position: relative; flex-shrink: 0;
}
.ord-select-wrap select {
  appearance: none; -webkit-appearance: none;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 9px 36px 9px 14px;
  font-size: 13.5px; color: var(--text); cursor: pointer;
  transition: 140ms; min-width: 180px;
}
.ord-select-wrap select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.ord-select-wrap::after {
  content: ""; position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--text-3); pointer-events: none;
}
.ord-filter-count {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
  white-space: nowrap; margin-left: auto;
}

/* ===== Layout: Sidebar + Katalog ===== */
.ord-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  padding-bottom: 160px;
  align-items: start;
}

.ord-layout > .ord-sidebar,
.ord-layout > .ord-main.ord-main-content {
  padding-top: 32px;
}

.ord-sidebar {
  position: sticky;
  top: 76px;
  max-height: calc(100vh - 96px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.ord-sidebar-head {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.ord-sidebar-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ord-sidebar-nav {
  padding: 8px 10px 12px;
}
.ord-cat-group {
  margin-bottom: 2px;
}
.ord-cat-row {
  display: flex;
  align-items: stretch;
  gap: 2px;
  border-radius: var(--radius-sm);
}
.ord-cat-row.is-active {
  background: var(--primary-soft);
}
.ord-cat-expand {
  flex-shrink: 0;
  width: 32px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  border-radius: var(--radius-sm);
}
.ord-cat-expand:hover {
  background: var(--bg-2);
  color: var(--primary);
}
.ord-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  text-align: left;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-2);
  transition: background 120ms, color 120ms;
}
.ord-cat-item:hover {
  background: var(--bg-2);
  color: var(--text);
}
.ord-cat-item.is-active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}
.ord-cat-item--all {
  margin-bottom: 8px;
  font-weight: 600;
}
.ord-cat-item--main {
  flex: 1;
  min-width: 0;
}
.ord-cat-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ord-cat-count {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--text-3);
}
.ord-cat-item.is-active .ord-cat-count {
  background: color-mix(in oklch, var(--primary) 18%, var(--surface));
  color: var(--primary);
}
.ord-cat-subs {
  margin: 2px 0 6px 34px;
  padding-left: 10px;
  border-left: 2px solid var(--border);
}
.ord-cat-item--sub {
  padding: 7px 10px;
  font-size: 12px;
}

.ord-main.ord-main-content {
  width: 100%;
  margin: 0;
  padding-top: 32px;
  padding-bottom: 0;
  min-width: 0;
}

.ord-filter-selects {
  display: contents;
}
.ord-filter-meta {
  width: min(1400px, 100% - 48px);
  margin: 0 auto;
  padding: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
}
.ord-filter-meta strong {
  color: var(--text);
  font-weight: 700;
}

/* Kategorie-Drawer (Tablet/Mobile) */
.ord-cat-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: 140ms;
}
.ord-cat-filter-btn:hover {
  border-color: var(--border-strong);
  color: var(--text);
  background: var(--bg-2);
}
.ord-cat-filter-btn.has-filter {
  border-color: color-mix(in oklch, var(--primary) 35%, var(--border));
  background: var(--primary-soft);
  color: var(--primary);
}
.ord-cat-filter-btn-label {
  white-space: nowrap;
}
.ord-cat-filter-badge {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary);
}
.ord-cat-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.ord-cat-backdrop.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
body.ord-cat-open {
  overflow: hidden;
}
.ord-sidebar--drawer {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: min(340px, 92vw);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border-radius: 0;
  border-left: 1px solid var(--border);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}
body.ord-cat-open .ord-sidebar--drawer {
  transform: translateX(0);
  visibility: visible;
}
.ord-sidebar--drawer .ord-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  width: 100%;
  position: static;
  padding-top: max(16px, env(safe-area-inset-top));
}
.ord-sidebar-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  font-size: 24px;
  line-height: 1;
  color: var(--text-2);
  flex-shrink: 0;
}
.ord-sidebar-close:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.ord-sidebar--drawer .ord-sidebar-nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

@media (max-width: 1024px) {
  .ord-layout {
    grid-template-columns: 1fr;
  }
  .ord-layout > .ord-sidebar:not(.ord-sidebar--drawer) {
    display: none;
  }
}

/* ===== Main (legacy) ===== */
.ord-main {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  padding: 32px 0 160px;
}

/* ===== Table ===== */
.ord-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ord-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.ord-table thead th {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  white-space: nowrap;
}
.ord-table thead th:first-child { width: 44px; text-align: center; }
.ord-table thead th:nth-child(2) { width: 70px; }
.ord-table thead th.col-qty { width: 140px; text-align: center; }
.ord-table thead th.col-sku { width: 140px; }
.ord-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 120ms;
}
.ord-table tbody tr:last-child { border-bottom: 0; }
.ord-table tbody tr:hover { background: color-mix(in oklch, var(--primary-soft) 40%, var(--surface)); }
.ord-table tbody tr.is-selected { background: var(--primary-soft); }
.ord-table tbody td { padding: 12px 16px; vertical-align: middle; }
.ord-table tbody td:first-child { text-align: center; }

/* Checkbox */
.ord-check {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 5px;
  cursor: pointer;
  accent-color: var(--primary);
}

/* Product image cell */
.ord-img-cell { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; background: var(--bg-2); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ord-img-cell img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.ord-img-cell img.ord-img--symbol,
.ord-img-cell--placeholder img { mix-blend-mode: normal; object-fit: contain; padding: 4px; }

/* Product name */
.ord-prod-name-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ord-prod-name { font-weight: 600; font-size: 14px; color: var(--text); margin: 0 0 3px; line-height: 1.3; flex: 1; min-width: 0; }
.ord-detail-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-3);
  background: var(--bg-2);
  transition: color 140ms, border-color 140ms, background 140ms;
}
.ord-detail-link:hover {
  color: var(--primary);
  border-color: color-mix(in oklch, var(--primary) 35%, var(--border));
  background: var(--primary-soft);
}
.ord-prod-desc { font-size: 12px; color: var(--text-3); margin: 0; font-family: var(--font-mono); }

/* Category */
.ord-cat-main { font-size: 13px; font-weight: 500; color: var(--text); }
.ord-cat-sub { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* SKU */
.ord-sku { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.02em; }

/* Qty control */
.ord-qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.ord-qty-btn {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--bg-2);
  color: var(--text-2);
  font-size: 18px; font-weight: 500;
  transition: 120ms;
  flex-shrink: 0;
}
.ord-qty-btn:hover { background: var(--primary-soft); color: var(--primary); }
.ord-qty-input {
  width: 46px; height: 34px;
  border: 0; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  text-align: center; font-size: 14px; font-weight: 600;
  background: var(--surface); color: var(--text);
  outline: none;
}
.ord-qty-input::-webkit-inner-spin-button,
.ord-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ===== Empty state ===== */
.ord-empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--text-3);
}
.ord-empty p { font-size: 15px; margin: 8px 0 0; }

/* ===== Sticky Cart Bar ===== */
.ord-cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--text);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}
.ord-cart-bar.is-visible { transform: translateY(0); }
.ord-cart-inner {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0; flex-wrap: wrap;
}
.ord-cart-info { flex: 1; }
.ord-cart-title {
  font-weight: 700; font-size: 15px; margin-bottom: 2px;
}
.ord-cart-sub {
  font-family: var(--font-mono); font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 600px;
}
.ord-cart-actions { display: flex; gap: 10px; flex-shrink: 0; }
.ord-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: oklch(0.55 0.18 145); color: white;
  font-weight: 700; font-size: 14px;
  transition: 160ms;
}
.ord-btn-wa:hover { background: oklch(0.50 0.18 145); transform: translateY(-1px); }
.ord-btn-mail {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 600; font-size: 14px;
  transition: 160ms;
}
.ord-btn-mail:hover { background: rgba(255,255,255,0.18); }
.ord-cart-clear {
  font-family: var(--font-mono); font-size: 11.5px;
  color: rgba(255,255,255,0.4); padding: 8px;
  transition: 140ms;
}
.ord-cart-clear:hover { color: rgba(255,255,255,0.7); }

/* ===== Lazy Load Footer ===== */
.ord-lazy-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 20px 16px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.ord-lazy-status {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  text-align: center;
}
.ord-lazy-status strong {
  color: var(--text);
  font-weight: 700;
}
.ord-lazy-sentinel {
  width: 100%;
  height: 1px;
}
.ord-lazy-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: 140ms;
}
.ord-lazy-more:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.ord-lazy-hint,
.ord-lazy-done {
  margin: 0;
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}
.ord-filter-count strong {
  color: var(--primary);
  font-weight: 700;
}

.ord-empty svg {
  margin: 0 auto 12px;
  opacity: 0.3;
}
.ord-empty--block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 8px;
}

/* ===== Mobile product cards (<768px via JS) ===== */
.ord-mob-toolbar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ord-mob-select-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  min-height: 44px;
}
.ord-mob-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ord-mob-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color 140ms, background 140ms;
}
.ord-mob-card.is-selected {
  border-color: color-mix(in oklch, var(--primary) 40%, var(--border));
  background: var(--primary-soft);
}
.ord-mob-card-top {
  display: grid;
  grid-template-columns: auto 72px 1fr;
  gap: 12px;
  align-items: start;
}
.ord-mob-card-top > .ord-check {
  margin-top: 28px;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.ord-mob-card-top .ord-img-cell {
  width: 72px;
  height: 72px;
}
.ord-mob-card-body {
  min-width: 0;
}
.ord-mob-cats {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-2);
}
.ord-mob-cats span { font-weight: 500; }
.ord-mob-sku {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.ord-mob-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.ord-mob-qty-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
}
.ord-mob-card-foot .ord-qty-btn {
  width: 40px;
  height: 40px;
}
.ord-mob-card-foot .ord-qty-input {
  width: 52px;
  height: 40px;
  font-size: 15px;
}
.ord-img-cell--placeholder {
  background: linear-gradient(160deg, var(--bg-2), var(--primary-soft));
  position: relative;
}
.ord-img-cell--placeholder img {
  mix-blend-mode: normal;
  max-height: 72px;
  opacity: 0.9;
}
.ord-ph-label {
  display: none;
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--surface);
  color: var(--primary);
  border: 1px dashed color-mix(in oklch, var(--primary) 35%, transparent);
}
.ord-img-cell--placeholder .ord-ph-label {
  display: block;
}

/* ===== Loading ===== */
.ord-loading {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  color: var(--text-muted, #64748b);
  font-size: 15px;
}
.ord-loading-error p { margin-bottom: 8px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .ord-stats { display: none; }
  .ord-hero-inner { flex-direction: column; align-items: flex-start; }
  .ord-table thead th.col-sku,
  .ord-table tbody td.col-sku { display: none; }
  .ord-nav-inner,
  .ord-hero-inner,
  .ord-filter-inner,
  .ord-main,
  .ord-cart-inner {
    width: calc(100% - 32px);
  }
}
@media (max-width: 768px) {
  .ord-nav-inner,
  .ord-hero-inner,
  .ord-filter-inner,
  .ord-filter-meta,
  .ord-layout,
  .ord-cart-inner {
    width: calc(100% - 24px);
  }
  .ord-back-label { display: none; }
  .ord-back-icon { font-size: 18px; line-height: 1; }
  .ord-back { padding: 10px 12px; min-width: 44px; min-height: 44px; justify-content: center; }
  .ord-main.ord-main-content { padding-top: 20px; }
  .ord-main { padding-bottom: calc(160px + env(safe-area-inset-bottom, 0px)); }
  .ord-cart-bar {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .ord-lazy-footer { padding-bottom: 24px; }
}
@media (max-width: 640px) {
  .ord-nav-inner { gap: 12px; }
  .ord-logo-sub { display: none; }
  .ord-hero { padding: 32px 0 28px; }
  .ord-filter-inner--compact {
    padding: 8px 0;
  }
  .ord-search-wrap {
    min-width: 0;
    padding: 6px 10px;
  }
  .ord-search-wrap input {
    min-height: 0;
    font-size: 16px;
    line-height: 1.3;
  }
  .ord-cat-filter-btn {
    min-height: 40px;
    padding: 0 12px;
  }
  .ord-cat-filter-badge {
    max-width: 88px;
  }
  .ord-filter-meta {
    width: calc(100% - 24px);
    padding-bottom: 6px;
  }
  /* Fallback: horizontale Tabelle nur wenn JS die Karten nicht rendert */
  .ord-table-wrap:not(:only-child) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
  }
  .ord-table { min-width: 520px; font-size: 13px; }
  .ord-table thead th,
  .ord-table tbody td { padding: 10px 12px; }
  .ord-table thead th:nth-child(4),
  .ord-table tbody td:nth-child(4) { display: none; }
  .ord-cart-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 0;
  }
  .ord-cart-actions {
    flex-direction: row;
    width: 100%;
    gap: 8px;
  }
  .ord-btn-wa,
  .ord-btn-mail {
    flex: 1;
    min-width: 0;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .ord-cart-sub { display: none; }
  .ord-mob-card-top { grid-template-columns: auto 64px 1fr; gap: 10px; }
  .ord-mob-card-top .ord-img-cell { width: 64px; height: 64px; }
}
