.phone-app {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--neutral-50);
  padding-top: env(safe-area-inset-top, 0px);
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px 10px;
  background: var(--neutral-0);
  border-bottom: 1px solid var(--neutral-200);
}

.mobile-header strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.mobile-header span {
  display: block;
  margin-top: 3px;
  color: var(--neutral-500);
  font-size: 11px;
  font-weight: 800;
}

.mobile-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 14px 14px 92px;
}

.mobile-content.no-bottom-pad {
  padding-bottom: 20px;
}

.mobile-nav {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.mobile-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--neutral-500);
  font-size: 10px;
  font-weight: 900;
}

.mobile-nav button.active {
  background: var(--primary-50);
  color: var(--primary-700);
}

.mobile-nav svg {
  width: 17px;
  height: 17px;
}

.search-box {
  position: relative;
  margin-bottom: 12px;
}

.search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 17px;
  height: 17px;
  color: var(--neutral-500);
  transform: translateY(-50%);
}

.search-box input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  background: var(--neutral-0);
  color: var(--neutral-900);
  outline: 0;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--neutral-700) 50%),
    linear-gradient(135deg, var(--neutral-700) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 18px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

.field select.customer-select {
  min-height: 50px;
  padding-left: 14px;
  padding-right: 54px;
  background-position:
    calc(100% - 30px) 50%,
    calc(100% - 24px) 50%;
  font-size: 14px;
  font-weight: 900;
}

.search-box input {
  padding-left: 38px;
}

.field textarea {
  min-height: 76px;
  padding: 12px;
  resize: vertical;
}

.search-box input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.category-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.chip-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  background: var(--neutral-0);
  color: var(--neutral-500);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.chip-button.active {
  border-color: var(--primary-500);
  background: var(--primary-50);
  color: var(--primary-700);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  min-height: 196px;
  padding: 0;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  background: var(--neutral-0);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  text-align: left;
}

.product-card.selected {
  border-color: rgba(249, 115, 22, 0.72);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.12);
}

.product-card.unavailable {
  border-color: var(--neutral-200);
  background: var(--neutral-50);
}

.product-card.unavailable .product-media img {
  filter: grayscale(0.2);
  opacity: 0.72;
}

.product-media {
  position: relative;
  height: 106px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--neutral-100);
  border-radius: 13px 13px 0 0;
}

.product-media img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  background: var(--neutral-100);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 10px;
}

.product-badge,
.product-qty-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.product-badge {
  left: 8px;
  top: 8px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-700);
  padding: 0 8px;
}

.product-badge.danger {
  background: rgba(254, 242, 242, 0.94);
  color: var(--danger-600);
}

.product-badge svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.product-qty-badge {
  right: 8px;
  top: 8px;
  min-width: 28px;
  padding: 0 8px;
  background: var(--neutral-900);
  color: var(--neutral-0);
}

.product-card h3 {
  display: -webkit-box;
  min-height: 34px;
  margin: 0;
  overflow: hidden;
  color: var(--neutral-900);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card p {
  margin: 6px 0 0;
  color: var(--neutral-500);
  font-size: 11px;
  font-weight: 800;
}

.product-stock-state {
  display: inline-grid;
  grid-template-columns: 13px auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: max-content;
  min-width: 44px;
  max-width: 100%;
  min-height: 24px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--success-50);
  color: var(--success-600);
  padding: 0 8px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.product-stock-state.warning {
  background: var(--warning-50);
  color: var(--warning-600);
}

.product-stock-state.danger {
  background: var(--danger-50);
  color: var(--danger-600);
}

.product-stock-state svg {
  display: block;
  width: 13px;
  height: 13px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.product-price {
  color: var(--neutral-900);
  font-size: 13px;
  font-weight: 900;
}

.add-circle {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--primary-600);
  color: var(--neutral-0);
}

.add-circle.active {
  background: var(--neutral-900);
}

.add-circle.disabled {
  background: var(--neutral-300);
  color: var(--neutral-0);
}

.add-circle svg {
  width: 17px;
  height: 17px;
}

.cart-bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 82px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  background: var(--neutral-900);
  color: var(--neutral-0);
  padding: 0 14px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.26);
}

.cart-bar-copy,
.cart-bar-copy span,
.cart-bar-copy strong {
  display: block;
}

.cart-bar-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.cart-bar-copy strong {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 900;
}

.cart-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  border-radius: 11px;
  background: var(--primary-600);
  color: var(--neutral-0);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
}

.cart-bar svg {
  width: 17px;
  height: 17px;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.34);
}

.phone-drawer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
  max-height: 88%;
  overflow-y: auto;
  border-radius: 22px 22px 0 0;
  background: var(--neutral-0);
  box-shadow: 0 -24px 60px rgba(15, 23, 42, 0.24);
}

.drawer-header,
.drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--neutral-200);
}

.drawer-footer {
  position: sticky;
  bottom: 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 0;
  background: var(--neutral-0);
}

.drawer-header h2 {
  margin: 0;
  font-size: 16px;
}

.drawer-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--neutral-500);
  font-size: 11px;
  font-weight: 800;
}

.drawer-body {
  padding: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-100);
}

.cart-item h3,
.customer-card h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.cart-item p,
.customer-card p {
  margin: 4px 0 0;
  color: var(--neutral-500);
  font-size: 11px;
  font-weight: 800;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-stepper {
  display: inline-grid;
  grid-template-columns: 32px 32px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
}

.qty-stepper button {
  height: 32px;
  border: 0;
  background: var(--neutral-100);
  color: var(--neutral-700);
  font-weight: 900;
}

.qty-stepper span {
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.summary-box {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--neutral-50), var(--neutral-0));
  border: 1px solid var(--neutral-200);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--neutral-500);
  font-size: 12px;
  font-weight: 800;
}

.summary-row.total {
  color: var(--neutral-900);
  font-size: 16px;
  font-weight: 900;
}

.checkout-grid {
  display: grid;
  gap: 14px;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.checkout-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  border-radius: 999px;
  background: var(--neutral-100);
  color: var(--neutral-500);
  font-size: 11px;
  font-weight: 900;
}

.checkout-steps span.done {
  background: var(--success-50);
  color: var(--success-600);
}

.checkout-steps span.active {
  background: var(--primary-50);
  color: var(--primary-700);
}

.checkout-steps svg {
  width: 13px;
  height: 13px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--neutral-700);
  font-size: 12px;
  font-weight: 900;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.payment-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 58px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  background: var(--neutral-0);
  color: var(--neutral-700);
  padding: 0 10px;
  text-align: left;
}

.payment-option.active {
  border-color: var(--primary-500);
  background: var(--primary-50);
  color: var(--primary-700);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.payment-option svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 6px;
  border-radius: 9px;
  background: var(--neutral-50);
  color: var(--neutral-500);
  box-sizing: border-box;
}

.payment-option.active svg {
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary-600);
}

.payment-option strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.checkout-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  background: var(--neutral-50);
  padding: 11px;
}

.checkout-alert.danger {
  border-color: rgba(220, 38, 38, 0.2);
  background: var(--danger-50);
  color: var(--danger-600);
}

.checkout-alert > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.checkout-alert strong,
.checkout-alert span {
  display: block;
}

.checkout-alert strong {
  color: var(--neutral-900);
  font-size: 12px;
  font-weight: 900;
}

.checkout-alert span {
  margin-top: 3px;
  color: var(--neutral-700);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.customer-card,
.action-card,
.checkout-summary-card,
.stat-card,
.receipt-paper {
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  background: var(--neutral-0);
}

.customer-card,
.action-card,
.checkout-summary-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  text-align: left;
}

.customer-card,
.action-card {
  justify-content: space-between;
}

.action-card {
  border-style: dashed;
  color: var(--primary-700);
}

.checkout-summary-card {
  background: var(--info-50);
  border-color: rgba(37, 99, 235, 0.18);
}

.customer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--primary-50), rgba(255,255,255,0.96) 62%),
    var(--neutral-0);
}

.customer-hero h2 {
  margin: 3px 0 0;
  font-size: 18px;
  line-height: 1.15;
}

.customer-hero p {
  margin: 5px 0 0;
  color: var(--neutral-500);
  font-size: 12px;
  font-weight: 800;
}

.customer-add-card {
  justify-content: flex-start;
  border-style: solid;
  border-color: rgba(249, 115, 22, 0.24);
  background: var(--primary-50);
}

.customer-add-card > svg {
  margin-left: auto;
  width: 18px;
  height: 18px;
}

.customer-card-rich {
  align-items: flex-start;
  justify-content: flex-start;
  border-color: var(--neutral-200);
}

.customer-card-rich.selected {
  border-color: rgba(5, 150, 105, 0.4);
  background: var(--success-50);
}

.customer-card-rich > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--neutral-500);
}

.customer-card-rich.selected > svg {
  color: var(--success-600);
}

.customer-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--neutral-900);
  color: var(--neutral-0);
  font-size: 14px;
  font-weight: 900;
}

.customer-main {
  min-width: 0;
  flex: 1;
}

.customer-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.customer-title-row h3 {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tier-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-700);
  padding: 0 8px;
  font-size: 10px;
  font-weight: 900;
}

.customer-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.customer-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
  border-radius: 999px;
  background: var(--neutral-100);
  color: var(--neutral-500);
  padding: 0 7px;
  font-size: 10px;
  font-weight: 900;
}

.customer-metrics svg {
  width: 12px;
  height: 12px;
}

.shift-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(51, 65, 85, 0.94)),
    var(--neutral-900);
  color: var(--neutral-0);
}

.shift-hero .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.shift-hero h2 {
  margin: 3px 0 0;
  font-size: 17px;
  line-height: 1.15;
}

.shift-hero p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.shift-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--success-50);
  color: var(--success-600);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
}

.shift-stat-grid {
  gap: 8px;
  margin-bottom: 8px;
}

.shift-stat-card {
  min-height: 94px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98)),
    var(--neutral-0);
}

.shift-stat-card.highlight {
  border-color: rgba(249, 115, 22, 0.26);
  background: var(--primary-50);
}

.shift-stat-card span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.shift-stat-card span svg {
  width: 13px;
  height: 13px;
}

.shift-stat-card small {
  display: block;
  margin-top: 4px;
  color: var(--neutral-500);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.shift-settlement {
  display: grid;
  gap: 8px;
  margin: 8px 0;
  padding: 11px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 16px;
  background: var(--info-50);
}

.shift-settlement strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 900;
}

.settlement-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.settlement-mini span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 10px;
  background: var(--neutral-0);
  color: var(--neutral-700);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.shift-panel {
  margin-top: 10px;
  padding: 12px;
}

.shift-panel .panel-title {
  margin-bottom: 8px;
}

.shift-transaction-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 8px 0;
}

.shift-row-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.shift-row-end strong {
  white-space: nowrap;
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  border-radius: 999px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 900;
}

.payment-chip.cash {
  background: var(--success-50);
  color: var(--success-600);
}

.payment-chip.qris {
  background: var(--info-50);
  color: var(--info-600);
}

.shift-close-button {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
}

.profile-content {
  display: grid;
  align-content: start;
  gap: 10px;
}

.profile-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--neutral-900), rgba(30, 41, 59, 0.96)),
    var(--neutral-900);
  color: var(--neutral-0);
}

.profile-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--primary-600);
  color: var(--neutral-0);
  font-size: 14px;
  font-weight: 900;
}

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

.profile-copy .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.profile-copy h2 {
  margin: 3px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1.15;
}

.profile-copy p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.profile-role-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--neutral-0);
  padding: 0 9px;
  font-size: 10px;
  font-weight: 900;
}

.profile-role-pill svg {
  width: 13px;
  height: 13px;
}

.profile-metrics,
.profile-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.profile-metric-card,
.profile-quick-action {
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  background: var(--neutral-0);
}

.profile-metric-card {
  padding: 11px;
}

.profile-metric-card span,
.profile-quick-action span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--neutral-500);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-metric-card svg,
.profile-quick-action svg {
  width: 13px;
  height: 13px;
}

.profile-metric-card strong,
.profile-quick-action strong {
  display: block;
  margin-top: 5px;
  color: var(--neutral-900);
  font-size: 15px;
  font-weight: 900;
}

.profile-metric-card small {
  display: block;
  margin-top: 4px;
  color: var(--neutral-500);
  font-size: 10px;
  font-weight: 800;
}

.profile-section {
  padding: 13px;
}

.profile-section .panel-title {
  margin-bottom: 9px;
}

.permission-list {
  display: grid;
  gap: 8px;
}

.permission-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--neutral-100);
  border-radius: 12px;
  background: var(--neutral-50);
}

.permission-row > div {
  min-width: 0;
}

.permission-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--neutral-0);
  color: var(--primary-700);
}

.permission-icon svg {
  width: 16px;
  height: 16px;
}

.permission-row strong,
.permission-row small {
  display: block;
  min-width: 0;
}

.permission-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
}

.permission-row small {
  margin-top: 3px;
  color: var(--neutral-500);
  line-height: 1.25;
  white-space: normal;
  font-size: 10px;
  font-weight: 800;
}

.permission-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  border-radius: 999px;
  background: var(--success-50);
  color: var(--success-600);
  padding: 0 8px;
  font-size: 10px;
  font-weight: 900;
  align-self: center;
}

.profile-quick-action {
  display: grid;
  justify-items: start;
  min-height: 74px;
  padding: 11px;
  text-align: left;
}

.profile-quick-action svg {
  margin-bottom: 4px;
  color: var(--primary-700);
}

.profile-logout {
  width: 100%;
  margin-top: 2px;
}

.checkout-summary-card strong,
.checkout-summary-card small {
  display: block;
}

.checkout-summary-card strong {
  color: var(--neutral-900);
  font-size: 13px;
  font-weight: 900;
}

.checkout-summary-card small {
  margin-top: 3px;
  color: var(--neutral-500);
  font-size: 11px;
  font-weight: 800;
}

.summary-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--neutral-0);
  color: var(--info-600);
}

.summary-icon svg {
  width: 18px;
  height: 18px;
}

.checkout-footer {
  align-items: stretch;
}

.checkout-submit {
  flex: 1;
  min-height: 48px;
}

.checkout-submit span,
.checkout-submit small,
.checkout-submit strong {
  display: block;
}

.checkout-submit small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
}

.checkout-submit strong {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 900;
}

.checkout-submit.loading svg {
  animation: spin 0.9s linear infinite;
}

.mobile-list {
  display: grid;
  gap: 10px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-card {
  padding: 12px;
}

.stat-card span {
  color: var(--neutral-500);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
}

.receipt-paper {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,1)),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(15,23,42,0.03) 12px 13px);
}

.receipt-paper h3 {
  margin: 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 14px;
}

.receipt-address,
.receipt-thanks {
  margin: 4px 0 0;
  color: var(--neutral-500);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.receipt-line strong {
  text-align: right;
}

.receipt-total {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--neutral-200);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
}

.receipt-success-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.receipt-success-title > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--success-50);
  color: var(--success-600);
}

.receipt-success-title svg {
  width: 20px;
  height: 20px;
}

.receipt-success-title small {
  display: block;
  margin-top: 3px;
  color: var(--neutral-500);
  font-size: 11px;
  font-weight: 800;
}

.receipt-separator {
  margin: 10px 0;
  border-top: 1px dashed var(--neutral-300);
}

