@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-0: #120816;
  --bg-1: #1d0d2f;
  --bg-2: #2c1248;
  --purple: #7b2cbf;
  --purple-2: #a855f7;
  --purple-soft: #e7d8ff;
  --orange: #f97316;
  --orange-2: #fb923c;
  --app-orange: #f97316;
  --app-purple: #7b2cbf;
  --app-text: #1f1630;
  --text: #1f1630;
  --muted: #8b8498;
  --line: rgba(123, 44, 191, 0.12);
  --card-shadow: 0 18px 40px rgba(21, 11, 35, 0.12);
  --phone-shadow: 0 35px 70px rgba(12, 6, 20, 0.45);
}

body[data-mobile-app] {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  background: #fff;
}

@media (min-width: 576px) {
  body[data-mobile-app] {
    padding: 18px;
    background:
      radial-gradient(circle at 14% 10%, rgba(var(--theme-primary-rgb, 123, 44, 191), 0.34), transparent 22%),
      radial-gradient(circle at 88% 12%, rgba(var(--theme-secondary-rgb, 249, 115, 22), 0.24), transparent 18%),
      linear-gradient(180deg, var(--theme-primary-deep, #120816) 0%, var(--theme-primary-dark, #180b26) 46%, var(--bg-1, #2a1245) 100%);
  }
}

body[data-mobile-app] .status-bar {
  display: none !important;
}

body[data-mobile-app]::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.09), transparent 20%),
    radial-gradient(circle at 92% 58%, rgba(var(--theme-secondary-rgb, 249, 115, 22), 0.16), transparent 14%);
  pointer-events: none;
}

body[data-mobile-app] .app-frame {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (min-width: 576px) {
  body[data-mobile-app] .app-frame {
    width: min(390px, 100%);
    height: calc(100vh - 36px);
    height: calc(100dvh - 36px);
    min-height: calc(100vh - 36px);
    min-height: calc(100dvh - 36px);
    border-radius: 36px;
    box-shadow: var(--phone-shadow);
    padding-top: 0;
    padding-bottom: 0;
  }
}

body[data-mobile-app] .app-shell {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

body[data-mobile-app] .bottom-nav {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  height: 72px;
  display: block;
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(123, 44, 191, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

body[data-mobile-app] .bottom-nav .nav-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 4px;
  height: 100%;
}

body[data-mobile-app] .top-hero {
  padding: 14px 14px 16px;
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .home-screen {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--theme-secondary-rgb, 249, 115, 22), 0.18), transparent 18%),
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg-1, #2d1147) 0%, var(--theme-primary-dark, #1b0b33) 100%);
}

body[data-mobile-app] .section {
  padding: 14px 14px 0;
}

body[data-mobile-app] .surface,
body[data-mobile-app] .info-card,
body[data-mobile-app] .cart-card,
body[data-mobile-app] .tracking-card,
body[data-mobile-app] .account-card,
body[data-mobile-app] .fidelity-card {
  border-radius: 20px;
}

body[data-mobile-app] .mini-list {
  display: grid;
  gap: 10px;
}

body[data-mobile-app] .mini-list .profile-list-item,
body[data-mobile-app] .mini-list > .list-link {
  margin: 0 !important;
}

body[data-mobile-app] .mini-list > .list-link,
body[data-mobile-app] .mini-list .profile-toggle {
  min-height: 52px;
  border: 1px solid rgba(123, 44, 191, 0.08) !important;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 10, 30, 0.05);
}

body[data-mobile-app] .btn-app {
  height: 52px;
  border-radius: 14px;
}

body[data-mobile-app] .search-bar input,
body[data-mobile-app] .form-field {
  height: 48px;
  border-radius: 14px;
}

body[data-mobile-app] .form-field {
  width: 100%;
  border: 1px solid rgba(123, 44, 191, 0.12);
  background: #fff;
  padding: 0 14px;
  font: inherit;
  font-size: 0.72rem;
  outline: none;
}

body[data-mobile-app] textarea.form-field {
  height: auto;
  min-height: 100px;
  padding: 12px 14px;
  resize: none;
}

body[data-mobile-app] input,
body[data-mobile-app] select,
body[data-mobile-app] textarea,
body[data-mobile-app] .form-field,
body[data-mobile-app] .profile-input {
  font-size: 16px !important;
}

@media (max-width: 640px) {
  body[data-mobile-app] {
    padding: 0;
    align-items: stretch;
  }

  body[data-mobile-app] .app-frame {
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body[data-mobile-showcase] {
  margin: 0;
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(168, 85, 247, 0.26), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(249, 115, 22, 0.18), transparent 18%),
    linear-gradient(180deg, #120816 0%, #170923 18%, #23103c 42%, #2a1445 100%);
  color: #fff;
  overflow-x: hidden;
}

body[data-mobile-showcase]::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 94% 52%, rgba(194, 151, 255, 0.22), transparent 12%);
  pointer-events: none;
}

.poster {
  position: relative;
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 24px 18px 34px;
}

.poster-head {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: start;
  gap: 12px;
  margin-bottom: 22px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.85), rgba(255,255,255,0) 48%),
    linear-gradient(135deg, #2a1445, #a56aff);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  font-size: 1.4rem;
}

.poster-title {
  text-align: center;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.poster-title .kicker {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 900;
  color: rgba(255,255,255,.95);
}

.poster-title .sub {
  display: block;
  font-size: clamp(1.2rem, 2vw, 2.25rem);
  font-weight: 800;
  color: rgba(255,255,255,.9);
}

.poster-aside {
  display: flex;
  justify-content: flex-end;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  justify-items: center;
  max-width: 1460px;
  margin: 0 auto;
}

.phone {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92)),
    linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.75));
  box-shadow: var(--phone-shadow);
  overflow: hidden;
}

.phone.dark {
  background:
    linear-gradient(180deg, rgba(19, 9, 30, 0.96), rgba(13, 6, 23, 0.94));
}

.phone::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 28px;
  border: 1px solid rgba(123, 44, 191, 0.15);
  pointer-events: none;
}

.screen {
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  color: var(--text);
}

.screen.dark {
  background:
    radial-gradient(circle at 50% 16%, rgba(254, 215, 170, 0.12), transparent 24%),
    radial-gradient(circle at 72% 30%, rgba(249, 115, 22, 0.14), transparent 22%),
    linear-gradient(180deg, #2a133f 0%, #220f35 46%, #16091f 100%);
  color: #fff;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.status-bar .sys {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}

.top-shell {
  padding: 0 14px 14px;
}

.screen-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.back-circle,
.icon-square {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  flex: 0 0 auto;
}

.screen.dark .back-circle,
.screen.dark .icon-square {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.title-stack {
  flex: 1;
  min-width: 0;
}

.title-stack h2 {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.title-stack p {
  margin: 3px 0 0;
  font-size: 0.68rem;
  color: var(--muted);
}

.screen.dark .title-stack p {
  color: rgba(255,255,255,.68);
}

.hero-copy {
  text-align: center;
}

.logo-card {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #16091f, #2f1548);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  overflow: hidden;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.4vw, 1.7rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 6px 0 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,.78);
}

.pill-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(32, 201, 151, 0.16);
  color: #75f1b8;
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-product {
  display: block;
  width: 100%;
  border-radius: 22px;
  margin: 14px auto 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 22px 38px rgba(0,0,0,.3);
}

.btn-app {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.25);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  box-shadow: 0 14px 26px rgba(123, 44, 191, 0.24);
}

.quick-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.quick-action {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
}

.quick-action .ico {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.ico.whatsapp { background: rgba(34,197,94,.18); color: #6ff0b7; }
.ico.instagram { background: rgba(236,72,153,.18); color: #f9a8d4; }
.ico.info { background: rgba(249,115,22,.18); color: #fdba74; }

.delivery-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,.9);
  justify-content: center;
}

.delivery-note i {
  color: #f5bf33;
  font-size: 1rem;
}

.surface-area {
  height: 100%;
  background: #fff;
  color: var(--text);
}

.phone-screen-wrap {
  padding: 12px 12px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.search-field {
  width: 100%;
  border: 1px solid rgba(123,44,191,.12);
  background: #fff;
  border-radius: 14px;
  padding: 11px 14px 11px 38px;
  outline: none;
  font-size: 0.72rem;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(16, 9, 28, 0.04);
}

.search-wrap {
  position: relative;
}

.search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8e879d;
  font-size: 0.72rem;
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(123,44,191,.1);
  background: #fff;
  color: #4a3e5d;
  font-size: 0.67rem;
  font-weight: 800;
  white-space: nowrap;
}

.chip.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
}

.section-label {
  margin: 9px 0 8px;
  font-size: 0.7rem;
  font-weight: 900;
  color: #18111f;
}

.product-list {
  display: grid;
  gap: 9px;
}

.product-row {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(123,44,191,.08);
  background: #fff;
  box-shadow: 0 10px 20px rgba(18, 10, 30, 0.05);
}

.product-row img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.product-row h4 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.product-row p {
  margin: 2px 0 0;
  font-size: 0.58rem;
  line-height: 1.25;
  color: var(--muted);
}

.price {
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  color: #121212;
}

.plus-btn {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  font-size: 0.84rem;
  box-shadow: 0 10px 18px rgba(123,44,191,.22);
}

.product-card-big {
  background: #fff;
  color: var(--text);
}

.product-hero-img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 10px 12px 12px;
}

.product-body h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.product-body p {
  margin: 6px 0 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--muted);
}

.product-price {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 900;
}

.menu-bottom-nav {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(123,44,191,.08);
}

.menu-bottom-nav .items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.menu-bottom-nav .item {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #7b748a;
  text-decoration: none;
  font-size: 0.55rem;
  font-weight: 700;
}

.menu-bottom-nav .item i {
  font-size: 0.96rem;
}

.menu-bottom-nav .item.active {
  color: var(--purple);
}

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(123,44,191,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(18, 10, 30, 0.04);
}

.cart-item + .cart-item {
  margin-top: 8px;
}

.cart-item img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.cart-item h4 {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 900;
}

.cart-item p {
  margin: 3px 0 0;
  font-size: 0.58rem;
  color: var(--muted);
}

.mini-step {
  display: grid;
  gap: 8px;
}

.counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(123,44,191,.12);
  border-radius: 999px;
  padding: 5px 8px;
}

.counter button {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 0;
  background: rgba(123,44,191,.08);
  color: var(--purple);
  font-weight: 900;
  font-size: 0.85rem;
}

.counter strong {
  min-width: 16px;
  text-align: center;
  font-size: 0.68rem;
}

.summary {
  border: 1px solid rgba(123,44,191,.1);
  border-radius: 16px;
  padding: 10px 12px;
  background: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  color: #5b506b;
}

.summary-row.total {
  font-size: 0.84rem;
  font-weight: 900;
  color: #16111f;
}

.fixed-button {
  margin-top: auto;
  padding-top: 8px;
}

.checkout-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.tab-btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  background: #f0ebf8;
  color: #5a4c71;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
}

.form-stack {
  display: grid;
  gap: 8px;
}

.field {
  width: 100%;
  border: 1px solid rgba(123,44,191,.12);
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.68rem;
  outline: none;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pay {
  border: 1px solid rgba(123,44,191,.12);
  border-radius: 12px;
  padding: 9px 6px;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 800;
  background: #fff;
}

.pay.active {
  background: rgba(123,44,191,.08);
  color: var(--purple);
  border-color: var(--purple);
}

.success-wrap {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, #2c1248 0%, #541f90 50%, #2b1246 100%);
  color: #fff;
}

.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti span {
  position: absolute;
  width: 8px;
  height: 16px;
  border-radius: 5px;
  animation: fall 2.7s linear infinite;
}

.confetti span:nth-child(3n) { background: #ffcf33; }
.confetti span:nth-child(3n + 1) { background: #f97316; }
.confetti span:nth-child(3n + 2) { background: #7b2cbf; }

@keyframes fall {
  0% { transform: translateY(-20px) rotate(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(680px) rotate(360deg); opacity: 0; }
}

.success-center {
  display: grid;
  place-items: center;
  padding: 64px 18px 18px;
  text-align: center;
}

.success-mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 2rem;
  margin-bottom: 14px;
}

.success-card {
  width: 100%;
  margin-top: 18px;
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.timeline {
  position: relative;
  padding-left: 16px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(123,44,191,.16);
}

.step {
  position: relative;
  padding-bottom: 10px;
}

.step::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d9d0ea;
  border: 3px solid #fff;
}

.step.done::before {
  background: var(--purple);
}

.step.active::before {
  background: var(--orange);
}

.step h4 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
}

.step small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.56rem;
}

.points-card {
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #5d2492 0%, #7b2cbf 45%, #af61ff 100%);
  color: #fff;
}

.progress {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffcf33, #ff9f1c);
}

.promo-card {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #30103f 0%, #581c87 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}

.promo-card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  display: block;
  filter: saturate(1.04);
}

.promo-body {
  padding: 10px 12px 12px;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-size: 0.56rem;
  font-weight: 800;
}

.promo-body h4 {
  margin: 8px 0 4px;
  font-size: 0.8rem;
  font-weight: 900;
}

.promo-body p {
  margin: 0 0 8px;
  font-size: 0.6rem;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}

.account-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(33, 11, 56, 0.08);
}

.account-header {
  display: grid;
  justify-items: center;
  padding: 12px 12px 10px;
  text-align: center;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #f2edf9;
}

.account-list {
  display: grid;
  gap: 4px;
}

.account-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(123,44,191,.08);
  color: #241833;
  font-size: 0.66rem;
  font-weight: 700;
}

.account-item:first-child {
  border-top: 0;
}

.account-item .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-item i {
  color: var(--purple);
}

.bottom-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 7px 6px 8px;
  border-top: 1px solid rgba(123,44,191,.08);
  background: rgba(255,255,255,.96);
}

.bottom-nav a {
  display: grid;
  justify-items: center;
  gap: 3px;
  text-decoration: none;
  color: #7a718a;
  font-size: 0.54rem;
  font-weight: 800;
}

.bottom-nav a i {
  font-size: 0.96rem;
}

.bottom-nav a.active {
  color: var(--purple);
}

body[data-mobile-app] .status-bar,
body[data-mobile-app] .app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body[data-mobile-app] .status-bar {
  padding: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #17111f;
}

body[data-mobile-app] .home-screen .status-bar,
body[data-mobile-app] .success-hero .status-bar {
  color: rgba(255, 255, 255, 0.92);
}

body[data-mobile-app] .status-bar .icons {
  display: flex;
  align-items: center;
  gap: 7px;
}

body[data-mobile-app] .app-header {
  padding: 2px 0 12px;
}

body[data-mobile-app] .back-btn,
body[data-mobile-app] .icon-btn,
body[data-mobile-app] .mini-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(123, 44, 191, 0.1);
  color: var(--purple);
}

body[data-mobile-app] .success-hero .back-btn,
.success-hero .back-btn {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
}

body[data-mobile-app] .success-hero .back-btn:hover,
.success-hero .back-btn:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
}

body[data-mobile-app] .icon-btn {
  position: relative;
}

body[data-mobile-app] .app-title {
  flex: 1;
  min-width: 0;
}

body[data-mobile-app] .app-title h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

body[data-mobile-app] .app-title p {
  margin: 3px 0 0;
  font-size: 0.68rem;
  color: var(--muted);
}

body[data-mobile-app] .store-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

body[data-mobile-app] .brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

body[data-mobile-app] .brand-logo img,
body[data-mobile-app] .mini-list-item img,
body[data-mobile-app] .product-thumb,
body[data-mobile-app] .hero-product {
  display: block;
  object-fit: cover;
}

body[data-mobile-app] .brand-logo img {
  width: 100%;
  height: 100%;
}

body[data-mobile-app] .brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

body[data-mobile-app] .brand-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  margin-top: 2px;
}

body[data-mobile-app] .home-identity {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 6px;
}

body[data-mobile-app] .home-identity h1 {
  margin: 2px 0 0;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

body[data-mobile-app] .home-identity p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-mobile-app] .home-main {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

body[data-mobile-app] .small-muted,
body[data-mobile-app] .section-title small {
  color: var(--muted);
}

body[data-mobile-app] .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  color: #8ef0b8;
  font-size: 0.72rem;
  font-weight: 800;
}

body[data-mobile-app] .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

body[data-mobile-app] .hero-card,
body[data-mobile-app] .surface,
body[data-mobile-app] .info-card,
body[data-mobile-app] .cart-card,
body[data-mobile-app] .tracking-card,
body[data-mobile-app] .account-card,
body[data-mobile-app] .checkout-card,
body[data-mobile-app] .payment-card,
body[data-mobile-app] .success-card {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(123, 44, 191, 0.08);
  box-shadow: 0 12px 30px rgba(17, 10, 30, 0.06);
}

body[data-mobile-app] .hero-card {
  border-radius: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-mobile-app] .hero-product {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

body[data-mobile-app] .home-banner-image {
  display: block;
  height: auto;
  margin-inline: auto;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
}

body[data-mobile-app] .quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

body[data-mobile-app] .quick-action {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  padding: 0;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
}

body[data-mobile-app] .quick-action span {
  color: rgba(255, 255, 255, 0.92);
}

body[data-mobile-app] .quick-action .bi {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

body[data-mobile-app] .quick-action.whatsapp .bi {
  background: rgba(34, 197, 94, 0.16);
  color: #8ef0b8;
}

body[data-mobile-app] .quick-action.instagram .bi {
  background: rgba(236, 72, 153, 0.18);
  color: #f9a8d4;
}

body[data-mobile-app] .quick-action.info .bi {
  background: rgba(249, 115, 22, 0.18);
  color: var(--orange);
}

body[data-mobile-app] .quick-action.info {
  appearance: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-mobile-app] .home-screen .delivery-note {
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-mobile-app] .status-pill.closed {
  color: #fecaca;
}

body[data-mobile-app] .status-pill.closed .status-dot {
  background: #ef4444;
}

body[data-mobile-app] .home-info-panel {
  background:
    linear-gradient(135deg, rgba(var(--theme-primary-rgb, 123, 44, 191), 0.38), rgba(var(--theme-primary-rgb, 123, 44, 191), 0.18)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(var(--theme-secondary-rgb, 249, 115, 22), 0.22);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  text-align: left;
}

body[data-mobile-app] .home-info-head {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

body[data-mobile-app] .home-info-head > span {
  background: rgba(var(--theme-secondary-rgb, 249, 115, 22), 0.2);
  border-radius: 14px;
  color: var(--orange);
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
}

body[data-mobile-app] .home-info-head strong {
  display: block;
  font-size: .9rem;
  font-weight: 900;
}

body[data-mobile-app] .home-info-head p {
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  line-height: 1.35;
  margin: 3px 0 0;
}

body[data-mobile-app] .home-info-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-mobile-app] .home-info-grid > div {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(var(--theme-secondary-rgb, 249, 115, 22), .18);
  border-radius: 17px;
  display: grid;
  gap: 3px;
  padding: 11px;
}

body[data-mobile-app] .home-info-grid i {
  color: var(--orange);
  font-size: .95rem;
}

body[data-mobile-app] .home-info-grid span,
body[data-mobile-app] .home-info-line {
  color: rgba(255, 255, 255, .68);
  font-size: .68rem;
  font-weight: 700;
}

body[data-mobile-app] .home-info-grid strong {
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}

body[data-mobile-app] .home-info-line {
  align-items: center;
  display: flex;
  gap: 8px;
  line-height: 1.35;
}

body[data-mobile-app] .home-info-line i {
  color: var(--orange);
}

body[data-mobile-app] .home-screen .btn-app {
  height: 46px;
}

body[data-mobile-app] .badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.08);
  color: var(--purple);
  font-size: 0.62rem;
  font-weight: 800;
}

body[data-mobile-app] .section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

body[data-mobile-app] .section-title h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

body[data-mobile-app] .section-title small {
  font-size: 0.64rem;
  white-space: nowrap;
}

body[data-mobile-app] .price {
  font-size: 0.9rem;
  font-weight: 900;
  color: #17111f;
}

body[data-mobile-app] .price.small {
  font-size: 0.72rem;
}

body[data-mobile-app] .mini-list-item,
body[data-mobile-app] .product-card,
body[data-mobile-app] .list-link,
body[data-mobile-app] .option-card {
  border: 1px solid rgba(123, 44, 191, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 10, 30, 0.05);
}

body[data-mobile-app] .mini-list-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
}

body[data-mobile-app] .mini-list-item img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

body[data-mobile-app] .mini-list-item h4,
body[data-mobile-app] .product-card h4 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

body[data-mobile-app] .mini-list-item p,
body[data-mobile-app] .product-card p {
  margin: 4px 0 0;
  font-size: 0.62rem;
  line-height: 1.35;
  color: var(--muted);
}

body[data-mobile-app] .product-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
}

body[data-mobile-app] .promo-product-card {
  border-color: rgba(245, 158, 11, 0.42);
  background: linear-gradient(135deg, #fffaf0 0%, #fff 52%);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.12);
}

body[data-mobile-app] .product-promo-ribbon,
body[data-mobile-app] .product-detail-promo {
  align-items: center;
  background: linear-gradient(135deg, #f59e0b, #facc15);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.24);
  color: #3b2300;
  display: inline-flex;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  padding: 5px 9px;
  text-transform: uppercase;
}

body[data-mobile-app] .product-promo-ribbon {
  position: absolute;
  right: 9px;
  top: 9px;
  z-index: 2;
}

body[data-mobile-app] .product-detail-card {
  position: relative;
}

body[data-mobile-app] .product-detail-promo {
  left: 14px;
  position: absolute;
  top: 14px;
  z-index: 2;
}

body[data-mobile-app] .old-price {
  color: #a69aaa;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 3px;
  text-decoration: line-through;
}

body[data-mobile-app] .product-thumb {
  width: 82px;
  height: 82px;
  border-radius: 16px;
}

body[data-mobile-app] .search-bar {
  position: relative;
}

body[data-mobile-app] .search-bar i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b8498;
}

body[data-mobile-app] .search-bar input {
  width: 100%;
  border: 1px solid rgba(123, 44, 191, 0.12);
  background: #fff;
  padding: 0 14px 0 40px;
  font-size: 0.72rem;
  outline: none;
  box-shadow: 0 8px 20px rgba(17, 10, 30, 0.04);
}

body[data-mobile-app] .chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 8px;
  padding: 2px 2px 8px;
  scrollbar-width: none;
  scroll-padding-inline: 2px;
}

body[data-mobile-app] .chip-row::-webkit-scrollbar {
  display: none;
}

body[data-mobile-app] .chip {
  flex: 0 0 auto;
  border: 1px solid rgba(123, 44, 191, 0.12);
  background: #fff;
  color: #4a3e5d;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(17, 10, 30, 0.04);
}

body[data-mobile-app] .chip.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
}

body[data-mobile-app] .product-screen-section {
  padding-top: 10px;
  padding-bottom: 0;
}

body[data-mobile-app] .product-screen-section + .product-screen-section {
  padding-top: 12px;
}

body[data-mobile-app] .product-detail-card {
  overflow: hidden;
  border: 1px solid rgba(123, 44, 191, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 10, 30, 0.08);
}

body[data-mobile-app] .product-detail-card img {
  width: 100%;
  height: 188px;
  display: block;
  object-fit: cover;
}

body[data-mobile-app] .product-detail-body {
  padding: 16px;
}

body[data-mobile-app] .product-detail-body h4 {
  margin: 0;
  color: #1f1630;
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

body[data-mobile-app] .product-detail-body p {
  margin: 10px 0 0;
  color: #5d536d;
  font-size: 0.82rem;
  line-height: 1.42;
}

body[data-mobile-app] .product-detail-price {
  margin-top: 10px;
  color: #17111f;
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

body[data-mobile-app] .product-section-title {
  margin-bottom: 8px;
}

body[data-mobile-app] .product-section-title h3 {
  color: #21162f;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0;
}

body[data-mobile-app] .option-stack {
  display: grid;
  gap: 8px;
}

body[data-mobile-app] .option-card {
  position: relative;
  min-height: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

body[data-mobile-app] .option-card.selected {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 26px rgba(123, 44, 191, 0.1);
}

body[data-mobile-app] .option-card.is-unavailable {
  opacity: .62;
  cursor: not-allowed;
}

body[data-mobile-app] .option-card.is-unavailable strong {
  color: #b42318;
}

body[data-mobile-app] .option-card.is-unavailable .option-input {
  cursor: not-allowed;
}

body[data-mobile-app] .option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
}

body[data-mobile-app] .option-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

body[data-mobile-app] .option-card span {
  min-width: 0;
  color: #21162f;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.2;
}

body[data-mobile-app] .option-card strong {
  color: #5d536d;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

body[data-mobile-app] .option-card em {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eee8f8;
  color: transparent;
  font-size: 0.76rem;
  font-style: normal;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

body[data-mobile-app] .option-card.selected em {
  background: var(--purple);
  color: #fff;
  transform: scale(1.02);
}

body[data-mobile-app] .option-check {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ece6f8;
  color: transparent;
  font-size: 0.78rem;
}

body[data-mobile-app] .option-card.selected .option-check {
  background: var(--purple);
  color: #fff;
}

body[data-mobile-app] .product-note {
  min-height: 96px;
  padding-top: 14px;
  line-height: 1.35;
  resize: none;
}

body[data-mobile-app] .product-total-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(123, 44, 191, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(17, 10, 30, 0.06);
}

body[data-mobile-app] .product-total-value {
  min-width: 92px;
  text-align: right;
}

body[data-mobile-app] .product-total-value span {
  display: block;
  color: #948aa3;
  font-size: 0.72rem;
  font-weight: 800;
}

body[data-mobile-app] .product-total-value strong {
  display: block;
  margin-top: 2px;
  color: #17111f;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

body[data-mobile-app] .qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(123, 44, 191, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
}

body[data-mobile-app] .qty-control button {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(123, 44, 191, 0.08);
  color: var(--purple);
  font-weight: 900;
}

body[data-mobile-app] .qty-control strong {
  min-width: 16px;
  text-align: center;
}

body[data-mobile-app] .btn-primary-app,
body[data-mobile-app] .btn-purple-app {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  border: 0;
  box-shadow: 0 14px 26px rgba(123, 44, 191, 0.24);
}

body[data-mobile-app] .btn-ghost-app {
  background: #fff;
  color: var(--purple);
  border: 1px solid rgba(123, 44, 191, 0.12);
}

body[data-mobile-app] .post-add-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

body[data-mobile-app] .post-add-actions .btn-app {
  min-width: 0;
  width: 100%;
}

body[data-mobile-app] .customizer-footer .post-add-actions {
  flex: 1;
}

body[data-mobile-app] .fixed-action,
body[data-mobile-app] .floating-bar {
  padding: 14px;
}

body[data-mobile-app] .fixed-action {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin-top: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), #fff 34%);
}

body[data-mobile-app] .surface > img {
  max-height: 230px;
}

body[data-mobile-app] .payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

body[data-mobile-app] .payment-card {
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
}

body[data-mobile-app] .payment-card.active {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .delivery-area-box {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

body[data-mobile-app] .addressless-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(123, 44, 191, 0.14);
  border-radius: 16px;
  background: rgba(123, 44, 191, 0.06);
}

body[data-mobile-app] .addressless-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
}

body[data-mobile-app] .addressless-toggle strong,
body[data-mobile-app] .addressless-toggle small {
  display: block;
}

body[data-mobile-app] .addressless-toggle strong {
  color: #1f1630;
  font-size: 0.82rem;
  font-weight: 900;
}

body[data-mobile-app] .addressless-toggle small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.3;
  font-weight: 700;
}

body[data-mobile-app] .addressless-hint {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.09);
  color: #9a3412;
  font-size: 0.76rem;
  font-weight: 800;
}

body[data-mobile-app] .delivery-location-btn {
  min-height: 46px;
  color: var(--purple);
  background: rgba(123, 44, 191, 0.07);
  border: 1px solid rgba(123, 44, 191, 0.14);
}

body[data-mobile-app] .delivery-distance-note {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  font-size: 0.74rem;
  font-weight: 800;
}

body[data-mobile-app] .delivery-area-grid .payment-card {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 62px;
  line-height: 1.2;
}

body[data-mobile-app] .delivery-area-grid .payment-card small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
}

body[data-mobile-app] .delivery-area-grid .payment-card.active small {
  color: var(--purple);
}

body[data-mobile-app] .progress-soft {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

body[data-mobile-app] .progress-soft span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffcf33, #ff9f1c);
}

body[data-mobile-app] .progress-on-card {
  background: rgba(255, 255, 255, 0.18);
}

body[data-mobile-app] .fidelity-card {
  border-radius: 24px;
  padding: 16px;
  background: linear-gradient(135deg, #5d2492 0%, #7b2cbf 45%, #af61ff 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 18px 38px rgba(123, 44, 191, 0.24);
}

body[data-mobile-app] .points-hero-card {
  position: relative;
  border-radius: 16px;
  padding: 20px 18px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #4a167a 0%, #7b2cbf 56%, #531b85 100%);
  box-shadow: 0 16px 30px rgba(61, 20, 99, 0.2);
}

body[data-mobile-app] .points-hero-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.9;
}

body[data-mobile-app] .points-hero-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.92rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

body[data-mobile-app] .points-hero-card small {
  display: block;
  margin-top: 8px;
  font-size: 0.64rem;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

body[data-mobile-app] .points-spark {
  position: absolute;
  right: 14px;
  top: 14px;
  color: rgba(255, 255, 255, 0.46);
}

body[data-mobile-app] .points-hero-card .progress-soft {
  width: 78%;
  margin: 16px auto 0;
}

body[data-mobile-app] .loyalty-panel {
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(123, 44, 191, 0.08);
  box-shadow: 0 10px 24px rgba(17, 10, 30, 0.05);
}

body[data-mobile-app] .loyalty-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.72rem;
  color: #342642;
  font-weight: 600;
}

body[data-mobile-app] .loyalty-rule i {
  color: var(--orange);
  width: 18px;
  text-align: center;
}

body[data-mobile-app] .loyalty-history {
  display: grid;
  gap: 2px;
}

body[data-mobile-app] .loyalty-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .loyalty-row:first-child {
  border-top: 0;
}

body[data-mobile-app] .loyalty-row strong {
  font-size: 0.72rem;
}

body[data-mobile-app] .loyalty-row strong.positive {
  color: #16a34a;
}

body[data-mobile-app] .loyalty-row strong.negative {
  color: #1f1630;
}

body[data-mobile-app] .loyalty-row span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #1f1630;
}

body[data-mobile-app] .loyalty-row small {
  display: block;
  margin-top: 2px;
  font-size: 0.62rem;
  color: var(--muted);
}

body[data-mobile-app] .success-hero {
  position: relative;
  min-height: 100%;
  padding: 14px 14px 22px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #2c1248 0%, #541f90 50%, #2b1246 100%);
  color: #fff;
}

body[data-mobile-app] .confetti-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

body[data-mobile-app] .confetti-layer .confetti {
  position: absolute;
  top: 0;
  width: 8px;
  height: 16px;
  border-radius: 6px;
  animation: fall 2.7s linear infinite;
}

body[data-mobile-app] .success-mark {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  margin: 12px auto 10px;
}

body[data-mobile-app] .success-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

body[data-mobile-app] .success-hero h2 {
  font-size: 1.55rem !important;
}

body[data-mobile-app] .success-hero .surface {
  padding: 14px !important;
}

body[data-mobile-app] .success-hero .surface > div[style*="font-size:2rem"] {
  font-size: 1.55rem !important;
}

body[data-mobile-app] .success-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
  padding-top: 0;
}

body[data-mobile-app] .success-actions .btn-app {
  min-height: 48px;
}

body[data-mobile-app] .success-actions .btn-ghost-app {
  color: var(--app-purple);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

body[data-mobile-app] .success-pix-wrap {
  margin-top: 4px;
}

body[data-mobile-app] .success-pix-wrap .pix-copy-card {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  text-align: left;
}

body[data-mobile-app] .success-pix-wrap .pix-copy-card span,
body[data-mobile-app] .success-pix-wrap .pix-copy-card small {
  color: rgba(255, 255, 255, 0.72);
}

body[data-mobile-app] .success-pix-wrap .pix-copy-key {
  color: #fff;
}

body[data-mobile-app] .success-mark.payment-waiting {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
}

body[data-mobile-app] .success-pix-wrap .pix-auto-card,
body[data-mobile-app] .pix-auto-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  color: #1f1630;
  border: 1px solid rgba(123, 44, 191, 0.12);
  box-shadow: 0 18px 42px rgba(26, 5, 44, 0.22);
}

body[data-mobile-app] .pix-auto-head {
  display: grid;
  gap: 5px;
}

body[data-mobile-app] .pix-auto-head strong {
  color: #1f1630;
  font-size: 1.08rem;
  line-height: 1.15;
}

body[data-mobile-app] .pix-auto-head small,
body[data-mobile-app] .pix-auto-note,
body[data-mobile-app] .pix-auto-info span,
body[data-mobile-app] .pix-auto-info small {
  color: #6f6281;
}

body[data-mobile-app] .pix-auto-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ffe7a3;
  color: #5b3500;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(142, 87, 0, 0.12);
}

body[data-mobile-app] .pix-auto-body {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 14px;
}

body[data-mobile-app] .pix-auto-qr {
  width: 118px;
  height: 118px;
  object-fit: contain;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eee7f5;
}

body[data-mobile-app] .pix-auto-info {
  display: grid;
  gap: 4px;
  color: #1f1630;
}

body[data-mobile-app] .pix-auto-info span {
  color: #6a5a79;
  font-weight: 800;
}

body[data-mobile-app] .pix-auto-info strong {
  color: #5b0f78;
  font-size: 1.55rem;
  line-height: 1;
}

body[data-mobile-app] .pix-auto-info small {
  color: #7a6b89;
  font-weight: 800;
}

body[data-mobile-app] .success-pix-wrap .pix-auto-info span,
body[data-mobile-app] .success-pix-wrap .pix-auto-info strong,
body[data-mobile-app] .success-pix-wrap .pix-auto-info small {
  text-shadow: none;
}

body[data-mobile-app] .success-pix-wrap .pix-auto-info span {
  color: #6a5a79 !important;
}

body[data-mobile-app] .success-pix-wrap .pix-auto-info strong {
  color: #5b0f78 !important;
}

body[data-mobile-app] .success-pix-wrap .pix-auto-info small {
  color: #7a6b89 !important;
}

body[data-mobile-app] .success-pix-wrap .pix-auto-head small {
  color: #6f6281 !important;
  text-shadow: none;
}

body[data-mobile-app] .pix-auto-copy {
  width: 100%;
  justify-content: center;
  min-height: 50px;
  color: #fff;
  background: #6f1a8f;
}

body[data-mobile-app] .pix-auto-note {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #6a5a79;
}

body[data-mobile-app] .checkout-address-summary {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(123, 44, 191, 0.14);
  border-radius: 18px;
  background: #fbf8ff;
}

body[data-mobile-app] .checkout-customer-name {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid rgba(123, 44, 191, 0.12);
  border-radius: 16px;
  background: #fff;
}

body[data-mobile-app] .checkout-customer-name span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

body[data-mobile-app] .checkout-customer-name strong {
  color: #1f1630;
  font-size: 0.98rem;
  line-height: 1.2;
}

body[data-mobile-app] .checkout-address-summary span,
body[data-mobile-app] .checkout-address-list span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

body[data-mobile-app] .checkout-address-summary strong {
  display: block;
  margin-top: 3px;
  color: #1f1630;
  line-height: 1.25;
}

body[data-mobile-app] .checkout-address-summary .btn-app {
  min-height: 42px;
}

body[data-mobile-app] .checkout-address-list {
  display: grid;
  gap: 8px;
}

body[data-mobile-app] .checkout-address-list button {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(123, 44, 191, 0.12);
  border-radius: 16px;
  background: #fff;
  color: #2b173c;
  text-align: left;
  font-weight: 800;
}

body[data-mobile-app] .checkout-address-list button.active {
  border-color: rgba(123, 44, 191, 0.5);
  background: #f6edff;
}

body[data-mobile-app] .delivery-area-box.compact {
  padding: 12px;
}

body[data-mobile-app] .delivery-area-box [data-action="checkout-geocode-address"],
body[data-mobile-app] .delivery-area-grid,
body[data-mobile-app] .checkout-card .addressless-hint,
body[data-mobile-app] .delivery-area-box > .section-title {
  display: none !important;
}

body[data-mobile-app] .checkout-address-sheet {
  display: grid;
  grid-template-rows: auto auto auto;
  height: auto;
  min-height: 0;
  max-height: min(660px, calc(100vh - 28px));
}

body[data-mobile-app] .checkout-address-form {
  display: grid;
  gap: 10px;
  padding: 0 18px 14px;
  overflow: auto;
  max-height: 52vh;
}

body[data-mobile-app] .pix-auto-card-compact {
  margin-top: 14px;
  padding: 14px;
  gap: 12px;
  box-shadow: none;
  border: 1px solid #eadff4;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  color: #1f1630;
  border-radius: 18px;
  overflow: hidden;
}

body[data-mobile-app] .pix-auto-card-compact .pix-auto-head strong {
  font-size: 1rem;
}

body[data-mobile-app] .pix-auto-card-compact .pix-auto-head small {
  font-size: 0.74rem;
  line-height: 1.25;
}

body[data-mobile-app] .pix-auto-card-compact .pix-auto-body {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

body[data-mobile-app] .pix-auto-card-compact .pix-auto-qr {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  padding: 6px;
}

body[data-mobile-app] .pix-auto-card-compact .pix-auto-info strong {
  font-size: 1.2rem;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}

body[data-mobile-app] .pix-auto-card-compact .pix-auto-info small {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

body[data-mobile-app] .pix-auto-card-compact .pix-auto-copy {
  min-height: 46px;
}

body[data-mobile-app] .pix-auto-card-compact .pix-auto-note {
  justify-content: flex-start;
  font-size: 0.72rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@media (max-width: 420px) {
  body[data-mobile-app] .pix-auto-body {
    grid-template-columns: 104px 1fr;
  }

  body[data-mobile-app] .pix-auto-qr {
    width: 104px;
    height: 104px;
  }

  body[data-mobile-app] .pix-auto-info strong {
    font-size: 1.32rem;
  }

  body[data-mobile-app] .pix-auto-card-compact .pix-auto-body {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  body[data-mobile-app] .pix-auto-card-compact .pix-auto-qr {
    width: 86px;
    height: 86px;
  }

  body[data-mobile-app] .pix-auto-card-compact .pix-auto-info strong {
    font-size: 1.05rem;
  }
}

body[data-mobile-app] .timeline {
  position: relative;
  padding-left: 22px;
}

body[data-mobile-app] .timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 14px;
  width: 2px;
  background: rgba(123, 44, 191, 0.16);
}

body[data-mobile-app] .timeline-step {
  position: relative;
  min-height: 48px;
  padding: 1px 0 14px;
}

body[data-mobile-app] .timeline-step::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d9d0ea;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .timeline-step.done::before {
  background: var(--purple);
}

body[data-mobile-app] .timeline-step.active::before {
  background: var(--orange);
}

body[data-mobile-app] .timeline-step h5 {
  margin: 0;
  color: #1f1630;
  font-size: 0.76rem;
  line-height: 1.22;
  font-weight: 900;
}

body[data-mobile-app] .timeline-step .time {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.25;
  font-weight: 700;
}

body[data-mobile-app] .order-status-card,
body[data-mobile-app] .order-detail-card {
  border-radius: 20px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(123, 44, 191, 0.08);
  box-shadow: 0 12px 26px rgba(17, 10, 30, 0.055);
}

body[data-mobile-app] .order-status-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .order-status-head h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

body[data-mobile-app] .order-status-head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.3;
  font-weight: 700;
}

body[data-mobile-app] .order-status-head > span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  font-size: 0.58rem;
  font-weight: 900;
  white-space: nowrap;
}

body[data-mobile-app] .order-timeline {
  margin-top: 16px;
  margin-bottom: -8px;
}

body[data-mobile-app] .order-detail-link {
  width: 100%;
  border: 0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 13px 14px;
  background: rgba(123, 44, 191, 0.06);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 900;
}

body[data-mobile-app] .order-address-box {
  margin-top: 14px;
  border-radius: 16px;
  padding: 14px;
  background: #fbfafc;
  border: 1px solid rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .order-address-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
}

body[data-mobile-app] .order-address-box strong {
  display: block;
  color: #1f1630;
  font-size: 0.78rem;
  line-height: 1.45;
}

body[data-mobile-app] .order-total-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(123, 44, 191, 0.08);
  font-size: 0.86rem;
}

body[data-mobile-app] .pix-copy-section {
  padding-top: 14px;
}

body[data-mobile-app] .pix-copy-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(123, 44, 191, 0.14);
  box-shadow: 0 12px 28px rgba(42, 22, 65, 0.07);
}

body[data-mobile-app] .pix-copy-card span,
body[data-mobile-app] .pix-copy-card small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

body[data-mobile-app] .pix-copy-key {
  display: block;
  margin: 3px 0;
  color: #1f1630;
  font-size: 0.98rem;
  line-height: 1.25;
  word-break: break-word;
}

body[data-mobile-app] .pix-copy-card .btn-app {
  min-height: 42px;
  padding: 0 14px;
  gap: 6px;
  white-space: nowrap;
}

body[data-mobile-app] .pix-copy-card.pix-auto-card {
  grid-template-columns: 1fr;
}

body[data-mobile-app] .order-detail-card .pix-auto-card-compact {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
}

body[data-mobile-app] .order-detail-card .pix-auto-card-compact .pix-auto-badge {
  max-width: 100%;
  white-space: normal;
  line-height: 1.15;
}

body[data-mobile-app] .order-detail-card .pix-auto-card-compact .pix-auto-copy {
  width: 100%;
  white-space: normal;
}

body[data-mobile-app] .track-whatsapp-section {
  padding-top: 14px;
  padding-bottom: 24px;
}

body[data-mobile-app] .btn-whatsapp-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  color: #16a34a;
  background: #fff;
  border: 1px solid rgba(34, 197, 94, 0.42);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.08);
}

body[data-mobile-app] .list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--text);
}

body[data-mobile-app] .empty-state {
  padding: 18px;
  text-align: center;
  color: var(--muted);
}

body[data-mobile-app] .promo-stack {
  display: grid;
  gap: 12px;
  padding-bottom: 14px;
}

body[data-mobile-app] .promo-offer-card {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: #1b0b33;
  box-shadow: 0 14px 28px rgba(27, 11, 51, 0.16);
}

body[data-mobile-app] .promo-offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-mobile-app] .promo-offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 11, 51, 0.92) 0%, rgba(27, 11, 51, 0.74) 48%, rgba(27, 11, 51, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 122, 0, 0.18), rgba(123, 44, 191, 0.14));
}

body[data-mobile-app] .promo-offer-content {
  position: relative;
  z-index: 1;
  width: 68%;
  padding: 14px;
}

body[data-mobile-app] .promo-offer-content span {
  display: inline-flex;
  margin-bottom: 4px;
  color: #ffcf33;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

body[data-mobile-app] .promo-offer-content h3 {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

body[data-mobile-app] .promo-offer-content strong {
  display: block;
  margin-top: 6px;
  color: #ff7a00;
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 900;
}

body[data-mobile-app] .promo-offer-content p {
  margin: 5px 0 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  line-height: 1.25;
}

body[data-mobile-app] .promo-offer-content button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-size: 0.62rem;
  font-weight: 900;
}

body[data-mobile-app] .customizer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(16, 8, 28, 0.58);
  backdrop-filter: blur(6px);
}

body[data-mobile-app] .customizer-sheet {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 80;
  width: min(calc(100% - 20px), 420px);
  height: min(84vh, 760px);
  max-height: calc(100vh - 84px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overscroll-behavior: contain;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(123, 44, 191, 0.15);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: sheetUp .2s ease both;
  box-sizing: border-box;
}

body[data-mobile-app] .map-picker-sheet {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 80;
  width: min(calc(100% - 20px), 420px);
  height: min(88vh, 760px);
  max-height: calc(100vh - 58px);
  display: grid;
  grid-template-rows: auto minmax(320px, 1fr) auto;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(123, 44, 191, 0.15);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: sheetUp .2s ease both;
  box-sizing: border-box;
}

body[data-mobile-app] .map-picker-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 8px 14px 12px;
}

body[data-mobile-app] .map-picker-head span {
  display: block;
  margin-bottom: 3px;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 900;
}

body[data-mobile-app] .map-picker-head h3 {
  margin: 0;
  color: #1f1630;
  font-size: 1.05rem;
  font-weight: 900;
}

body[data-mobile-app] .map-picker-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 700;
}

body[data-mobile-app] .delivery-map-picker {
  min-height: 320px;
  margin: 0 14px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(123, 44, 191, 0.14);
  background: #f5f1fb;
}

body[data-mobile-app] .map-picker-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  padding: 12px 14px 14px;
}

@supports (height: 100dvh) {
  body[data-mobile-app] .customizer-sheet {
    height: min(84dvh, 760px);
    max-height: calc(100dvh - 84px);
  }

  body[data-mobile-app] .map-picker-sheet {
    height: min(88dvh, 760px);
    max-height: calc(100dvh - 58px);
  }

  body[data-mobile-app] .checkout-address-sheet {
    height: auto;
    max-height: min(660px, calc(100dvh - 28px));
  }
}

body[data-mobile-app] .map-picker-sheet.checkout-address-sheet {
  height: auto;
  min-height: 0;
  max-height: min(660px, calc(100vh - 28px));
  grid-template-rows: auto auto auto;
}

body[data-mobile-app] .sheet-grabber {
  width: 42px;
  height: 5px;
  margin: 10px auto 6px;
  border-radius: 999px;
  background: #ded5ea;
}

body[data-mobile-app] .customizer-head {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr 34px;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 14px;
  border-bottom: 1px solid rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .customizer-head img {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(17, 10, 30, 0.14);
}

body[data-mobile-app] .customizer-head span {
  display: block;
  margin-bottom: 3px;
  color: var(--purple);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

body[data-mobile-app] .customizer-head h3 {
  margin: 0;
  color: #1f1630;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

body[data-mobile-app] .customizer-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.3;
}

body[data-mobile-app] .sheet-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #4a3e5d;
  background: #f5f0fb;
}

body[data-mobile-app] .customizer-body {
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 14px 16px 34px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(123, 44, 191, 0.42) rgba(123, 44, 191, 0.08);
  -webkit-overflow-scrolling: touch;
}

body[data-mobile-app] .customizer-body::-webkit-scrollbar {
  width: 6px;
}

body[data-mobile-app] .customizer-body::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .customizer-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.42);
}

body[data-mobile-app] .customizer-group + .customizer-group {
  margin-top: 16px;
}

body[data-mobile-app] .customizer-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

body[data-mobile-app] .customizer-title h4 {
  margin: 0;
  color: #21162f;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
}

body[data-mobile-app] .customizer-title small {
  color: #988ca8;
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}

body[data-mobile-app] .customizer-options {
  display: grid;
  gap: 8px;
}

body[data-mobile-app] .customizer-option {
  position: relative;
  min-height: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(123, 44, 191, 0.1);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 10, 30, 0.04);
  cursor: pointer;
}

body[data-mobile-app] .customizer-option.selected {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.08), #fff);
}

body[data-mobile-app] .customizer-option.is-unavailable {
  opacity: .62;
  cursor: not-allowed;
}

body[data-mobile-app] .customizer-option.is-unavailable strong {
  color: #b42318;
}

body[data-mobile-app] .customizer-option.is-unavailable .option-input {
  cursor: not-allowed;
}

body[data-mobile-app] .customizer-option span {
  min-width: 0;
  color: #21162f;
  font-size: 0.74rem;
  font-weight: 650;
}

body[data-mobile-app] .customizer-option strong {
  color: #5d536d;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

body[data-mobile-app] .customizer-option em {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: transparent;
  background: #eee8f8;
  font-size: 0.76rem;
  font-style: normal;
}

body[data-mobile-app] .customizer-option.selected em {
  color: #fff;
  background: var(--purple);
}

body[data-mobile-app] .customizer-note {
  min-height: 86px;
  padding-top: 14px;
  resize: none;
}

body[data-mobile-app] .customizer-footer {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(123, 44, 191, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff);
}

body[data-mobile-app] .cart-float {
  position: fixed;
  left: 50%;
  bottom: calc(74px + env(safe-area-inset-bottom));
  z-index: 45;
  width: min(92%, 390px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 30px;
  gap: 8px;
  transform: translateX(-50%);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(31, 11, 56, 0.94);
  box-shadow: 0 18px 44px rgba(17, 10, 30, 0.34);
  backdrop-filter: blur(10px);
  animation: floatUp .2s ease both;
}

body[data-mobile-app] .cart-float.no-bottom-nav {
  bottom: calc(16px + env(safe-area-inset-bottom));
}

body[data-mobile-app] .cart-float-main,
body[data-mobile-app] .cart-float-checkout,
body[data-mobile-app] .cart-float-close {
  border: 0;
  border-radius: 16px;
  font-weight: 950;
}

body[data-mobile-app] .cart-float-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: #fff;
  background: transparent;
  text-align: left;
}

body[data-mobile-app] .cart-float-main span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}

body[data-mobile-app] .cart-float-main strong {
  font-size: 0.78rem;
  white-space: nowrap;
}

body[data-mobile-app] .cart-float-checkout {
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-size: 0.72rem;
}

body[data-mobile-app] .cart-float-close {
  display: grid;
  place-items: center;
  min-width: 30px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  font-size: 1rem;
}

body[data-mobile-app] .cookie-consent-card {
  position: fixed;
  left: 50%;
  bottom: calc(82px + env(safe-area-inset-bottom));
  z-index: 75;
  width: min(92vw, 380px);
  transform: translateX(-50%);
  padding: 14px;
  border: 1px solid rgba(123, 44, 191, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(35, 16, 54, 0.22);
  backdrop-filter: blur(16px);
}

body[data-mobile-app] .cookie-consent-card strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
  margin-bottom: 4px;
}

body[data-mobile-app] .cookie-consent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

body[data-mobile-app] .cookie-consent-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

body[data-mobile-app] .cookie-consent-actions button {
  border: 0;
  border-radius: 14px;
  min-height: 42px;
  font-weight: 900;
  font-size: 0.78rem;
}

body[data-mobile-app] .cookie-consent-actions button:first-child {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 12px 24px rgba(123, 44, 191, 0.22);
}

body[data-mobile-app] .cookie-consent-actions button:last-child {
  color: var(--text);
  background: rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .profile-card {
  padding: 18px 16px;
  text-align: center;
}

body[data-mobile-app] .profile-card h4 {
  margin: 10px 0 2px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

body[data-mobile-app] .profile-card p,
body[data-mobile-app] .profile-card small {
  margin: 0;
  color: var(--muted);
}

body[data-mobile-app] .profile-card small {
  display: block;
  margin-top: 7px;
  font-size: 0.78rem;
}

body[data-mobile-app] .profile-photo-wrap {
  position: relative;
  width: 78px;
  margin: 0 auto;
}

body[data-mobile-app] .profile-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(123, 44, 191, 0.1);
  box-shadow: 0 12px 24px rgba(35, 16, 54, 0.12);
}

body[data-mobile-app] .profile-photo-button {
  position: absolute;
  right: -2px;
  bottom: 2px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 10px 18px rgba(249, 115, 22, 0.28);
  cursor: pointer;
}

body[data-mobile-app] .profile-list-item {
  overflow: hidden;
  margin: 0 !important;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

body[data-mobile-app] .profile-list-item + .list-link {
  margin-top: 0 !important;
}

body[data-mobile-app] .profile-list-item .list-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
}

body[data-mobile-app] .profile-toggle > span:first-child {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

body[data-mobile-app] .profile-toggle > i:last-child {
  width: 16px;
  min-width: 16px;
  text-align: center;
  margin-left: auto;
  color: var(--text);
  font-size: 0.82rem;
  transform: none;
}

body[data-mobile-app] .profile-fields-panel {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
  animation: profileReveal 0.18s ease both;
}

body[data-mobile-app] .profile-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

body[data-mobile-app] .profile-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding-left: 2px;
}

body[data-mobile-app] .profile-input {
  width: 100%;
  height: 48px;
  min-width: 0;
  border: 1px solid rgba(123, 44, 191, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  padding: 0 14px;
  font: inherit;
  font-size: 0.72rem;
}

body[data-mobile-app] .profile-input:focus {
  border-color: rgba(123, 44, 191, 0.42);
  box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .profile-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 10px;
}

body[data-mobile-app] .profile-fields-panel .btn-app {
  margin-top: 6px;
}

@media (max-width: 380px) {
  body[data-mobile-app] .profile-form-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes profileReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body[data-mobile-app] .phone-lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 8px;
}

body[data-mobile-app] .phone-lookup-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 12px 24px rgba(123, 44, 191, 0.2);
  font-size: 0.8rem;
  font-weight: 900;
}

body[data-mobile-app] .phone-lookup-button:disabled {
  opacity: 0.76;
}

body[data-mobile-app] .phone-lookup-button:disabled i {
  animation: spin 0.8s linear infinite;
}

body[data-mobile-app] .menu-banner-section {
  padding-top: 8px;
  padding-bottom: 2px;
}

body[data-mobile-app] .menu-banner-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 2px 4px;
}

body[data-mobile-app] .menu-banner-carousel::-webkit-scrollbar {
  display: none;
}

body[data-mobile-app] .menu-banner-slide {
  position: relative;
  height: 118px;
  overflow: hidden;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(135deg, #2c0f46, #7b2cbf);
  box-shadow: 0 16px 30px rgba(42, 18, 70, 0.16);
  scroll-snap-align: start;
  text-decoration: none;
  text-align: left;
}

body[data-mobile-app] .menu-banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 8, 38, 0.62), rgba(24, 8, 38, 0.1) 58%, rgba(24, 8, 38, 0.36));
}

body[data-mobile-app] .menu-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-mobile-app] .menu-banner-slide span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  max-width: 74%;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 8, 32, 0.62);
  backdrop-filter: blur(10px);
  font-size: 0.74rem;
  font-weight: 950;
}

body[data-mobile-app] .menu-banner-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 6px;
}

body[data-mobile-app] .menu-banner-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.2);
}

body[data-mobile-app] .menu-banner-dots span.active {
  width: 18px;
  background: var(--purple);
}

body[data-mobile-app] .customer-lookup-message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

body[data-mobile-app] .customer-lookup-message.found {
  color: #15803d;
  background: rgba(34, 197, 94, 0.12);
}

body[data-mobile-app] .customer-lookup-message.empty {
  color: var(--muted);
  background: rgba(123, 44, 191, 0.08);
}

body[data-mobile-app] .loyalty-redeem-card {
  padding: 16px;
  overflow: hidden;
}

body[data-mobile-app] .loyalty-reward-grid {
  display: grid;
  gap: 10px;
}

body[data-mobile-app] .loyalty-reward {
  width: 100%;
  border: 1px solid rgba(123, 44, 191, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff 0%, #fbf8ff 100%);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 10px;
  align-items: center;
  text-align: left;
  padding: 12px;
  color: var(--text);
}

body[data-mobile-app] .loyalty-reward span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 122, 24, 0.12);
}

body[data-mobile-app] .loyalty-reward strong {
  font-size: 0.82rem;
  font-weight: 900;
}

body[data-mobile-app] .loyalty-reward small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

body[data-mobile-app] .loyalty-reward.active {
  border-color: var(--purple);
  box-shadow: 0 14px 30px rgba(123, 44, 191, 0.14);
}

body[data-mobile-app] .loyalty-reward.disabled {
  opacity: 0.55;
}

body[data-mobile-app] .loyalty-clear {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--purple);
  font-weight: 900;
  font-size: 0.72rem;
  margin-top: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sheetUp {
  from {
    transform: translate(-50%, 18px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes floatUp {
  from {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.promo-bottom {
  margin-top: auto;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.glow.one {
  width: 260px;
  height: 260px;
  right: -120px;
  top: 30px;
  background: rgba(171, 102, 255, 0.18);
}

.glow.two {
  width: 220px;
  height: 220px;
  right: -80px;
  top: 260px;
  background: rgba(255, 184, 77, 0.14);
}

@media (max-width: 1250px) {
  .poster-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-head {
    grid-template-columns: 54px 1fr 54px;
  }

  .poster-title .kicker {
    font-size: clamp(1.8rem, 8vw, 3.2rem);
  }

  .poster-title .sub {
    font-size: clamp(1rem, 4vw, 1.6rem);
  }
}

@media (max-width: 640px) {
  .poster {
    padding: 18px 12px 26px;
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }

  .poster-head {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .poster-aside {
    justify-content: center;
  }

  .phone {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
  }
}
