:root {
  color-scheme: light;
  --green: #10bd70;
  --green-dark: #087443;
  --mint: #e8fbf1;
  --ink: #101828;
  --text: #344054;
  --muted: #8a94a6;
  --line: #e6ebef;
  --bg: #eef2f3;
  --card: #ffffff;
  --orange: #ff8a1f;
  --yellow: #ffc545;
  --blue: #3478f6;
  --red: #f04438;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #dfe5e9;
  color: var(--ink);
}

button,
input,
textarea {
  border: 0;
  font: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

.phone {
  position: relative;
  width: min(390px, 100vw);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 24px 80px rgb(15 23 42 / 18%);
}

.status {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  background: #fff;
  font-size: 12px;
}

.status strong {
  font-size: 13px;
}

.status span:last-child {
  text-align: right;
}

.screen {
  min-height: calc(100vh - 104px);
  padding: 14px 14px 86px;
  overflow: hidden auto;
  -webkit-overflow-scrolling: touch;
}

.splash {
  position: absolute;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 44px;
  background: #101923;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.splash[hidden] {
  display: none;
}

.splash-card {
  width: 100%;
  min-height: 460px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border-radius: 18px;
  color: #fff;
  background: var(--green);
  text-align: center;
}

.splash-card h1 {
  margin: 0;
  font-size: 24px;
}

.splash-card p,
.splash-card span {
  margin: 0;
  color: rgb(255 255 255 / 82%);
}

.splash-card button,
.primary,
.pill-button {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.splash-card button {
  margin-top: 92px;
  color: var(--green-dark);
  background: #fff;
}

.top-card,
.card,
.soft-card,
.order-card,
.product-card,
.field-card,
.notice,
.list-card {
  contain: layout paint;
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 10px 28px rgb(16 24 40 / 6%);
}

.home-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.pin,
.dot {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.link {
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
}

.search {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #98a2b3;
  background: #fff;
  font-size: 13px;
}

.banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #11be72 0%, #07985c 100%);
}

.banner h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.banner p {
  margin: 6px 0 12px;
  color: rgb(255 255 255 / 85%);
  font-size: 12px;
}

.banner img {
  width: 100%;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
}

.mini-button {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff15a;
  font-size: 12px;
  font-weight: 800;
}

.quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.quick button {
  min-height: 64px;
  padding: 10px;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  background: var(--orange);
  font-weight: 800;
}

.quick button:nth-child(2) {
  background: var(--blue);
}

.quick button:nth-child(3) {
  background: var(--green);
}

.quick span {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 500;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 14px 0;
  text-align: center;
}

.cat-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 5px;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.cat-name {
  color: var(--text);
  font-size: 11px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 10px;
}

.section-title h2 {
  flex: 1;
  margin: 0;
  font-size: 17px;
}

.section-title h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--green);
  vertical-align: -2px;
}

.points-entry {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

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

.product-card {
  padding: 8px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.05;
  border-radius: 10px;
  object-fit: cover;
  background: #eef2f3;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  margin-top: 7px;
  padding: 0 7px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 10px;
  font-weight: 800;
}

.product-card h3 {
  min-height: 36px;
  margin: 7px 0 4px;
  font-size: 13px;
  line-height: 1.35;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.price {
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
}

.exchange-price {
  color: var(--green-dark);
}

.add {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.subtabs,
.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.subtabs button,
.chip,
.filter-row button {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
}

.subtabs .active,
.filter-row .active,
.chip.active {
  color: var(--green-dark);
  background: var(--mint);
  font-weight: 800;
}

.task-list,
.stack {
  display: grid;
  gap: 10px;
}

.task-card,
.field-card,
.order-card,
.list-card {
  padding: 14px;
}

.task-card {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
}

.task-card h3,
.order-card h3,
.list-card h3,
.field-card h3 {
  margin: 0 0 5px;
  font-size: 14px;
}

.task-card p,
.order-card p,
.list-card p,
.field-card p,
.muted {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.order-card {
  cursor: pointer;
}

.order-detail-head {
  padding: 18px;
  border-radius: 16px;
  color: #fff;
  background: #101923;
}

.order-detail-head h2 {
  margin: 10px 0 6px;
  font-size: 18px;
}

.order-detail-head p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.order-steps span {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.order-steps i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: #eef2f3;
  font-style: normal;
  font-weight: 900;
}

.order-steps .active {
  color: var(--green-dark);
  font-weight: 800;
}

.order-steps .active i {
  color: #fff;
  background: var(--green);
}

.state {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 11px;
  font-weight: 800;
}

.state.warn {
  color: #9a4b00;
  background: #fff2df;
}

.hero-product {
  overflow: hidden;
}

.hero-product img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.hero-product .body,
.total-bar,
.profile-head {
  padding: 14px;
}

.choice-row,
.metric-row,
.menu-list {
  display: grid;
  gap: 8px;
}

.choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
}

.notice {
  padding: 14px;
  color: #9a4b00;
  background: #fff4e4;
  box-shadow: none;
}

.profile-head {
  border-radius: 0 0 16px 16px;
  color: #fff;
  background: var(--green);
}

.profile-head .name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 22%);
  font-weight: 900;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  text-align: center;
}

.metrics strong {
  display: block;
  font-size: 15px;
}

.metrics span {
  color: rgb(255 255 255 / 78%);
  font-size: 11px;
}

.menu-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  color: var(--text);
  background: #fff;
  text-align: left;
}

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

.rank-row,
.ledger-row,
.cart-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
}

.cart-row img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty button {
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #edf7f1;
  color: var(--green);
  font-weight: 800;
}

.qty .link {
  width: auto;
  padding: 0 6px;
  background: transparent;
  color: var(--muted);
}

.total-bar {
  position: sticky;
  bottom: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  border-radius: 14px;
  background: #fff;
}

.form {
  display: grid;
  gap: 10px;
}

.form input,
.form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
}

.form textarea {
  min-height: 92px;
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.check-row input {
  width: 16px;
  min-height: 16px;
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.agent-code {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  margin: 46px auto 16px;
  border-radius: 16px;
  background: #101923;
}

.qr {
  width: 150px;
  height: 150px;
  background:
    repeating-linear-gradient(0deg, #fff 0 8px, transparent 8px 16px),
    repeating-linear-gradient(90deg, #fff 0 8px, transparent 8px 16px),
    #101923;
  border: 10px solid #fff;
}

.empty {
  padding: 28px 16px;
  border-radius: 12px;
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.tabs {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 1000;
  width: min(390px, 100vw);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 8px 8px 12px;
  border-top: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
  pointer-events: auto;
}

.tabs button {
  min-width: 0;
  min-height: 48px;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  pointer-events: auto;
  touch-action: manipulation;
}

.tabs button:active {
  background: var(--mint);
}

.tabs .active {
  color: var(--green);
  font-weight: 900;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  z-index: 1200;
  transform: translateX(-50%);
  max-width: min(340px, calc(100vw - 32px));
  padding: 11px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgb(17 24 39 / 92%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
  font-size: 13px;
}

@media (max-width: 360px) {
  .screen {
    padding-inline: 10px;
  }

  .banner h1 {
    font-size: 20px;
  }

  .quick button {
    padding: 8px;
    font-size: 12px;
  }
}

.location-button {
  max-width: 270px;
  padding: 0;
  background: transparent;
  text-align: left;
}

.location strong,
.location em {
  display: block;
  font-style: normal;
}

.location em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.delivery-promise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgb(16 189 112 / 16%);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #e8fbf1 100%);
}

.promise-main strong,
.promise-main span {
  display: block;
}

.promise-main strong {
  color: var(--green-dark);
  font-size: 15px;
}

.promise-main span {
  margin-top: 3px;
  color: var(--text);
  font-size: 12px;
}

.promise-chip {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.service-strip {
  display: flex;
  gap: 7px;
  margin-top: 8px;
  overflow-x: auto;
}

.service-strip span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.promo-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.promo-card {
  min-height: 64px;
  padding: 10px;
  border-radius: 13px;
  text-align: left;
  background: #fff;
  box-shadow: 0 8px 20px rgb(16 24 40 / 5%);
}

.promo-card strong,
.promo-card span {
  display: block;
}

.promo-card strong {
  color: var(--ink);
  font-size: 13px;
}

.promo-card span {
  margin-top: 6px;
  font-size: 11px;
}

.promo-card.green span {
  color: var(--green);
}

.promo-card.orange span {
  color: var(--orange);
}

.promo-card.blue span {
  color: var(--blue);
}

.product-meta,
.stock-hint {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.service-tags {
  min-height: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 6px 0;
}

.service-tags span {
  padding: 2px 6px;
  border-radius: 999px;
  color: #667085;
  background: #f2f4f7;
  font-size: 10px;
}

.floating-cart {
  position: sticky;
  bottom: 10px;
  z-index: 16;
  width: calc(100% - 8px);
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  margin: 14px 4px 0;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: #101828;
  box-shadow: 0 14px 36px rgb(16 24 40 / 28%);
}

.floating-cart span,
.floating-cart strong,
.floating-cart em {
  font-style: normal;
  font-size: 13px;
}

.floating-cart i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  border-radius: 50%;
  color: var(--green-dark);
  background: #fff15a;
  font-style: normal;
  font-weight: 900;
}

.floating-cart em {
  padding: 7px 10px;
  border-radius: 999px;
  color: #101828;
  background: #fff15a;
  font-weight: 900;
}

.category-filter-bar {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}

.category-filter-bar button,
.category-sidebar button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
}

.category-filter-bar .active,
.category-sidebar .active {
  color: var(--green-dark);
  background: var(--mint);
  font-weight: 800;
}

.category-layout {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  margin-top: 12px;
}

.category-sidebar,
.category-products {
  display: grid;
  align-content: start;
  gap: 8px;
}

.category-sidebar {
  position: sticky;
  top: 48px;
}

.category-sidebar button {
  width: 100%;
  min-height: 38px;
  border-radius: 10px;
}

.category-promise {
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #101828, #1f2937);
  color: #fff;
}

.category-promise strong,
.category-promise span {
  display: block;
}

.category-promise span {
  margin-top: 4px;
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
}

.horizontal-product {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgb(16 24 40 / 5%);
}

.horizontal-product img {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  object-fit: cover;
}

.horizontal-product-body {
  min-width: 0;
}

.horizontal-product-body > div:first-child,
.detail-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.horizontal-product-body strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
}

.horizontal-product-body p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.stock-state {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
}

.stock-state.warn {
  color: var(--orange);
}

.product-detail-hero .body h2 {
  margin: 8px 0 6px;
  font-size: 20px;
}

.detail-rule {
  margin-top: 12px;
}

.detail-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.detail-service-grid span {
  padding: 9px;
  border-radius: 10px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.checkout-head {
  padding: 16px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #101828, #0b7a4b);
}

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

.checkout-head span {
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
}

.checkout-head strong {
  margin-top: 6px;
  font-size: 20px;
}

.checkout-head p {
  margin: 6px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 12px;
}

.checkout-choice {
  grid-template-columns: repeat(2, 1fr);
}

.choice.active {
  outline: 2px solid rgb(16 189 112 / 28%);
  background: var(--mint);
}

.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.checkout-items,
.fee-lines {
  display: grid;
  gap: 8px;
}

.checkout-items p,
.fee-lines p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

.cart-list .cart-row strong:last-child,
.checkout-items strong,
.fee-lines strong {
  color: var(--ink);
}

.member-lock {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgb(255 138 31 / 22%);
  border-radius: 12px;
  background: #fff7ed;
}

.member-lock strong,
.member-lock span {
  display: block;
}

.member-lock strong {
  color: #9a4b00;
  font-size: 13px;
}

.member-lock span {
  grid-column: 1 / 2;
  color: #9a4b00;
  font-size: 11px;
  line-height: 1.45;
}

.member-lock button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.order-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
}

.order-filter button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
}

.order-filter .active {
  color: var(--green-dark);
  background: var(--mint);
  font-weight: 800;
}

.rich-order-card {
  display: grid;
  gap: 8px;
}

.order-card-head,
.order-card-meta,
.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.order-card-head strong {
  font-size: 14px;
}

.order-card-items {
  color: var(--text);
}

.order-card-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.order-card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #667085;
  background: #f2f4f7;
  font-size: 11px;
  font-weight: 800;
}

.order-summary {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
}

.order-summary span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.order-summary strong {
  color: var(--ink);
  font-size: 13px;
}

.order-summary em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.order-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--green-dark);
  background: var(--mint);
}

.order-code span {
  font-size: 11px;
  font-weight: 800;
}

.order-code strong {
  letter-spacing: 2px;
  font-size: 18px;
}

.order-code.large {
  margin-bottom: 10px;
}

.fulfillment-panel {
  display: grid;
  gap: 8px;
}

.fulfillment-panel p {
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.timeline-step {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.timeline-step i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d5dd;
}

.timeline-step.active {
  color: var(--green-dark);
  font-weight: 800;
}

.timeline-step.active i {
  background: var(--green);
  box-shadow: 0 0 0 4px rgb(16 189 112 / 12%);
}

.exception-note {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  color: #9a4b00;
  background: #fff4e4;
}

.exception-note.resolved {
  color: var(--green-dark);
  background: var(--mint);
}

.exception-note strong,
.exception-note p {
  display: block;
  margin: 0;
}

.exception-note p {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.state.muted-state {
  color: #667085;
  background: #f2f4f7;
}

.order-item-lines {
  display: grid;
  gap: 6px;
}

.order-item-lines p {
  display: flex;
  justify-content: space-between;
}
