:root {
  --purple: #6e00a8;
  --purple-2: #52007f;
  --green: #36d72b;
  --green-2: #20a61b;
  --deep-green: #07532a;
  --accent: #d7ff4a;
  --ink: #151a17;
  --muted: #727a76;
  --line: #e8ece9;
  --surface: #ffffff;
  --soft: #f7f8f5;
  --shadow: 0 14px 35px rgba(78, 0, 120, .16);
}

* {
  box-sizing: border-box;
}

html {
  background: #eef2ee;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef2ee;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.app-shell {
  width: min(100%, 460px);
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 96px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04);
}

.sticky-brand {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  margin-bottom: -58px;
  gap: 9px;
  color: #fff;
  background: var(--purple);
  border-bottom: 1px solid rgba(232, 236, 233, 0);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
  backdrop-filter: blur(16px);
}

.sticky-brand.visible {
  border-bottom-color: rgba(255, 255, 255, .18);
  opacity: 1;
  transform: translateY(0);
}

.sticky-brand img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
}

.hero {
  min-height: 258px;
  padding: 36px 26px 28px;
  color: white;
  background:
    radial-gradient(circle at 84% 16%, rgba(54, 215, 43, .42), transparent 22%),
    linear-gradient(145deg, var(--purple), var(--purple-2) 58%, #1b8f24 100%);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.brand-mark {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.eyebrow {
  max-width: 340px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.35;
}

.hero h1 {
  max-width: 370px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: 0;
}

.customer-text {
  max-width: 360px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.42;
}

.active-order-section {
  padding: 16px 16px 0;
}

.active-order-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  background: #fff;
  border: 1px solid rgba(32, 166, 27, .24);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(7, 83, 42, .08);
}

.active-order-kicker {
  width: max-content;
  padding: 4px 7px;
  color: #17613a;
  background: #eef8f0;
  border: 1px solid rgba(38, 141, 74, .22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.active-order-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.active-order-main strong,
.active-order-main b {
  color: var(--ink);
  font-size: 15px;
}

.active-order-main small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.active-order-card em {
  color: var(--purple);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.content-section {
  padding: 24px 16px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.section-title a {
  flex: 0 0 auto;
  color: var(--purple);
  font-size: 17px;
  font-weight: 520;
}

.store-strip,
.deal-grid,
.promo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 17px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 0 8px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.store-strip.dragging,
.deal-grid.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.store-strip::-webkit-scrollbar,
.deal-grid::-webkit-scrollbar,
.promo-strip::-webkit-scrollbar,
.banner-track::-webkit-scrollbar {
  display: none;
}

.store-card {
  display: grid;
  grid-template-rows: 54px minmax(24px, auto);
  gap: 6px;
  place-items: center;
  width: 96px;
  min-height: 92px;
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.store-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  pointer-events: none;
}

.store-card span {
  width: 100%;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
}

.info-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.banner-track {
  display: flex;
  width: 100%;
  transition: transform .35s ease;
  will-change: transform;
}

.banner-card {
  flex: 0 0 100%;
  overflow: hidden;
  background: var(--soft);
}

.banner-card img {
  width: 100%;
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: rgba(110, 0, 168, .82);
  border: 0;
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.carousel-button.prev {
  left: 9px;
}

.carousel-button.next {
  right: 9px;
}

.carousel-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 22px;
  margin-top: 8px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: #c7d0ca;
  border: 0;
  border-radius: 999px;
  transition: width .2s ease, background .2s ease;
}

.carousel-dots button.active {
  width: 20px;
  background: var(--purple);
}

.deals-section {
  padding-bottom: 12px;
}

.deal-grid {
  gap: 14px;
}

.deal-card {
  overflow: hidden;
  width: 156px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
}

.deal-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.deal-copy {
  padding: 8px;
}

.deal-copy span,
.detail-label {
  color: var(--green-2);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.deal-copy strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.1;
}

.deal-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.promo-section {
  padding-top: 18px;
}

.promo-strip {
  gap: 14px;
}

.promo-strip.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.promo-card {
  display: block;
  width: 156px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 8px 18px rgba(78, 0, 120, .1);
  scroll-snap-align: start;
}

.promo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  pointer-events: none;
}

.promo-section:last-child {
  padding-bottom: 14px;
}

.promotion-shell {
  padding-bottom: 96px;
}

.promotion-header {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  min-height: 56px;
  padding: 8px 14px;
  color: #fff;
  background: var(--purple);
}

.promotion-header h1 {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0;
}

.promotion-back {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
}

.promotion-back svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.promotion-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 22px);
  min-height: 52px;
  margin: 10px 11px 14px;
  padding: 0 12px 0 18px;
  color: #fff;
  background: var(--deep-green);
  border: 3px double #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--deep-green);
  font-size: 20px;
  font-weight: 820;
}

.promotion-filter svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
}

.promotion-outlet {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: end;
  gap: 10px;
  margin: 5px 5px 5px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.promotion-outlet label {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
}

.promotion-outlet span {
  color: #303733;
  font-size: 13px;
  font-weight: 850;
}

.promotion-outlet-title {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
}

.promotion-outlet-info {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  padding: 0;
  color: var(--green-2);
  background: #fff;
  border: 2px solid var(--green-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.promotion-outlet select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.promotion-outlet-lock {
  position: absolute;
  inset: 25px 0 0;
  z-index: 2;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: not-allowed;
}

.promotion-outlet-lock[hidden] {
  display: none;
}

.promotion-outlet p,
.promotion-outlet small {
  display: block;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.promotion-search {
  margin-top: 0;
}

.promotion-search input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.promotion-search input:focus {
  border-color: var(--green-2);
  outline: 2px solid rgba(27, 164, 73, .16);
  outline-offset: 0;
}

.promotion-layout {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  align-items: start;
  border-top: 1px solid var(--line);
}

.promotion-categories {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 166px);
  overflow-y: auto;
  background: #f1f1f1;
  scrollbar-width: none;
}

.promotion-categories::-webkit-scrollbar {
  display: none;
}

.promotion-category-separator {
  height: 1px;
  margin: 8px 10px 6px;
  background: rgba(0, 0, 0, .12);
}

.promotion-categories .promotion-flame-icon {
  color: #ff6a00;
  fill: currentColor;
}

.promotion-categories button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  color: #111;
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 850;
  text-align: left;
}

.promotion-categories button.active {
  color: #fff;
  background: var(--deep-green);
}

.promotion-categories svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.promotion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 11px 10px 24px;
}

.promotion-poster {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.promotion-poster-link {
  display: block;
}

.promotion-poster img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

.promotion-ribbon {
  position: absolute;
  top: 13px;
  right: -32px;
  z-index: 2;
  width: 116px;
  padding: 4px 0;
  color: #fff;
  background: #c01818;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .18);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  transform: rotate(45deg);
}

.promotion-grosir-info {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #13b83e;
  background: #fff;
  border: 2px solid #13b83e;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.promotion-poster-copy {
  display: grid;
  gap: 3px;
  padding: 9px 10px 10px;
}

.promotion-poster-copy strong {
  display: -webkit-box;
  min-height: 50px;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.promotion-poster-copy span {
  color: var(--purple);
  font-size: 13px;
  font-weight: 850;
}

.promotion-poster-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: line-through;
}

.promotion-poster-price {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 8px;
  color: #fff;
  background: rgba(110, 0, 168, .88);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.promotion-add {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--green-2);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
  cursor: pointer;
}

.promotion-add svg {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.grosir-info-modal[hidden] {
  display: none;
}

.outlet-info-modal[hidden] {
  display: none;
}

.grosir-info-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.outlet-info-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.grosir-info-backdrop,
.outlet-info-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 26, 23, .58);
}

.grosir-info-card,
.outlet-info-card {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
}

.grosir-info-close,
.outlet-info-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--soft);
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.grosir-info-card h2,
.outlet-info-card h2 {
  margin: 0 38px 8px 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.grosir-info-card p,
.outlet-info-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.outlet-info-detail {
  display: grid;
  gap: 5px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.outlet-info-detail span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.outlet-info-detail strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.grosir-info-rules {
  display: grid;
  gap: 9px;
}

.grosir-info-rules div {
  display: grid;
  gap: 4px;
  padding: 10px;
  background: var(--soft);
  border-radius: 8px;
}

.grosir-info-rules span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.grosir-info-rules strong {
  color: var(--purple);
  font-size: 16px;
  font-weight: 900;
}

body.grosir-modal-open,
body.outlet-modal-open {
  overflow: hidden;
}

.promotion-add.loading,
.promotion-add.is-loading {
  opacity: .72;
  cursor: wait;
}

.promotion-add.is-loading svg,
.qty-control button.is-loading svg {
  opacity: 0;
}

.promotion-add.is-loading::before,
.qty-control button.is-loading::before {
  content: "";
  grid-area: 1 / 1;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: button-spinner .72s linear infinite;
}

.promotion-add.added {
  background: var(--purple);
}

.cart-notice {
  position: fixed;
  left: 50%;
  bottom: 96px;
  z-index: 8;
  width: min(calc(100% - 38px), 374px);
  padding: 12px 14px;
  color: #fff;
  background: #1f1f1f;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, transform .18s ease;
}

.cart-notice.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-notice.error {
  background: #8b1d2c;
}

.promotion-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 18px 12px;
  color: var(--muted);
  font-weight: 650;
  text-align: center;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(calc(100% - 38px), 374px);
  height: 64px;
  padding: 0 14px;
  background: #1f1f1f;
  border: 0;
  border-radius: 14px;
  transform: translateX(-50%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .24);
}

.bottom-nav a {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 540;
}

.bottom-nav svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.bottom-nav span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.bottom-nav .active {
  color: #fff;
  transform: translateY(-25px);
}

.bottom-nav .active::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 58px;
  height: 58px;
  background: #1f1f1f;
  border: 8px solid #fff;
  border-radius: 999px;
}

.bottom-nav .active svg {
  width: 31px;
  height: 31px;
  padding: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #8a3dff 48%, var(--green) 49%, var(--green));
  border-radius: 10px;
}

.detail-shell {
  padding-bottom: 32px;
}

.detail-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 68px;
  padding: 10px 14px;
  color: white;
  background: var(--purple);
}

.detail-header span {
  text-align: center;
  font-size: 20px;
  font-weight: 760;
}

.back-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.back-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.detail-content {
  padding: 18px 16px 0;
}

.detail-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-copy {
  padding: 22px 2px 0;
}

.detail-copy h1,
.empty-state h1 {
  margin: 5px 0 12px;
  font-size: 30px;
  line-height: 1.12;
}

.detail-copy p,
.empty-state p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 18px;
  color: white;
  background: var(--purple);
  border-radius: 8px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--purple);
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.hero-action.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .34);
}

.auth-shell {
  padding-bottom: 32px;
}

.auth-panel {
  padding: 28px 22px 0;
}

.auth-logo {
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.auth-panel h1 {
  margin: 0 0 10px;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: 0;
}

.auth-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.auth-alert {
  margin-top: 18px;
  padding: 12px 14px;
  color: #7d1422;
  background: #fff0f2;
  border: 1px solid #ffd1d8;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.auth-alert-success {
  color: #17643b;
  background: #edfdf4;
  border-color: #b9efcf;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 22px;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.auth-tabs button {
  min-height: 42px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.auth-tabs button.active {
  color: #fff;
  background: var(--purple);
  box-shadow: 0 8px 16px rgba(110, 0, 168, .18);
}

.auth-tab-panel[hidden] {
  display: none;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.auth-method-heading {
  display: grid;
  gap: 4px;
  margin-top: 22px;
}

.auth-method-heading strong {
  color: #303733;
  font-size: 15px;
  line-height: 1.25;
}

.auth-method-heading span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.auth-method-heading + .auth-form {
  margin-top: 12px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}

.auth-form label {
  display: grid;
  gap: 7px;
}

.auth-form span {
  color: #303733;
  font-size: 13px;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  outline: none;
}

.auth-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(110, 0, 168, .12);
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.auth-submit.is-loading,
.primary-action.is-loading,
.auth-link-button.is-loading,
.promotion-add.is-loading,
.qty-control button.is-loading,
.member-qr-button.is-loading {
  cursor: wait;
  opacity: .82;
  pointer-events: none;
}

.auth-submit.is-loading::before,
.primary-action.is-loading::before,
.auth-link-button.is-loading::before,
.member-qr-button.is-loading::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: button-spinner .72s linear infinite;
}

.auth-resend-form {
  margin-top: 12px;
}

.auth-link-button {
  width: 100%;
  min-height: 42px;
  color: var(--purple);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.auth-link-button:disabled {
  color: #9aa29d;
  cursor: not-allowed;
}

.auth-switch {
  margin-top: 18px;
  text-align: center;
}

.auth-switch a {
  color: var(--purple);
  font-weight: 850;
}

.empty-state {
  padding: 36px 4px;
}

.cart-empty-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: calc(100vh - 220px);
  padding: 40px 24px 28px;
  text-align: center;
}

.cart-empty-state img {
  width: min(72vw, 250px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.cart-empty-state span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  color: var(--purple);
  background: rgba(110, 0, 168, .08);
  border: 1px solid rgba(110, 0, 168, .14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.cart-empty-state h1 {
  max-width: 320px;
  margin: 2px 0 0;
  font-size: 25px;
}

.cart-empty-state p {
  max-width: 300px;
  margin: 0;
}

.cart-empty-state .primary-action {
  width: min(100%, 280px);
  margin-top: 8px;
}

.cart-list {
  display: grid;
  gap: 12px;
  padding: 10px 16px 0;
}

.cart-toolbar {
  padding: 18px 16px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.cart-item h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.cart-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-price-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.cart-price-info[hidden] {
  display: none;
}

.cart-price-note,
.cart-price-saving {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.cart-price-note {
  color: #17613a;
  background: #e7f7ed;
}

.cart-price-saving {
  color: #8a3b12;
  background: #fff0df;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 32px minmax(34px, auto) 32px;
  align-items: center;
  min-height: 34px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qty-control button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--purple);
  background: #fff;
  border: 0;
  cursor: pointer;
}

.qty-control button:disabled {
  color: #a7aea9;
  cursor: wait;
}

.qty-control svg {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.qty-value {
  min-width: 34px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.cart-item-total {
  flex: 0 0 auto;
  font-size: 14px;
}

.cart-summary {
  margin: 16px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 850;
}

.cart-clear-button {
  position: relative;
  width: 100%;
  min-height: 42px;
  color: #fff;
  background: #c01818;
  border: 1px solid #c01818;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(192, 24, 24, .22);
  cursor: pointer;
}

.cart-clear-button:disabled {
  opacity: .7;
  cursor: wait;
}

.checkout-form {
  display: grid;
  gap: 14px;
  padding: 18px 16px 28px;
}

.checkout-section,
.checkout-summary,
.checkout-success {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.checkout-section-title h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.checkout-section-title span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.checkout-items {
  display: grid;
  gap: 10px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.checkout-item img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.checkout-item h2 {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.checkout-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.checkout-price-note {
  display: block;
  margin-top: 4px;
  color: #17613a;
  font-size: 11px;
  font-weight: 800;
}

.checkout-item strong {
  font-size: 13px;
  white-space: nowrap;
}

.checkout-options {
  display: grid;
  gap: 10px;
}

.checkout-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--purple);
}

.checkout-option strong {
  display: block;
  font-size: 14px;
}

.checkout-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.checkout-outlet-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  margin-top: 10px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-outlet-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.checkout-outlet-card b,
.checkout-outlet-card em {
  display: block;
  font-style: normal;
}

.checkout-outlet-card b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.checkout-outlet-card em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.checkout-field {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.checkout-field span {
  color: #303733;
  font-size: 13px;
  font-weight: 800;
}

.checkout-field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
  outline: none;
}

.checkout-field input {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  outline: none;
}

.checkout-field textarea:focus,
.checkout-field input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(110, 0, 168, .12);
}

.checkout-payment-methods {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.checkout-payment-methods[hidden] {
  display: none;
}

.checkout-payment-methods > strong {
  color: #303733;
  font-size: 13px;
  font-weight: 800;
}

.duitku-method-group {
  display: grid;
  gap: 8px;
}

.duitku-method-group h2 {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

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

.duitku-method-option {
  position: relative;
}

.duitku-method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.duitku-method-card {
  display: grid;
  align-content: start;
  min-height: 96px;
  gap: 5px;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.duitku-method-card img {
  width: auto;
  max-width: 72px;
  height: 24px;
  object-fit: contain;
  object-position: left center;
}

.duitku-method-card b {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.duitku-method-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.duitku-method-option input:checked + .duitku-method-card {
  background: rgba(110, 0, 168, .045);
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(110, 0, 168, .12);
}

.duitku-method-option input:focus-visible + .duitku-method-card {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(110, 0, 168, .12);
}

.checkout-delivery-details {
  margin-top: 12px;
}

.checkout-delivery-details[hidden] {
  display: none;
}

.checkout-readonly-block {
  display: grid;
  gap: 9px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-readonly-block div {
  display: grid;
  gap: 3px;
}

.checkout-readonly-block span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.checkout-readonly-block strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.checkout-readonly-block a {
  color: var(--purple);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.checkout-distance {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 10px 12px;
  background: #eef8f0;
  border: 1px solid rgba(38, 141, 74, .22);
  border-radius: 8px;
}

.checkout-distance strong {
  color: #1d5d35;
  font-size: 13px;
}

.checkout-distance span,
.checkout-distance p {
  margin: 0;
  color: #356347;
  font-size: 12px;
  line-height: 1.4;
}

.checkout-distance.muted {
  background: var(--soft);
  border-color: var(--line);
}

.checkout-distance.muted strong,
.checkout-distance.muted span {
  color: var(--muted);
}

.checkout-summary {
  position: sticky;
  bottom: 0;
  display: grid;
  gap: 10px;
  background: #fff;
  box-shadow: 0 -12px 28px rgba(0, 0, 0, .08);
}

.checkout-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.checkout-summary strong {
  color: var(--ink);
}

.checkout-summary-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 850;
}

.checkout-success {
  margin: 18px 16px 0;
}

.checkout-success span {
  color: var(--green-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-success h1 {
  margin: 6px 0 10px;
  font-size: 30px;
  line-height: 1.1;
}

.checkout-success p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.order-progress-shell {
  padding-bottom: 32px;
}

.order-progress-hero,
.order-progress-section {
  margin: 14px 16px 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-progress-hero {
  background: linear-gradient(135deg, #6e00a8, #248a52);
  border-color: transparent;
  color: #fff;
}

.order-progress-hero span {
  display: inline-flex;
  padding: 5px 8px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.order-progress-hero h1 {
  margin: 12px 0 8px;
  font-size: 30px;
  line-height: 1.05;
}

.order-payment-callout {
  display: grid;
  gap: 12px;
  margin: 14px 16px 0;
  padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff7a00, #e74900);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(231, 73, 0, .22);
}

.order-payment-callout div {
  display: grid;
  gap: 4px;
}

.order-payment-callout strong {
  font-size: 15px;
  line-height: 1.25;
}

.order-payment-callout span {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  line-height: 1.45;
}

.order-payment-callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  color: #c53d00;
  background: #fff;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(96, 28, 0, .18);
}

.order-progress-hero p {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.45;
}

.order-progress-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.order-progress-title h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.order-progress-title > span:not(.order-status-pill) {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.order-status-pill {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #28583b;
  background: #eef8f0;
  border: 1px solid rgba(38, 141, 74, .22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.order-status-pill.cancelled {
  color: #9f1d1d;
  background: #fff1f1;
  border-color: rgba(192, 24, 24, .22);
}

.order-status-pill.packing,
.order-history-card em.packing,
.outlet-admin-order-head em.packing {
  color: #86520e;
  background: #fff8e8;
  border-color: rgba(214, 151, 48, .3);
}

.order-status-pill.delivering,
.order-history-card em.delivering,
.outlet-admin-order-head em.delivering {
  color: #174f86;
  background: #eef6ff;
  border-color: rgba(37, 99, 235, .24);
}

.order-timeline {
  display: grid;
  gap: 0;
}

.order-step {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 18px;
}

.order-step:last-child {
  padding-bottom: 0;
}

.order-step::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 2px;
  left: 10px;
  width: 2px;
  background: var(--line);
}

.order-step:last-child::after {
  display: none;
}

.order-step i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 999px;
}

.order-step.done i {
  background: var(--green-2);
  border-color: var(--green-2);
}

.order-step.done i::before {
  content: "";
  width: 8px;
  height: 4px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.order-step.current i {
  background: #fff;
  border-color: var(--green-2);
}

.order-step.current i::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid rgba(38, 141, 74, .22);
  border-top-color: var(--green-2);
  border-radius: 999px;
  animation: order-step-spin .72s linear infinite;
}

.order-step.cancelled i {
  background: #c01818;
  border-color: #c01818;
}

.order-step.cancelled i::before {
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

@keyframes order-step-spin {
  to {
    transform: rotate(360deg);
  }
}

.order-step strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.order-step span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.order-step .order-step-time {
  display: block;
  margin-top: 4px;
  color: #6e776f;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.order-step.upcoming strong,
.order-step.upcoming span,
.order-step.upcoming .order-step-time {
  color: #99a19b;
}

.order-summary-list {
  display: grid;
  gap: 9px;
}

.order-summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.order-summary-list strong {
  color: var(--ink);
  text-align: right;
}

.order-summary-list .total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 850;
}

.order-location {
  display: grid;
  gap: 4px;
}

.order-location strong {
  font-size: 15px;
}

.order-location span,
.order-location p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.order-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-item-row strong,
.order-item-row b {
  color: var(--ink);
  font-size: 13px;
}

.order-item-row span,
.order-item-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.order-item-row small {
  color: #17613a;
  font-weight: 800;
}

.order-progress-actions {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.order-progress-main-actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
}

.order-progress-main-actions form {
  margin: 0;
}

.order-home-button,
.order-finish-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.order-home-button {
  color: var(--purple);
  background: #fff;
  border: 1px solid rgba(110, 0, 168, .24);
}

.order-finish-button {
  color: #fff;
  background: #16824a;
  border: 1px solid #16824a;
  cursor: pointer;
}

.order-cancel-button {
  width: 100%;
  min-height: 42px;
  color: #c01818;
  background: #fff;
  border: 1px solid rgba(192, 24, 24, .34);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.order-history-link {
  display: grid;
  place-items: center;
  min-height: 38px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 850;
}

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

.order-history-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.order-history-card strong,
.order-history-card b {
  color: var(--ink);
  font-size: 14px;
}

.order-history-card:hover,
.order-history-card:focus-visible {
  border-color: rgba(110, 0, 168, .28);
  box-shadow: 0 10px 20px rgba(35, 20, 43, .08);
}

.order-history-card:focus-visible {
  outline: 0;
}

.order-history-card:active {
  transform: translateY(1px);
}

.order-history-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.order-history-card > div:last-child {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.order-history-card em {
  align-self: start;
  padding: 4px 7px;
  color: #28583b;
  background: #eef8f0;
  border: 1px solid rgba(38, 141, 74, .22);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.order-history-card em.cancelled {
  color: #9f1d1d;
  background: #fff1f1;
  border-color: rgba(192, 24, 24, .22);
}

.order-history-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px !important;
}

.order-history-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--purple);
  background: #fff;
  border: 1px solid rgba(110, 0, 168, .22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

.order-complaint-history {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.order-complaint-history article {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-complaint-history article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

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

.order-complaint-history span,
.order-complaint-history p,
.order-complaint-history a,
.order-complaint-history button {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.order-complaint-history span,
.order-complaint-history p {
  color: var(--muted);
}

.order-complaint-history a,
.order-complaint-history button {
  color: var(--purple);
  font-weight: 850;
}

.order-complaint-replies {
  display: grid !important;
  gap: 8px !important;
  margin-top: 8px;
}

.order-complaint-replies > div {
  display: grid;
  gap: 5px;
  padding: 9px;
  border: 1px solid rgba(111, 75, 255, .16);
  border-radius: 8px;
  background: #f7f5ff;
}

.order-complaint-replies strong {
  color: var(--purple);
  font-size: 12px;
  line-height: 1.3;
}

.complaint-photo-trigger {
  justify-self: start;
  padding: 0;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.complaint-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.complaint-photo-modal[hidden] {
  display: none;
}

.complaint-photo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 20, .7);
}

.complaint-photo-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.complaint-photo-dialog img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 8px;
}

.complaint-photo-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--purple);
  border: 0;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

.notifications-title form {
  margin: 0;
}

.notifications-title button {
  padding: 0;
  color: var(--purple);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

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

.notifications-page-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  color: inherit;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.notifications-page-item.unread {
  background: rgba(110, 0, 168, .045);
  border-color: rgba(110, 0, 168, .2);
}

.notifications-page-item strong {
  color: var(--ink);
  font-size: 14px;
}

.notifications-page-item span,
.notifications-page-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.notifications-empty {
  margin: 0;
}

.order-rating-field {
  padding: 0;
  border: 0;
}

.order-rating-field legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.order-star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.order-star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-star-rating label {
  color: #d3d7d3;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.order-star-rating input:checked ~ label,
.order-star-rating label:hover,
.order-star-rating label:hover ~ label {
  color: #f5a400;
}

.profile-form input[type="file"] {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
}

.profile-form label small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.profile-shell {
  padding-bottom: 96px;
}

.member-point-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 10px 16px 0;
  padding: 8px 12px;
  color: #fff;
  background: var(--deep-green);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(11, 95, 57, .16);
}

.member-point-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--deep-green);
  background: #fff;
  border-radius: 999px;
}

.member-point-logo svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.member-point-name {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-point-total {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.profile-hero {
  padding: 10px 16px 0;
}

.profile-hero h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.profile-hero p,
.profile-copy {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.member-qr-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-top: 10px;
  padding: 0 12px;
  color: #fff;
  background: var(--purple);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.member-qr-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.member-qr-modal[hidden] {
  display: none;
}

.member-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 22px;
}

.member-qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 26, 23, .58);
}

.member-qr-card {
  position: relative;
  z-index: 1;
  width: min(100%, 330px);
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
  text-align: center;
}

.member-qr-card h2 {
  margin: 0 36px 14px;
  font-size: 20px;
  line-height: 1.2;
}

.member-qr-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.member-qr-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.member-qr-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 260px;
  padding: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.member-qr-image img {
  width: 260px;
  height: 260px;
}

.member-qr-code {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  word-break: break-word;
}

body.qr-modal-open {
  overflow: hidden;
}

@keyframes button-spinner {
  to {
    transform: rotate(360deg);
  }
}

.profile-alert {
  margin: 14px 16px 0;
}

.notification-panel {
  margin: 14px 16px 0;
  padding: 14px;
  background: #fff;
  border: 1px solid #d7e6dd;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(19, 41, 30, 0.08);
}

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

.notification-panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.notification-panel-head span {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #0f6b3d;
  background: #e9f8ef;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

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

.notification-item {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  background: #f7fbf8;
  border: 1px solid #d7e6dd;
  border-radius: 8px;
  text-decoration: none;
}

.notification-item strong,
.notification-item span,
.notification-item small {
  display: block;
}

.notification-item strong {
  font-size: 14px;
  line-height: 1.25;
}

.notification-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.notification-item small {
  margin-top: 6px;
  color: #64706a;
  font-size: 11px;
}

.notification-read-button {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  color: #0f6b3d;
  background: #e9f8ef;
  border: 1px solid #bddcc9;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.profile-section {
  margin: 14px 16px 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-section h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
}

.profile-menu {
  display: grid;
  gap: 10px;
}

.profile-menu a,
.profile-menu button {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 34px 12px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.profile-menu i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--purple);
  background: #fff;
  border: 1px solid rgba(110, 0, 168, .14);
  border-radius: 8px;
}

.profile-menu i svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.profile-menu b {
  min-width: 0;
  font-weight: inherit;
}

.profile-menu a::after,
.profile-menu button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--purple);
  border-right: 2px solid var(--purple);
  transform: translateY(-50%) rotate(45deg);
}

.profile-menu span {
  display: block;
  font-size: 14px;
  font-weight: 850;
}

.profile-menu small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.profile-admin-section {
  margin-bottom: 18px;
}

.outlet-admin-hero {
  background: linear-gradient(135deg, #235c3d, #743896);
}

.outlet-admin-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 16px 0;
}

.outlet-admin-tabs a {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 7px 4px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

.outlet-admin-tabs a.active {
  color: #fff;
  background: var(--purple);
  border-color: var(--purple);
}

.outlet-admin-tabs b {
  margin-top: 2px;
  font-size: 11px;
}

.outlet-admin-order-list {
  display: grid;
  gap: 12px;
  margin: 14px 16px 0;
}

.outlet-admin-order-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.outlet-admin-order-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 10px;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.outlet-admin-order-head::-webkit-details-marker {
  display: none;
}

.outlet-admin-order-head i {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.outlet-admin-order-card[open] .outlet-admin-order-head i {
  transform: rotate(225deg);
}

.outlet-admin-order-detail {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.outlet-admin-order-head strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.outlet-admin-order-head span,
.outlet-admin-customer span,
.outlet-admin-customer p {
  display: block;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.outlet-admin-order-head em {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #28583b;
  background: #eef8f0;
  border: 1px solid rgba(38, 141, 74, .22);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.outlet-admin-order-head em.cancelled {
  color: #9f1d1d;
  background: #fff1f1;
  border-color: rgba(192, 24, 24, .22);
}

.outlet-admin-customer {
  padding: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.outlet-admin-customer b {
  color: var(--ink);
  font-size: 14px;
}

.outlet-admin-order-summary {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.outlet-admin-order-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.outlet-admin-order-summary span {
  color: var(--muted);
  font-size: 13px;
}

.outlet-admin-order-summary strong {
  color: var(--ink);
  font-size: 14px;
  text-align: right;
}

.outlet-admin-order-summary .outlet-admin-grand-total {
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}

.outlet-admin-order-summary .outlet-admin-grand-total strong {
  font-size: 16px;
}

.outlet-admin-status-history {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: #fbfbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.outlet-admin-status-history h3 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.outlet-admin-status-history div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.outlet-admin-status-history span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
}

.outlet-admin-status-history b {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.outlet-admin-status-history small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.outlet-admin-status-history strong {
  color: var(--ink);
  font-size: 12px;
  text-align: right;
}

.outlet-admin-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.outlet-admin-actions-single {
  grid-template-columns: 1fr;
}

.outlet-admin-actions-two {
  grid-template-columns: 1fr 1fr;
}

.outlet-admin-wa,
.outlet-admin-secondary,
.outlet-admin-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  margin-top: 0;
  padding: 0 12px;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.outlet-admin-wa svg,
.outlet-admin-secondary svg,
.outlet-admin-primary svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.outlet-admin-wa {
  color: #0b6f3a;
  background: #eefbf3;
  border: 1px solid rgba(22, 163, 74, .28);
}

.outlet-admin-secondary {
  color: #9f1d1d;
  background: #fff;
  border: 1px solid rgba(192, 24, 24, .34);
}

.outlet-admin-feedback {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.outlet-admin-feedback-group {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.outlet-admin-feedback h3 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.outlet-admin-feedback-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.outlet-admin-feedback-meta,
.outlet-admin-review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.outlet-admin-feedback-meta strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
}

.outlet-admin-review-head b {
  color: #f5a400;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
}

.outlet-admin-review-head span {
  flex: 0 0 auto;
  padding: 4px 7px;
  color: var(--purple);
  background: #f2efff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
}

.outlet-admin-feedback-copy,
.outlet-admin-admin-note {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.outlet-admin-admin-note {
  padding: 8px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
}

.outlet-admin-feedback-link {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--purple);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

.outlet-admin-feedback-time,
.outlet-admin-feedback-meta span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

.outlet-admin-replies {
  display: grid;
  gap: 8px;
}

.outlet-admin-replies > div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(111, 75, 255, .16);
  border-radius: 8px;
  background: #f7f5ff;
}

.outlet-admin-replies strong {
  color: var(--purple);
  font-size: 12px;
}

.outlet-admin-feedback-form,
.outlet-admin-status-form {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.outlet-admin-feedback-form textarea,
.outlet-admin-feedback-form select {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

.outlet-admin-feedback-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.outlet-admin-inline-check {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: none;
  gap: 8px !important;
  line-height: 1.35;
}

.outlet-admin-inline-check input {
  flex: 0 0 auto;
}

.outlet-admin-file-field {
  position: relative;
}

.outlet-admin-file-input {
  position: absolute;
  inset: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.outlet-admin-file-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px;
  border: 1px dashed rgba(111, 75, 255, .34);
  border-radius: 8px;
  background: #f8f6ff;
  cursor: pointer;
}

.outlet-admin-file-control > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--purple);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.outlet-admin-file-control small {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.outlet-admin-file-field:focus-within .outlet-admin-file-control {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(111, 75, 255, .12);
}

.outlet-admin-feedback-form button,
.outlet-admin-status-form button {
  min-height: 40px;
  border-radius: 8px;
  font-weight: 850;
}

.outlet-admin-status-form button {
  border: 1px solid var(--line);
  color: var(--purple);
  background: #fff;
}

.outlet-admin-footer {
  display: grid;
  place-items: center;
  padding: 16px;
}

.outlet-admin-footer a {
  color: var(--purple);
  font-size: 13px;
  font-weight: 850;
}

.profile-action-modal[hidden] {
  display: none;
}

.profile-action-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
}

.profile-action-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 26, 23, .58);
}

.profile-action-card {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  max-height: min(86vh, 720px);
  overflow-y: auto;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
}

.profile-action-card h2 {
  margin: 0 42px 14px 0;
  font-size: 20px;
  line-height: 1.2;
}

.profile-action-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.profile-action-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

body.profile-modal-open {
  overflow: hidden;
}

.profile-form {
  margin-top: 0;
}

.profile-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
  outline: none;
}

.profile-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(110, 0, 168, .12);
}

.profile-info-modal {
  display: grid;
  gap: 14px;
}

.profile-info-modal h2 {
  margin-bottom: 0;
}

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

.profile-info-list div {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-info-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.profile-info-list strong {
  color: var(--ink);
  font-size: 15px;
}

.profile-info-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.profile-info-copy p {
  margin: 0 0 10px;
}

.profile-info-copy p:last-child {
  margin-bottom: 0;
}

.profile-info-copy ol {
  margin: 0;
  padding-left: 20px;
}

.profile-info-copy li + li {
  margin-top: 7px;
}

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

@media (max-width: 370px) {
  .hero h1 {
    font-size: 34px;
  }

  .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-field-grid {
    grid-template-columns: 1fr;
  }

  .outlet-admin-actions,
  .outlet-admin-actions-two {
    grid-template-columns: 1fr;
  }

  .outlet-admin-feedback-meta,
  .outlet-admin-review-head {
    display: grid;
    gap: 5px;
  }

  .outlet-admin-feedback-time,
  .outlet-admin-feedback-meta span {
    text-align: left;
  }

  .order-progress-main-actions {
    grid-template-columns: 1fr;
  }
}


.store-list-shell {
  padding-bottom: 96px;
}

.store-list-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 14px 12px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #7b36ef);
  border-radius: 16px;
}

.store-list-hero p {
  max-width: 250px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.store-list-hero strong {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--purple);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
}

.store-directory {
  display: grid;
  gap: 12px;
  padding: 0 14px 20px;
}

.store-directory-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(21, 24, 22, .06);
}

.store-directory-card img {
  width: 58px;
  height: 58px;
  padding: 8px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 14px;
}

.store-directory-copy {
  min-width: 0;
}

.store-directory-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.store-directory-title h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.store-directory-title span {
  padding: 3px 7px;
  color: var(--green-2);
  background: rgba(16, 133, 73, .1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}


.store-directory-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.store-directory-copy small {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.store-directory-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.store-directory-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.store-directory-actions svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.store-directory-actions a:first-child {
  color: #fff;
  background: var(--green-2);
}

.store-directory-actions a:last-child {
  color: var(--purple);
  background: rgba(114, 52, 232, .1);
}
