:root {
  --ab-brand: #0f766e;
  --ab-brand-hover: #0d9488;
  --ab-brand-ink: #042f2e;
  --ab-brand-soft: rgba(15, 118, 110, 0.12);
  --ab-ink: #111827;
  --ab-muted: #6b7280;
  --ab-line: rgba(17, 24, 39, 0.07);
  --ab-canvas: #eef1f5;
  --ab-surface: #ffffff;
  --ab-danger: #e11d48;
  --ab-warning: #d97706;
  --ab-success: #059669;
  --ab-info: #0284c7;
  --ab-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 18px 40px rgba(17, 24, 39, 0.06);
  --ab-shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  --ab-radius: 16px;
  --ab-radius-sm: 12px;
  --ab-sidebar: 276px;
  --ab-font: "Plus Jakarta Sans", "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

body[data-biz-type="wholesale"] { --ab-brand: #4f46e5; --ab-brand-hover: #6366f1; --ab-brand-ink: #1e1b4b; --ab-brand-soft: rgba(79, 70, 229, 0.12); }
body[data-biz-type="restaurant"] { --ab-brand: #c2410c; --ab-brand-hover: #ea580c; --ab-brand-ink: #431407; --ab-brand-soft: rgba(194, 65, 12, 0.14); }
body[data-biz-type="grocery"] { --ab-brand: #15803d; --ab-brand-hover: #16a34a; --ab-brand-ink: #052e16; --ab-brand-soft: rgba(21, 128, 61, 0.12); }
body[data-biz-type="pharmacy"] { --ab-brand: #0369a1; --ab-brand-hover: #0284c7; --ab-brand-ink: #082f49; --ab-brand-soft: rgba(3, 105, 161, 0.12); }
body[data-biz-type="electronics"] { --ab-brand: #0e7490; --ab-brand-hover: #0891b2; --ab-brand-ink: #083344; --ab-brand-soft: rgba(14, 116, 144, 0.12); }
body[data-biz-type="fashion"] { --ab-brand: #be185d; --ab-brand-hover: #db2777; --ab-brand-ink: #500724; --ab-brand-soft: rgba(190, 24, 93, 0.12); }
body[data-biz-type="service"] { --ab-brand: #7c3aed; --ab-brand-hover: #8b5cf6; --ab-brand-ink: #2e1065; --ab-brand-soft: rgba(124, 58, 237, 0.12); }
body[data-biz-type="other"] { --ab-brand: #334155; --ab-brand-hover: #475569; --ab-brand-ink: #0f172a; --ab-brand-soft: rgba(51, 65, 85, 0.12); }

[data-theme="dark"] {
  --ab-ink: #f3f4f6;
  --ab-muted: #9ca3af;
  --ab-line: rgba(255, 255, 255, 0.08);
  --ab-canvas: #0b0f16;
  --ab-surface: #151b26;
  --ab-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --ab-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --ab-brand-soft: color-mix(in srgb, var(--ab-brand) 20%, transparent);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

html { -webkit-tap-highlight-color: transparent; }

body {
  margin: 0;
  font-family: var(--ab-font);
  color: var(--ab-ink);
  background:
    radial-gradient(1200px 420px at 0% -10%, color-mix(in srgb, var(--ab-brand) 14%, transparent), transparent 55%),
    var(--ab-canvas);
  letter-spacing: -0.018em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--ab-brand); text-decoration: none; }
a:hover { color: var(--ab-brand-hover); }

.ab-app {
  min-height: 100vh;
  display: flex;
}

.ab-sidebar {
  width: var(--ab-sidebar);
  background: color-mix(in srgb, var(--ab-surface) 88%, transparent);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--ab-line);
  position: sticky;
  top: 0;
  height: 100vh;
  display: none;
  flex-direction: column;
  padding: 1.2rem 0.9rem 0.95rem;
}

.ab-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0.55rem 1.1rem;
  color: var(--ab-ink);
}

.ab-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--ab-brand), var(--ab-brand-hover));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--ab-brand) 35%, transparent);
}

.ab-brand small,
.ab-user-chip small {
  display: block;
  color: var(--ab-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.ab-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: auto;
  flex: 1;
  padding-right: 0.15rem;
}

.ab-nav-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-muted);
  padding: 0 0.8rem 0.35rem;
}

.ab-nav a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.85rem;
  border-radius: 14px;
  color: var(--ab-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.ab-nav a i { font-size: 1.05rem; }

.ab-nav a:hover {
  background: color-mix(in srgb, var(--ab-brand-soft) 55%, transparent);
  color: var(--ab-ink);
}

.ab-nav a.active {
  background: var(--ab-brand);
  color: #fff;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--ab-brand) 28%, transparent);
}

.ab-sidebar-foot { padding: 0.75rem 0.4rem 0.2rem; }

.ab-user-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.55rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ab-canvas) 70%, var(--ab-surface));
}

.ab-user-chip strong,
.ab-topbar-identity .fw-semibold {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

.ab-avatar {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--ab-brand);
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.ab-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.ab-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--ab-canvas) 72%, transparent);
  backdrop-filter: blur(22px) saturate(1.3);
  border-bottom: 1px solid transparent;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.ab-topbar-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--ab-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.ab-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ab-type-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  background: var(--ab-brand-soft);
  color: var(--ab-brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ab-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 0;
  background: color-mix(in srgb, var(--ab-surface) 80%, transparent);
  box-shadow: inset 0 0 0 1px var(--ab-line);
  color: var(--ab-ink);
  display: inline-grid;
  place-items: center;
}

.ab-icon-btn:hover { background: var(--ab-surface); color: var(--ab-brand); }

.ab-content {
  padding: 0.35rem 1rem calc(6.2rem + env(safe-area-inset-bottom));
}

.ab-page-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.85rem;
  margin-bottom: 1.05rem;
}

.ab-page-title {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}

.ab-page-sub {
  margin: 0.28rem 0 0;
  color: var(--ab-muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.ab-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ab-card {
  background: var(--ab-surface);
  border: 0;
  border-radius: var(--ab-radius);
  box-shadow: var(--ab-shadow-sm);
}

.ab-metric {
  padding: 0.85rem 0.9rem 0.95rem;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.ab-metric .label {
  color: var(--ab-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ab-metric .value {
  font-size: 1.18rem;
  font-weight: 800;
  margin-top: 0.32rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-metric-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.ab-section { margin-bottom: 1.25rem; }

.ab-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 0.15rem 0.55rem;
}

.ab-section-head h2 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-muted);
  margin: 0;
}

.ab-section-head a { font-size: 0.8rem; font-weight: 700; }

.ab-seg {
  display: flex;
  gap: 0.2rem;
  background: color-mix(in srgb, var(--ab-surface) 70%, transparent);
  box-shadow: inset 0 0 0 1px var(--ab-line);
  padding: 0.22rem;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.ab-seg a {
  flex: 1;
  text-align: center;
  padding: 0.48rem 0.35rem;
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ab-muted);
  min-height: 36px;
  display: grid;
  place-items: center;
}

.ab-seg a.is-on {
  background: var(--ab-surface);
  color: var(--ab-ink);
  box-shadow: var(--ab-shadow-sm);
}

.ab-empty {
  padding: 2.4rem 1.1rem;
  text-align: center;
  color: var(--ab-muted);
  font-weight: 500;
}

.ab-empty i {
  font-size: 1.7rem;
  color: var(--ab-brand);
  display: block;
  margin-bottom: 0.55rem;
}

.ab-table-wrap { overflow: auto; border-radius: var(--ab-radius); }

.ab-table { width: 100%; margin: 0; }

.ab-table th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ab-muted);
  font-weight: 800;
  border-bottom: 1px solid var(--ab-line);
  background: transparent;
  padding: 0.9rem 1.05rem;
}

.ab-table td {
  vertical-align: middle;
  border-bottom: 1px solid var(--ab-line);
  color: var(--ab-ink);
  padding: 0.95rem 1.05rem;
}

.ab-table tbody tr:last-child td { border-bottom: 0; }

.ab-table tbody tr:hover { background: color-mix(in srgb, var(--ab-brand-soft) 45%, transparent); }

.ab-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.ab-feed {
  background: var(--ab-surface);
  border: 0;
  border-radius: var(--ab-radius);
  box-shadow: var(--ab-shadow-sm);
  overflow: hidden;
}

.ab-feed-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.62rem 0.85rem;
  color: inherit;
  text-decoration: none;
  border: 0;
}

.ab-feed-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 1px;
  background: var(--ab-line);
}

.ab-feed-item:last-child { border-bottom: 0; }

a.ab-feed-item:active,
a.ab-feed-item:hover {
  color: inherit;
  background: color-mix(in srgb, var(--ab-brand-soft) 42%, var(--ab-surface));
}

.ab-feed-avatar,
.ab-feed-icon,
.ab-feed-photo {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.82rem;
  background: var(--ab-brand-soft);
  color: var(--ab-brand);
}

.ab-feed-photo {
  object-fit: cover;
  background: var(--ab-canvas);
}

.ab-feed-icon { font-size: 1rem; }

.ab-feed-title {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ab-feed-value {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.ab-feed-copy {
  flex: 1;
  min-width: 0;
}

.ab-feed-sub {
  margin-top: 0.16rem;
  color: var(--ab-muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ab-feed-aside {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  text-align: right;
}

.ab-feed-meta {
  color: var(--ab-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ab-feed-meta.is-paid,
.ab-feed-meta.is-in {
  color: var(--ab-success);
}

.ab-feed-meta.is-due,
.ab-feed-meta.is-out,
.ab-feed-meta.is-warn {
  color: var(--ab-warning);
}

.ab-feed-aside > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.16rem;
}

.ab-feed-item .bi-chevron-right {
  color: color-mix(in srgb, var(--ab-muted) 70%, transparent);
  font-size: 0.78rem;
}

.ab-feed .ab-empty {
  border: 0;
  box-shadow: none;
  padding: 1.8rem 1rem;
}

.ab-card .ab-feed {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.ab-card .ab-feed-item:not(:last-child)::after { left: 1rem; }

.ab-items-editor {
  display: grid;
  gap: 0.7rem;
}

.ab-items-row {
  background: var(--ab-canvas);
  border: 1px solid var(--ab-line);
  border-radius: 14px;
  padding: 0.85rem;
}

.ab-items-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ab-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ab-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.55rem;
  margin-bottom: 0.95rem;
}

.ab-toolbar .form-control,
.ab-toolbar .form-select {
  min-width: min(100%, 160px);
  flex: 1;
  background-color: var(--ab-canvas);
  border: 0;
  border-radius: 14px;
}

.ab-bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--ab-surface) 88%, transparent);
  backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid var(--ab-line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 30;
  padding: 0.35rem 0.2rem;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

.ab-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  color: var(--ab-muted);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.28rem 0.1rem 0.18rem;
  min-height: 52px;
  justify-content: center;
}

.ab-bottom-nav a i {
  font-size: 1.18rem;
  width: 2.4rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.ab-bottom-nav a.active,
.ab-bottom-nav a:hover { color: var(--ab-brand); }

.ab-bottom-nav a.active i {
  background: var(--ab-brand-soft);
}

.btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 0.875rem;
}

.btn-brand {
  background: var(--ab-brand);
  border-color: var(--ab-brand);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--ab-brand) 26%, transparent);
}

.btn-brand:hover {
  background: var(--ab-brand-hover);
  border-color: var(--ab-brand-hover);
  color: #fff;
}

.btn-outline-secondary {
  border-color: transparent;
  background: var(--ab-surface);
  color: var(--ab-ink);
  box-shadow: inset 0 0 0 1px var(--ab-line);
}

.btn-outline-secondary:hover {
  background: var(--ab-canvas);
  color: var(--ab-ink);
  border-color: transparent;
}

.form-label { font-weight: 700; font-size: 0.8rem; color: var(--ab-muted); letter-spacing: 0.02em; }

.form-control, .form-select {
  border-radius: 14px;
  border: 0;
  box-shadow: inset 0 0 0 1px var(--ab-line);
  background-color: var(--ab-canvas);
  color: var(--ab-ink);
  padding: 0.58rem 0.9rem;
  min-height: 44px;
  font-weight: 600;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--ab-canvas);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.8 6 6.2 10.5 1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
  padding-right: 2.4rem;
  --bs-form-select-bg-img: none;
}
.form-select::-ms-expand { display: none; }

.form-select-sm,
.form-control-sm {
  min-height: 36px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  font-size: 0.82rem;
  border-radius: 12px;
}
.form-select-sm {
  padding-right: 2.1rem;
  background-position: right 0.7rem center;
}

.form-control:focus, .form-select:focus {
  border-color: transparent;
  box-shadow: inset 0 0 0 1.5px var(--ab-brand), 0 0 0 4px var(--ab-brand-soft);
  background-color: var(--ab-surface);
}

.ab-select {
  position: relative;
  width: 100%;
}
.ab-select.is-inline {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.ab-toolbar .ab-select {
  flex: 1;
  min-width: min(100%, 160px);
}
.ab-select > select.form-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  pointer-events: none;
}
.ab-select-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  border: 0;
  border-radius: 14px;
  min-height: 44px;
  padding: 0.58rem 2.4rem 0.58rem 0.9rem;
  font: inherit;
  font-weight: 600;
  color: var(--ab-ink);
  background-color: var(--ab-canvas);
  box-shadow: inset 0 0 0 1px var(--ab-line);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.8 6 6.2 10.5 1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
  cursor: pointer;
}
.ab-select.is-sm .ab-select-toggle {
  min-height: 36px;
  padding: 0.35rem 2.1rem 0.35rem 0.8rem;
  font-size: 0.82rem;
  border-radius: 12px;
  background-position: right 0.7rem center;
}
.ab-select-toggle.is-placeholder { color: var(--ab-muted); }
.ab-select-toggle:hover { background-color: var(--ab-surface); }
.ab-select-toggle:focus,
.ab-select.is-open .ab-select-toggle {
  outline: none;
  background-color: var(--ab-surface);
  box-shadow: inset 0 0 0 1.5px var(--ab-brand), 0 0 0 4px var(--ab-brand-soft);
}
.ab-select.is-open .ab-select-toggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%230f766e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M10.5 6.2 6 1.8 1.5 6.2'/%3E%3C/svg%3E");
}
.ab-select-toggle:disabled { opacity: 0.5; cursor: not-allowed; }
.ab-select.is-open .ab-select-toggle {
  border-radius: 14px 14px 0 0;
}
.ab-select.is-open.is-up .ab-select-toggle {
  border-radius: 0 0 14px 14px;
}
.ab-select.is-sm.is-open .ab-select-toggle { border-radius: 12px 12px 0 0; }
.ab-select.is-sm.is-open.is-up .ab-select-toggle { border-radius: 0 0 12px 12px; }
.ab-select-menu {
  display: flex;
  flex-direction: column;
  padding: 0.4rem;
  border-radius: 0 0 16px 16px;
  background: var(--ab-surface);
  box-shadow: var(--ab-shadow), 0 0 0 1px var(--ab-line);
  overflow: hidden;
}
.ab-select-menu.is-up { border-radius: 16px 16px 0 0; }
.ab-select-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-bottom: 0.3rem;
  padding: 0.4rem 0.65rem;
  border-radius: 12px;
  background: var(--ab-canvas);
  box-shadow: inset 0 0 0 1px var(--ab-line);
}
.ab-select-search i { color: var(--ab-muted); font-size: 0.9rem; }
.ab-select-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ab-ink);
  font: inherit;
  font-weight: 600;
  outline: none;
}
.ab-select-search input::placeholder { color: var(--ab-muted); font-weight: 600; }
.ab-select-list { overflow: auto; min-height: 0; }
.ab-select-empty {
  padding: 0.7rem 0.75rem;
  color: var(--ab-muted);
  font-weight: 600;
  font-size: 0.85rem;
}
.ab-select-group {
  padding: 0.45rem 0.75rem 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-muted);
}
.ab-select-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 0.58rem 0.75rem;
  text-align: left;
  font: inherit;
  font-weight: 600;
  color: var(--ab-ink);
  cursor: pointer;
}
.ab-select-option:hover,
.ab-select-option.is-active {
  background: var(--ab-brand-soft);
  color: var(--ab-brand);
}
.ab-select-option.is-selected {
  background: var(--ab-brand);
  color: #fff;
}
.ab-select-option.is-selected:hover,
.ab-select-option.is-selected.is-active {
  background: var(--ab-brand-hover);
  color: #fff;
}
.ab-select-option[hidden],
.ab-select-group[hidden],
.ab-select-empty[hidden] { display: none !important; }
.ab-select-option i { font-size: 0.95rem; }
[data-theme="dark"] .ab-select-toggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%239ca3af' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.8 6 6.2 10.5 1.8'/%3E%3C/svg%3E");
}
.ab-pos-customer .ab-select-toggle { padding-left: 2.2rem; }

.form-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 42px;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  white-space: nowrap;
}

.form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  margin-left: 0;
  float: none;
  position: static;
  flex-shrink: 0;
  border: 1.5px solid color-mix(in srgb, var(--ab-muted) 35%, transparent);
  background-color: var(--ab-surface);
  background-image: none;
  box-shadow: none;
  cursor: pointer;
  accent-color: var(--ab-brand);
}

.form-check-input[type="checkbox"] { border-radius: 6px; }
.form-check-input[type="radio"] { border-radius: 50%; }

.form-check-input:checked {
  background-color: var(--ab-brand);
  border-color: var(--ab-brand);
}

.form-check-input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.2' d='M3.5 8.5 6.5 11.5 12.5 4.5'/%3E%3C/svg%3E");
  background-size: 0.72rem;
  background-position: center;
  background-repeat: no-repeat;
}

.form-check-input[type="radio"]:checked {
  background-color: var(--ab-surface);
  background-image: radial-gradient(circle, var(--ab-brand) 38%, transparent 42%);
}

.form-check-input:focus {
  box-shadow: 0 0 0 4px var(--ab-brand-soft);
  border-color: var(--ab-brand);
}

.form-check-label { font-weight: 600; color: var(--ab-ink); cursor: pointer; }

.ab-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--ab-line);
  margin: 0;
  cursor: pointer;
}

.ab-check-row:last-child { border-bottom: 0; }
.ab-check-row span { font-weight: 600; font-size: 0.92rem; }

.ab-switch {
  position: relative;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}

.ab-switch input {
  appearance: none;
  width: 44px;
  height: 26px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: #d4d8de;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ab-switch input:checked { background: var(--ab-brand); }
.ab-switch input:disabled { opacity: 0.45; cursor: not-allowed; }

.ab-switch input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.ab-switch input:checked::after { transform: translateX(18px); }

[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%239ca3af' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.8 6 6.2 10.5 1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
}
[data-theme="dark"] .ab-switch input { background: #3a4150; }
[data-theme="dark"] .ab-switch input:checked { background: var(--ab-brand); }

.pagination { gap: 0.28rem; }
.page-link {
  border: 0;
  border-radius: 12px !important;
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  color: var(--ab-ink);
  background: var(--ab-surface);
  box-shadow: var(--ab-shadow-sm);
}
.page-item.active .page-link {
  background: var(--ab-brand);
  color: #fff;
}

.ab-guest {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--ab-brand) 22%, transparent), transparent 30%),
    radial-gradient(circle at left bottom, rgba(14, 116, 144, 0.12), transparent 32%),
    var(--ab-canvas);
}

.ab-auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--ab-surface);
  border: 0;
  border-radius: 32px;
  box-shadow: var(--ab-shadow);
  padding: 2.1rem 1.55rem;
}

.ab-auth-card:has(.ab-type-grid) {
  max-width: 720px;
}

.ab-auth-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.ab-alert { border: 0; border-radius: 14px; }

.ab-offline-chip,
.ab-sync-chip {
  display: none;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
}

body.is-offline .ab-offline-chip { display: inline-flex; background: #fee2e2; color: #991b1b; }

.ab-progress-steps { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.ab-progress-steps span {
  width: 28px; height: 6px; border-radius: 99px; background: var(--ab-line);
}
.ab-progress-steps span.done,
.ab-progress-steps span.current { background: var(--ab-brand); }

.ab-type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.ab-type-card {
  text-align: left;
  border: 1px solid var(--ab-line);
  background: var(--ab-surface);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--ab-ink);
}

.ab-type-card strong { display: block; margin-bottom: 0.2rem; }
.ab-type-card span { display: block; color: var(--ab-muted); font-size: 0.8rem; line-height: 1.35; }
.ab-type-card.is-selected {
  border-color: var(--ab-brand);
  box-shadow: 0 0 0 4px var(--ab-brand-soft);
  background: color-mix(in srgb, var(--ab-brand-soft) 45%, var(--ab-surface));
}

.ab-form-section { margin-bottom: 1.35rem; }
.ab-form-section h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ab-muted);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.ab-more-tile {
  color: inherit;
  height: 100%;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ab-more-tile:hover { color: inherit; transform: translateY(-2px); }
.ab-more-tile i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ab-brand-soft);
  color: var(--ab-brand);
  font-size: 1.2rem;
}

@media (min-width: 640px) {
  .ab-type-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
  .ab-sidebar { display: flex; }
  .ab-bottom-nav { display: none; }
  .ab-content { padding: 1rem 1.5rem 2rem; }
  .ab-page-title { font-size: 1.55rem; }
  .ab-type-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ab-metric-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  .ab-desktop-only { display: none !important; }
  .ab-topbar {
    padding: 0.55rem 0.9rem 0.2rem;
    background: transparent;
  }
  .ab-content { padding: 0.15rem 0.9rem calc(6.4rem + env(safe-area-inset-bottom)); }
  .ab-page-head { margin-bottom: 0.7rem; gap: 0.55rem; }
  .ab-page-title { font-size: 1.32rem; }
  .ab-page-actions { width: 100%; }
  .ab-page-actions .btn { flex: 1 1 auto; min-height: 36px; font-size: 0.8rem; border-radius: 12px; }
  .ab-toolbar {
    flex-direction: column;
    padding: 0.5rem;
  }
  .ab-toolbar .form-control,
  .ab-toolbar .form-select,
  .ab-toolbar .ab-select,
  .ab-toolbar .btn {
    width: 100%;
    max-width: none !important;
    min-width: 0 !important;
  }
  .ab-table-wrap { overflow: visible; }
  .ab-metric { padding: 0.75rem 0.75rem 0.8rem; }
  .ab-metric .value { font-size: 1.02rem; }
  .ab-metric-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 0 0 1rem;
    padding: 0;
    overflow: visible;
  }
  .ab-feed-item { min-height: 52px; padding: 0.55rem 0.8rem; }
}

@media (min-width: 992px) {
  .ab-mobile-only { display: none !important; }
}

.ab-pos-body { background: var(--ab-canvas); }
.ab-pos {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}
.ab-pos-top {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.75rem;
  position: sticky;
  top: 0;
  background: var(--ab-canvas);
  z-index: 5;
}
.ab-pos-back {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ab-surface);
  border: 1px solid var(--ab-line);
  color: var(--ab-ink);
}
.ab-pos-cats {
  display: flex;
  gap: 0.4rem;
  overflow: auto;
  padding: 0 0.75rem 0.6rem;
}
.ab-chip {
  border: 1px solid var(--ab-line);
  background: var(--ab-surface);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ab-ink);
  white-space: nowrap;
}
.ab-chip.is-on { background: var(--ab-brand); color: #fff; border-color: var(--ab-brand); }
.ab-pos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.75rem;
}
.ab-pos-card {
  text-align: left;
  border: 0;
  background: var(--ab-surface);
  border-radius: 18px;
  padding: 0.9rem;
  color: var(--ab-ink);
  min-height: 92px;
  box-shadow: var(--ab-shadow-sm);
}
.ab-pos-card-name { font-weight: 800; }
.ab-pos-card-meta { color: var(--ab-muted); font-size: 0.8rem; margin-top: 0.3rem; }
.ab-pos-cart {
  background: var(--ab-surface);
  border-top: 1px solid var(--ab-line);
  padding: 1rem;
}
.ab-pos-cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; gap: 0.6rem; }
.ab-pos-handle,
.ab-pos-cart-close,
.ab-pos-dock,
.ab-pos-scrim { display: none; }
.ab-pos-lines { max-height: 38vh; overflow: auto; }
.ab-pos-lines-empty {
  padding: 1.2rem 0.2rem;
  color: var(--ab-muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}
.ab-pos-line {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--ab-line);
}
.ab-pos-line:last-child { border-bottom: 0; }
.ab-pos-line-thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--ab-brand-soft);
  color: var(--ab-brand);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ab-pos-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ab-pos-line-main { min-width: 0; }
.ab-pos-line-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: baseline;
}
.ab-pos-line-name {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ab-pos-line-top strong { font-variant-numeric: tabular-nums; font-size: 0.88rem; }
.ab-pos-line-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.38rem;
}
.ab-pos-line-price { color: var(--ab-muted); font-size: 0.75rem; font-weight: 600; }
.ab-qty { display: flex; align-items: center; gap: 0.28rem; }
.ab-qty span { min-width: 1.1rem; text-align: center; font-weight: 800; font-size: 0.84rem; }
.ab-qty button {
  width: 28px; height: 28px; border-radius: 9px;
  border: 0; background: var(--ab-canvas); color: var(--ab-ink); font-weight: 700;
}
.ab-pos-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ab-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ab-pos-field .form-select,
.ab-pos-field .form-control { text-transform: none; letter-spacing: 0; font-weight: 600; color: var(--ab-ink); min-height: 42px; }
.ab-pos-customer { position: relative; }
.ab-pos-customer i {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  color: var(--ab-muted);
}
.ab-pos-customer .form-select { padding-left: 2.2rem; }
.ab-pos-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.ab-pos-payfields { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 0.55rem; }
.ab-pos-totals {
  padding: 0.55rem 0.15rem;
  margin: 0.15rem 0 0.55rem;
  border-top: 1px solid var(--ab-line);
}
.ab-pos-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.28rem 0;
  margin: 0;
  font-size: 0.84rem;
  color: var(--ab-muted);
  font-weight: 600;
}
.ab-pos-total-row strong { color: var(--ab-ink); }
.ab-pos-total-row .form-control {
  max-width: 96px;
  min-height: 36px;
  text-align: right;
  padding: 0.3rem 0.55rem;
}
.ab-pos-note {
  margin: 0 0 0.75rem;
  color: var(--ab-muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.ab-pos-note summary { cursor: pointer; list-style: none; padding: 0.2rem 0; }
.ab-pos-note summary::-webkit-details-marker { display: none; }
.ab-pos-note[open] summary { margin-bottom: 0.4rem; }
.ab-pos-paybar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.ab-pos-paybar .btn-brand { min-height: 48px; }
.ab-pos-paybar #hold-btn { min-width: 76px; }

.ab-landing { background: var(--ab-canvas); color: var(--ab-ink); }
.ab-hero {
  padding: 4rem 1.25rem 3rem;
  background:
    radial-gradient(circle at top right, rgba(15,118,110,.18), transparent 32%),
    var(--ab-canvas);
}
.ab-hero-inner { max-width: 1080px; margin: 0 auto; }
.ab-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.04em; }
.ab-feature-grid, .ab-landing-grid { display: grid; gap: 0.9rem; }

.ab-land {
  --ab-ink: #0b1220;
  --ab-muted: #5c6573;
  --ab-line: rgba(11, 18, 32, 0.08);
  --ab-canvas: #f6f7f9;
  --ab-surface: #ffffff;
  --ab-brand: #0f766e;
  --ab-brand-hover: #0d9488;
  --ab-brand-ink: #042f2e;
  min-height: 100vh;
  padding-bottom: 4.75rem;
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(15, 118, 110, 0.12), transparent 58%),
    radial-gradient(640px 360px at 100% 0%, rgba(15, 23, 42, 0.05), transparent 46%),
    var(--ab-canvas);
  color: var(--ab-ink);
  font-family: var(--ab-font);
}
.ab-land-skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 50;
  background: var(--ab-ink);
  color: #fff;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
}
.ab-land-skip:focus { top: 0.75rem; color: #fff; }
.ab-land .ab-brand { color: var(--ab-ink); }
.ab-land .ab-brand-mark { color: #fff; }
.ab-land-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: color-mix(in srgb, var(--ab-canvas) 78%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--ab-line);
}
.ab-land-menu { display: none; position: relative; }
.ab-land-menu-toggle {
  list-style: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--ab-line);
  background: var(--ab-surface);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.ab-land-menu-toggle::-webkit-details-marker { display: none; }
.ab-land-menu[open] .ab-land-links {
  display: grid;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 220px;
  padding: 0.75rem;
  background: var(--ab-surface);
  border: 1px solid var(--ab-line);
  border-radius: 16px;
  box-shadow: var(--ab-shadow);
}
.ab-land-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 650;
  font-size: 0.92rem;
}
.ab-land-links a { color: var(--ab-muted); text-decoration: none; }
.ab-land-links a:hover { color: var(--ab-ink); }
.ab-land-links form { margin: 0; }
.ab-land .btn-brand {
  background: var(--ab-brand);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 22px rgba(15, 118, 110, 0.22);
}
.ab-land .btn-brand:hover { background: var(--ab-brand-hover); color: #fff; }
.ab-land-ghost {
  border: 1px solid var(--ab-line);
  color: var(--ab-ink);
  background: var(--ab-surface);
}
.ab-land-ghost:hover { background: #eef1f4; color: var(--ab-ink); }
.ab-land-flash {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem 0;
  color: var(--ab-brand);
  font-weight: 700;
}
.ab-land-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.6rem 1.25rem 1.2rem;
  display: grid;
  gap: 2.2rem;
}
.ab-land-hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin: 0.45rem 0 0.9rem;
}
.ab-land-hero p {
  color: var(--ab-muted);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0;
}
.ab-land-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.55rem;
}
.ab-land-actions form { margin: 0; }
.ab-land-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  color: var(--ab-muted);
  font-size: 0.88rem;
  font-weight: 650;
}
.ab-land-points i { color: var(--ab-brand); margin-right: 0.25rem; }
.ab-land-preview { display: grid; place-items: center; }
.ab-land-stage {
  width: min(100%, 520px);
  position: relative;
  min-height: 320px;
}
.ab-land-dash {
  background: var(--ab-surface);
  border: 1px solid var(--ab-line);
  border-radius: 24px;
  box-shadow: var(--ab-shadow);
  padding: 1.1rem 1.15rem 1.2rem;
}
.ab-land-dash-bar,
.ab-land-dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.ab-land-dash-bar { font-weight: 800; padding-bottom: 0.85rem; }
.ab-land-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.ab-land-metrics div {
  background: var(--ab-canvas);
  border-radius: 14px;
  padding: 0.7rem 0.75rem;
}
.ab-land-metrics em {
  display: block;
  font-style: normal;
  color: var(--ab-muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.ab-land-metrics strong { font-size: 0.95rem; }
.ab-land-dash-row {
  padding: 0.65rem 0;
  border-top: 1px solid var(--ab-line);
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--ab-muted);
}
.ab-land-dash-row .is-ok { color: var(--ab-success); }
.ab-land-device {
  width: min(100%, 230px);
  background: var(--ab-ink);
  color: #f8fafc;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(11, 18, 32, 0.28);
  padding: 0.95rem 0.85rem 0.9rem;
  position: absolute;
  right: 0;
  bottom: -1.4rem;
}
.ab-land-notch {
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 0.7rem;
}
.ab-land-device-bar,
.ab-land-device-row,
.ab-land-device-pay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}
.ab-land-device-bar { padding: 0.1rem 0.15rem 0.7rem; font-weight: 800; font-size: 0.82rem; }
.ab-land-device-row {
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 0.35rem;
  font-weight: 650;
  font-size: 0.78rem;
}
.ab-land-device-pay {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.72rem;
  font-weight: 650;
  color: rgba(248, 250, 252, 0.7);
}
.ab-land-device-cta {
  background: #2dd4bf;
  color: #042f2e;
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
  font-weight: 800;
}
.ab-land-strip {
  max-width: 1120px;
  margin: 2.2rem auto 0;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.ab-land-strip span {
  border: 1px solid var(--ab-line);
  background: var(--ab-surface);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ab-muted);
}
.ab-land-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.25rem 0.5rem;
}
.ab-land-section-end { padding-bottom: 1rem; }
.ab-land-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ab-brand);
  margin-bottom: 0.45rem;
}
.ab-land-head h2,
.ab-land-cta h2 {
  font-weight: 800;
  letter-spacing: -0.045em;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
  margin: 0 0 0.75rem;
  max-width: 11em;
}
.ab-land-head.is-wide h2 { max-width: 16em; }
.ab-land-head p {
  color: var(--ab-muted);
  max-width: 40rem;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.6;
}
.ab-land-split,
.ab-land-features,
.ab-land-who,
.ab-land-steps,
.ab-land-quotes {
  display: grid;
  gap: 0.85rem;
}
.ab-land-split article,
.ab-land-who article,
.ab-land-steps article,
.ab-land-quotes figure {
  background: var(--ab-surface);
  border: 1px solid var(--ab-line);
  border-radius: 22px;
  padding: 1.2rem 1.15rem 1.25rem;
}
.ab-land-split h3,
.ab-land-who h3,
.ab-land-steps h3,
.ab-land-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
}
.ab-land-split ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ab-muted);
  font-weight: 600;
  line-height: 1.7;
}
.ab-land-split .is-accent {
  border-color: color-mix(in srgb, var(--ab-brand) 28%, var(--ab-line));
  background: color-mix(in srgb, var(--ab-brand) 6%, var(--ab-surface));
}
.ab-land-card {
  background: var(--ab-surface);
  border: 1px solid var(--ab-line);
  border-radius: 22px;
  padding: 1.2rem 1.15rem 1.25rem;
}
.ab-land-card p,
.ab-land-who p,
.ab-land-steps p {
  color: var(--ab-muted);
  margin: 0;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.55;
}
.ab-land-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ab-brand-soft);
  color: var(--ab-brand);
  margin-bottom: 0.75rem;
}
.ab-land-who i, .ab-land-steps span {
  color: var(--ab-brand);
  font-weight: 800;
}
.ab-land-who i { font-size: 1.2rem; display: block; margin-bottom: 0.65rem; }
.ab-land-steps span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
}
.ab-land-quotes blockquote {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.5;
  font-weight: 650;
}
.ab-land-quotes figcaption { color: var(--ab-muted); font-size: 0.82rem; font-weight: 700; }
.ab-land-cta {
  display: grid;
  gap: 1.1rem;
  background: var(--ab-surface);
  border: 1px solid var(--ab-line);
  border-radius: 28px;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--ab-shadow-sm);
}
.ab-land-cta p { color: var(--ab-muted); margin: 0; max-width: 36rem; }
.ab-land-faqs { display: grid; gap: 0.55rem; }
.ab-land-faq {
  background: var(--ab-surface);
  border: 1px solid var(--ab-line);
  border-radius: 16px;
  padding: 0.15rem 1rem;
}
.ab-land-faq summary {
  cursor: pointer;
  font-weight: 750;
  padding: 0.9rem 0;
  list-style: none;
}
.ab-land-faq summary::-webkit-details-marker { display: none; }
.ab-land-faq p {
  margin: 0 0 0.95rem;
  color: var(--ab-muted);
  font-weight: 600;
  line-height: 1.55;
}
.ab-land-foot {
  max-width: 1120px;
  margin: 2.4rem auto 0;
  padding: 2rem 1.25rem 2.6rem;
  display: grid;
  gap: 1.4rem;
  border-top: 1px solid var(--ab-line);
  color: var(--ab-muted);
}
.ab-land-foot-brand p { margin: 0.55rem 0 0; font-weight: 600; max-width: 22rem; }
.ab-land-foot-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.ab-land-foot-cols span {
  display: block;
  color: var(--ab-ink);
  font-weight: 800;
  margin-bottom: 0.45rem;
}
.ab-land-foot-cols a { display: block; color: inherit; font-weight: 650; padding: 0.2rem 0; }
.ab-land-foot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 650;
}
.ab-land-dock {
  position: sticky;
  bottom: 0.7rem;
  z-index: 25;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.7rem 0.65rem 1rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--ab-line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: var(--ab-shadow);
  color: var(--ab-muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.ab-land-dock form { margin: 0; }
@media (max-width: 899.98px) {
  .ab-land-links-desktop { display: none; }
  .ab-land-menu { display: block; }
  .ab-land-device { position: relative; right: auto; bottom: auto; margin: 1rem 0 0 auto; }
}
@media (min-width: 900px) {
  .ab-land { padding-bottom: 0; }
  .ab-land-hero { grid-template-columns: 1.05fr 0.95fr; align-items: center; padding-top: 4.2rem; }
  .ab-land-stage { min-height: 400px; padding-bottom: 2.5rem; }
  .ab-land-split { grid-template-columns: 1fr 1fr; }
  .ab-land-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ab-land-who, .ab-land-quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ab-land-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ab-land-cta { grid-template-columns: 1fr auto; align-items: center; padding: 2rem; }
  .ab-land-cta h2 { max-width: 12em; }
  .ab-land-dock { display: none; }
  .ab-land-foot { grid-template-columns: 1.2fr 1fr; align-items: start; }
  .ab-land-foot-meta { grid-column: 1 / -1; }
}
.ab-demo-banner {
  margin: 0 0 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: var(--ab-brand-soft);
  color: var(--ab-brand);
  font-weight: 700;
  font-size: 0.85rem;
}
.ab-print { background: #fff; color: #111; padding: 24px; max-width: 800px; margin: 0 auto; }
.ab-print h1 { font-size: 1.4rem; }
@media print {
  .ab-no-print { display: none !important; }
  body { background: #fff; }
}

@media (min-width: 992px) {
  .ab-pos { grid-template-columns: 1.4fr 400px; min-height: 100vh; }
  .ab-pos-cart { border-top: 0; border-left: 1px solid var(--ab-line); position: sticky; top: 0; height: 100vh; overflow: auto; }
  .ab-pos-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ab-pos-lines { max-height: none; flex: 1; }
  .ab-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .ab-landing-grid { grid-template-columns: 1.2fr .8fr; align-items: center; }
}

@media (max-width: 991.98px) {
  .ab-pos-body { overflow: hidden; height: 100dvh; }
  .ab-pos {
    height: 100dvh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
  }
  .ab-pos-catalog {
    height: 100dvh;
    overflow-y: auto;
    padding-bottom: 5.9rem;
  }
  .ab-pos-grid { padding-bottom: 1rem; }
  .ab-pos-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    z-index: 38;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }
  .ab-pos.is-cart-open .ab-pos-scrim {
    opacity: 1;
    pointer-events: auto;
  }
  .ab-pos-handle {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 99px;
    background: color-mix(in srgb, var(--ab-muted) 35%, transparent);
    margin: 0.55rem auto 0.15rem;
  }
  .ab-pos-cart-close {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 12px;
    background: var(--ab-canvas);
    color: var(--ab-ink);
    flex-shrink: 0;
  }
  .ab-pos-cart {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    max-height: min(90dvh, 740px);
    padding: 0;
    border: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -18px 50px rgba(15, 23, 42, 0.18);
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(.32, .72, .24, 1);
    display: flex;
    flex-direction: column;
  }
  .ab-pos.is-cart-open .ab-pos-cart { transform: translateY(0); }
  .ab-pos-cart-head {
    padding: 0.15rem 1rem 0.55rem;
    margin: 0;
    flex-shrink: 0;
  }
  .ab-pos-form {
    overflow: auto;
    padding: 0 1rem calc(1rem + env(safe-area-inset-bottom));
    min-height: 0;
  }
  .ab-pos-lines { max-height: 32vh; }
  .ab-pos-paybar {
    position: sticky;
    bottom: 0;
    background: var(--ab-surface);
    padding-top: 0.65rem;
    padding-bottom: 0.15rem;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .ab-pos-dock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 36;
    min-height: 58px;
    padding: 0.7rem 0.9rem 0.7rem 1.05rem;
    border: 0;
    border-radius: 20px;
    background: var(--ab-brand);
    color: #fff;
    box-shadow: 0 14px 32px color-mix(in srgb, var(--ab-brand) 38%, transparent);
    text-align: left;
  }
  .ab-pos-dock:disabled {
    background: var(--ab-surface);
    color: var(--ab-ink);
    box-shadow: var(--ab-shadow);
  }
  .ab-pos-dock:disabled .ab-pos-dock-hint,
  .ab-pos-dock:disabled .ab-pos-dock-total { color: var(--ab-muted); }
  .ab-pos-dock-copy { display: flex; flex-direction: column; min-width: 0; }
  .ab-pos-dock-copy strong { font-size: 0.92rem; letter-spacing: -0.02em; }
  .ab-pos-dock-hint { font-size: 0.72rem; font-weight: 600; opacity: 0.86; }
  .ab-pos-dock-total { font-weight: 800; font-size: 1.02rem; letter-spacing: -0.03em; white-space: nowrap; }
  .ab-pos.is-cart-open .ab-pos-dock {
    opacity: 0;
    pointer-events: none;
  }
  .ab-pos-kitchen .ab-pos-dock {
    background: var(--ab-brand);
    color: #fff;
  }
  .ab-pos-kitchen .ab-pos-dock:disabled {
    background: #2a1812;
    color: #fed7aa;
  }
}

.ab-pos-search-wrap { position: relative; flex: 1; }
.ab-pos-search-wrap i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--ab-muted); }
.ab-pos-search-wrap .form-control { padding-left: 2rem; }
.ab-pos-card.has-media { padding: 0; overflow: hidden; display: flex; flex-direction: column; min-height: 148px; }
.ab-pos-thumb {
  height: 86px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--ab-brand-soft), transparent);
  color: var(--ab-brand);
  font-size: 1.6rem;
}
.ab-pos-thumb img { width: 100%; height: 86px; object-fit: cover; }
.ab-pos-card-body { padding: 0.7rem 0.8rem 0.85rem; display: block; }
.ab-pos-sheet {
  position: fixed; inset: 0; background: rgba(15, 23, 42, .45);
  display: grid; place-items: end center; z-index: 50; padding: 1rem;
}
.ab-pos-sheet-card {
  background: var(--ab-surface); border-radius: 20px 20px 16px 16px;
  width: min(520px, 100%); padding: 1.1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.ab-variant-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .6rem; }
.ab-variant-chip {
  border: 1px solid var(--ab-line); background: var(--ab-canvas);
  border-radius: 14px; padding: .8rem; text-align: left; color: var(--ab-ink);
}
.ab-variant-chip strong { display: block; }
.ab-pos-kitchen {
  --ab-canvas: #140c09;
  --ab-surface: #1f1410;
  --ab-line: rgba(255, 237, 213, .12);
  --ab-ink: #fff7ed;
  --ab-muted: #d6b9a4;
}
.ab-pos-kitchen .ab-pos-card {
  background: #261710;
  border-color: rgba(234, 88, 12, .25);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.ab-pos-kitchen .ab-pos-cart {
  background: linear-gradient(180deg, #24150f, #1a100c);
}
.ab-pos-kitchen .ab-chip { background: #2a1812; color: #fed7aa; border-color: transparent; }
.ab-pos-kitchen .ab-chip.is-on { background: var(--ab-brand); color: #fff; }
.ab-pos-kitchen .form-control, .ab-pos-kitchen .form-select {
  background-color: #1a100c; color: #fff7ed; border-color: rgba(253, 186, 116, .2);
}
.ab-pos-kitchen .btn-close { filter: invert(1); }
.ab-pos-kitchen .ab-pos-back { background: #2a1812; color: #fed7aa; border-color: transparent; }
.ab-print-body { background: #e2e8f0; }
.ab-print-doc { background: #fff; color: #111; margin: 12px auto; padding: 16px; }
.ab-print-doc-label { font-size: .75rem; color: #64748b; margin-bottom: .5rem; }
.ab-paper-a4 { max-width: 720px; padding: 28px; }
.ab-paper-80mm { width: 80mm; padding: 8px; font-size: 12px; }
.ab-paper-58mm { width: 58mm; padding: 6px; font-size: 11px; }
.ab-sticker-sheet {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ab-sticker {
  width: 50mm;
  height: 30mm;
  padding: 3mm 3.5mm;
  border: 1px solid #d7dee7;
  border-radius: 6px;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  page-break-inside: avoid;
  overflow: hidden;
}
.ab-sticker.is-small { width: 38mm; height: 25mm; padding: 2mm 2.5mm; }
.ab-sticker.is-large { width: 70mm; height: 42mm; padding: 4mm; }
.ab-sticker-top {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  min-height: 0;
}
.ab-sticker-photo {
  width: 11mm;
  height: 11mm;
  border-radius: 3px;
  object-fit: cover;
  background: #f3f4f6;
  flex-shrink: 0;
}
.ab-sticker.is-large .ab-sticker-photo { width: 14mm; height: 14mm; }
.ab-sticker-copy { min-width: 0; flex: 1; }
.ab-sticker-name {
  font-weight: 800;
  font-size: 8.5px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ab-sticker-variant { font-size: 7px; color: #64748b; }
.ab-sticker-price { font-size: 11px; font-weight: 800; margin-top: 1px; }
.ab-sticker-biz { font-size: 6.5px; color: #94a3b8; margin-top: 1px; }
.ab-sticker .ab-barcode { width: 100%; height: 9mm; display: block; }
.ab-sticker.is-large .ab-barcode { height: 13mm; }
.ab-thumb {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--ab-canvas);
  flex-shrink: 0;
}
.ab-product-hero {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--ab-canvas);
  margin-bottom: 1rem;
}
.ab-photo-picker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.ab-photo-picker img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--ab-canvas);
}
.ab-doc-brand { text-align: center; margin-bottom: 8px; }
.ab-doc-brand h1 { font-size: 1.05rem; margin: 0; }
.ab-doc-brand p { margin: 0; font-size: .78rem; color: #475569; }
.ab-doc-logo { max-height: 48px; margin-bottom: 6px; }
.ab-doc-token { text-align: center; font-size: 1.4rem; font-weight: 800; letter-spacing: .08em; padding: .4rem 0; }
.ab-doc-meta { display: grid; gap: 2px; margin: 8px 0; font-size: .8rem; }
.ab-doc-meta span { color: #64748b; margin-right: .35rem; }
.ab-doc-items { width: 100%; border-collapse: collapse; font-size: .8rem; }
.ab-doc-items th, .ab-doc-items td { border-bottom: 1px dashed #cbd5e1; padding: 4px 0; }
.ab-doc-items .num { text-align: right; }
.ab-doc-items .muted { color: #64748b; font-size: .7rem; }
.ab-doc-totals { margin-top: 8px; }
.ab-doc-total { display: flex; justify-content: space-between; font-size: .82rem; }
.ab-doc-total.is-strong { font-weight: 800; border-top: 1px solid #111; margin-top: 4px; padding-top: 4px; }
.ab-doc-foot, .ab-doc-terms { font-size: .75rem; color: #475569; margin-top: 10px; }
.ab-preview-frame { max-height: 70vh; overflow: auto; }
.ab-label { text-align: center; }
.ab-label-name { font-weight: 800; }
.ab-label-price { font-size: 1.1rem; margin-top: 4px; }
.ab-label-code { font-family: ui-monospace, monospace; font-size: .75rem; }
.ab-label img, .ab-label-photo { max-height: 28px; display: block; margin: 0 auto 4px; }
@media print {
  .ab-print-body { background: #fff; }
  .ab-print-doc { box-shadow: none; page-break-after: always; }
  .ab-sidebar, .ab-topbar, .ab-bottom-nav, .ab-no-print, .ab-page-head, .ab-alert { display: none !important; }
  .ab-content { padding: 0 !important; }
  .ab-app { display: block; min-height: 0; background: #fff; }
  body { background: #fff !important; }
  .ab-sticker { box-shadow: none; }
}

.ab-statement {
  min-height: 100vh;
  background: var(--ab-canvas);
  font-family: var(--ab-font);
  color: var(--ab-ink);
}
.ab-statement-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, var(--ab-canvas) 88%, transparent);
  backdrop-filter: blur(12px);
}
.ab-statement-doc {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  background: var(--ab-surface);
  border-radius: 24px;
  box-shadow: var(--ab-shadow);
  padding: 1.35rem 1.25rem 1.5rem;
}
.ab-statement-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ab-line);
}
.ab-statement-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
}
.ab-statement-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--ab-canvas);
}
.ab-statement-brand strong {
  display: block;
  font-size: 1rem;
}
.ab-statement-brand div div {
  color: var(--ab-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}
.ab-statement-meta { text-align: right; }
.ab-statement-date {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ab-muted);
}
.ab-statement-party {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  padding: 1.15rem 0 1.05rem;
}
.ab-statement-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-muted);
  margin-bottom: 0.2rem;
}
.ab-statement-party h1 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.03em;
}
.ab-statement-contact {
  margin-top: 0.2rem;
  color: var(--ab-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.ab-statement-due {
  text-align: right;
  min-width: 8rem;
}
.ab-statement-due-value {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ab-danger);
}
.ab-statement-due.is-settled .ab-statement-due-value { color: var(--ab-success); }
.ab-statement-feed { display: grid; }
.ab-statement-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ab-line);
}
.ab-statement-row-title { font-weight: 700; font-size: 0.92rem; }
.ab-statement-row-sub { color: var(--ab-muted); font-size: 0.75rem; font-weight: 600; margin-top: 0.12rem; }
.ab-statement-row-aside { text-align: right; }
.ab-statement-row-aside .is-due { color: var(--ab-danger); font-weight: 800; }
.ab-statement-row-aside .is-paid { color: var(--ab-success); font-weight: 800; }
.ab-statement-row-bal { color: var(--ab-muted); font-size: 0.72rem; font-weight: 700; margin-top: 0.1rem; }
.ab-statement-table { display: none; }
.ab-statement-foot {
  margin-top: 1.1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--ab-line);
  color: var(--ab-muted);
  font-size: 0.72rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .ab-statement-doc { padding: 1.75rem 1.8rem 1.6rem; }
  .ab-statement-feed { display: none; }
  .ab-statement-table { display: block; }
}
@media print {
  .ab-statement { background: #fff; }
  .ab-statement-toolbar { display: none !important; }
  .ab-statement-doc { box-shadow: none; border-radius: 0; margin: 0; max-width: none; padding: 0; }
  .ab-statement-feed { display: none !important; }
  .ab-statement-table { display: block !important; }
}
