/* Neo Client — teal ocean theme */
:root {
    /* Lebar canvas PC — kolom tengah (~1152px), bukan full monitor */
    --neo-pc-canvas: 72rem;
}

/* —— PC canvas standar (ganti max-w-7xl) —— */
body:not(.neo-portal-app) .neo-pc-canvas,
body:not(.neo-portal-app) .neo-footer > .max-w-7xl,
body:not(.neo-portal-app) .neo-mode-bar.max-w-5xl {
    max-width: var(--neo-pc-canvas) !important;
    width: 100%;
}
/* Header full lebar — jangan paksa 72rem (menu atas tumpang tindih) */
body:not(.neo-portal-app) .neo-nav > .max-w-7xl {
    max-width: none !important;
    width: 100%;
}
body:not(.neo-portal-app) main.neo-pc-main--pdp {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* NeoFood / Freshmart PC: manfaatkan lebar canvas, jangan kolom sempit di tengah */
body:not(.neo-portal-app) main.neo-pc-main--food {
    max-width: var(--neo-pc-canvas) !important;
    width: 100%;
}
body:not(.neo-portal-app) main.neo-pc-main--food:has(.nf-page) {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
@media (min-width: 1024px) {
    body:not(.neo-portal-app) main.neo-pc-main--food:has(.nf-page) {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}
:root,
[data-theme="warm-peach"] {
    --bg-color: #f0fdfa;
    --hero-gradient: linear-gradient(135deg, #134e4a 0%, #0d9488 52%, #99f6e4 100%);
    --hero-gradient-soft: linear-gradient(135deg, rgba(19, 78, 74, 0.08) 0%, rgba(153, 246, 228, 0.12) 100%);
    --bg-elevated: #ffffff;
    --card-bg: #ffffff;
    --header-bg: linear-gradient(135deg, #134e4a 0%, #0f5c57 48%, #0d9488 100%);
    --header-border: rgba(153, 246, 228, 0.18);
    --header-text: rgba(255, 255, 255, 0.92);
    --header-text-muted: rgba(255, 255, 255, 0.72);
    --header-text-accent: #99f6e4;
    --header-link-hover: #ffffff;
    --header-active-bg: rgba(255, 255, 255, 0.14);
    --text-color: #134e4a;
    --text-heading: #042f2e;
    --text-muted-color: #5f8f8a;
    --text-subtle: #94b8b3;
    --border-color: #99f6e4;
    --primary-color: #0d9488;
    --primary-soft: rgba(13, 148, 136, 0.12);
    --success-color: #16a34a;
    --danger-color: #dc2626;
    --shadow: 0 1px 3px rgba(19, 78, 74, 0.06), 0 4px 12px rgba(19, 78, 74, 0.05);
    --shadow-lg: 0 8px 24px rgba(19, 78, 74, 0.1);
    --table-header-bg: #ccfbf1;
    --link-color: #134e4a;
    --link-hover-color: #0d9488;
    --radius: 14px;
    --radius-sm: 10px;
}

body.neo-client {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg-color);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 148, 136, 0.14), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(153, 246, 228, 0.35), transparent),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(204, 251, 241, 0.5), transparent);
    color: var(--text-color);
    min-height: 100vh;
}

.neo-nav {
    position: sticky;
    top: 0;
    z-index: 1200;
    overflow: visible;
    background: var(--header-bg);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid var(--header-border);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 10px 32px -12px rgba(4, 47, 46, 0.55);
    color: var(--header-text);
}

.neo-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4rem;
    min-width: 0;
}
.neo-nav__brand {
    position: relative;
    z-index: 3;
}

.neo-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none !important;
    flex-shrink: 0;
    min-width: 0;
}
.neo-nav__brand:hover .neo-brand-title { opacity: 0.95; }
.neo-nav__logo {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.neo-nav__logo img {
    height: 1.45rem;
    width: auto;
    max-height: 1.45rem;
    object-fit: contain;
    display: block;
}
.neo-nav__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 0;
}
.neo-nav__brand-text .neo-brand-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.neo-nav__brand-sub {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(153, 246, 228, 0.75);
    margin-top: 0.15rem;
}

.neo-nav__center {
    display: none;
    align-items: center;
    gap: 0.35rem;
    flex: 0 1 auto;
    justify-content: flex-start;
    min-width: 0;
    overflow: hidden;
}
@media (min-width: 1440px) {
    .neo-nav__center { display: inline-flex; }
}

.neo-nav__tools {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
    z-index: 3;
}
@media (min-width: 1024px) {
    .neo-nav__tools { display: inline-flex; }
}

.neo-nav__tools-cluster {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem;
    border-radius: 0.85rem;
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neo-nav__mobile-tools {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}
@media (min-width: 1024px) {
    .neo-nav__mobile-tools { display: none; }
}

.neo-nav a {
    color: var(--header-text-muted);
    transition: color 0.2s, background 0.2s;
}
.neo-nav a:hover {
    color: var(--header-link-hover);
}

.neo-nav .neo-brand-title {
    color: #ffffff;
}
.neo-nav .neo-brand-accent {
    color: var(--header-text-accent);
}

.neo-nav .neo-nav-link {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.45rem 0.85rem;
    border-radius: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-decoration: none !important;
}
.neo-nav .neo-nav-link.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.neo-nav .neo-nav-menu {
    flex-wrap: nowrap;
    max-width: min(100%, calc(100vw - 11rem));
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.neo-nav .neo-nav-menu::-webkit-scrollbar {
    display: none;
}

.neo-nav .neo-wallet-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(153, 246, 228, 0.28);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.neo-nav .neo-wallet-pill:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff !important;
}
.neo-nav .neo-wallet-pill .opacity-80 {
    color: rgba(255, 255, 255, 0.7);
}
.neo-nav .neo-wallet-pill .animate-pulse {
    background: var(--header-text-accent) !important;
}

.neo-nav .neo-btn-primary {
    background: rgba(255, 255, 255, 0.96);
    color: #134e4a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    border-radius: 0.75rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none !important;
}
.neo-nav .neo-btn-primary:hover {
    background: #99f6e4;
    color: #134e4a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.neo-nav .neo-nav-icon-cart,
.neo-nav .neo-portal-pc-mode-btn,
.neo-nav .portal-apps-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none !important;
    transition: color 0.15s, background 0.15s, transform 0.12s;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    font-size: 0.95rem;
}
.neo-nav .neo-nav-icon-cart:hover,
.neo-nav .neo-portal-pc-mode-btn:hover,
.neo-nav .portal-apps-toggle:hover,
.neo-nav .portal-apps-toggle[aria-expanded="true"] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}
.neo-nav .neo-portal-pc-mode-btn {
    width: auto;
    min-width: 2.25rem;
    padding: 0 0.65rem;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.neo-nav .neo-portal-pc-mode-btn .neo-nav-mode-txt {
    display: none;
}
@media (min-width: 1280px) {
    .neo-nav .neo-portal-pc-mode-btn .neo-nav-mode-txt { display: inline; }
}
.neo-nav .neo-jasa-dash-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    white-space: nowrap;
    background: #f59a3a;
    color: #fff !important;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    padding: 0.42rem 0.8rem;
    border-radius: 0.7rem;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    z-index: 4;
}
.neo-nav .neo-jasa-dash-chip:hover {
    background: #fb923c;
    color: #fff !important;
}
.neo-nav .neo-jasa-dash-chip i { font-size: 0.78rem; }
@media (max-width: 1023px) {
    .neo-nav__mobile-tools .neo-jasa-dash-chip span {
        max-width: 7.2rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.neo-nav .neo-nav-icon-cart .neo-cart-badge {
    position: absolute;
    top: -0.15rem;
    right: -0.15rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    font-size: 0.5625rem;
    font-weight: 800;
    line-height: 1rem;
    text-align: center;
    background: var(--header-text-accent);
    color: #134e4a;
    box-shadow: 0 0 0 2px rgba(19, 78, 74, 0.35);
}

.neo-nav__tools-cluster .neo-notif-bell__btn,
.neo-nav__mobile-tools .neo-notif-bell__btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.neo-nav__tools-cluster .neo-notif-bell__btn:hover,
.neo-nav__mobile-tools .neo-notif-bell__btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

/* Chip pesanan aktif di topbar (menggantikan FAB bawah) */
.neo-aktif-top {
    position: relative;
    color: #fecaca !important;
}
.neo-aktif-top:hover {
    color: #fff !important;
}
.neo-aktif-top__badge {
    background: #dc2626 !important;
    color: #fff !important;
    box-shadow: 0 0 0 2px rgba(127, 29, 29, 0.45);
}

/* Lonceng notifikasi portal */
.neo-notif-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.neo-notif-bell__btn {
    position: relative;
    cursor: pointer;
    border: 0;
    background: transparent;
}
.neo-notif-bell__panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(22rem, calc(100vw - 1.5rem));
    max-height: min(28rem, 70vh);
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    z-index: 80;
    overflow: hidden;
}
.neo-notif-bell__panel[hidden] {
    display: none !important;
}
.neo-notif-bell__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}
.neo-notif-bell__head strong {
    font-size: 0.8125rem;
    color: #0f172a;
}
.neo-notif-bell__readall {
    border: 0;
    background: transparent;
    color: #0f766e;
    font-size: 0.6875rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}
.neo-notif-bell__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    padding: 0.45rem 0.9rem;
    border-bottom: 1px solid #f8fafc;
    font-size: 0.625rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.neo-notif-bell__legend i {
    margin-right: 0.2rem;
    color: #0d9488;
}
.neo-notif-bell__list {
    overflow-y: auto;
    flex: 1;
    max-height: 18rem;
}
.neo-notif-bell__empty {
    margin: 0;
    padding: 1.25rem 0.9rem;
    text-align: center;
    font-size: 0.8125rem;
    color: #64748b;
}
.neo-notif-bell__item {
    display: flex;
    gap: 0.65rem;
    padding: 0.7rem 0.9rem;
    text-decoration: none !important;
    color: inherit;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.12s;
}
.neo-notif-bell__item:hover {
    background: #f8fafc;
}
.neo-notif-bell__item.is-unread {
    background: #f0fdfa;
}
.neo-notif-bell__ico {
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    background: #ecfeff;
    color: #0f766e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8125rem;
}
.neo-notif-bell__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.neo-notif-bell__title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}
.neo-notif-bell__msg {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.neo-notif-bell__meta {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.neo-notif-bell__foot {
    display: block;
    text-align: center;
    padding: 0.7rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #0f766e;
    text-decoration: none !important;
    border-top: 1px solid #f1f5f9;
    background: #fafafa;
}
.neo-notif-bell__foot:hover {
    background: #f0fdfa;
}
.neo-notif-bell--reseller .neo-notif-bell__panel {
    right: -0.5rem;
}

/* Kartu produk etalase seragam (toko sederhana / Coffee / POS) */
.neo-et-prod-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}
@media (min-width: 640px) {
    .neo-et-prod-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.85rem; }
}
@media (min-width: 1024px) {
    .neo-et-prod-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}
@media (min-width: 1280px) {
    .neo-et-prod-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.neo-et-prod {
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    text-decoration: none !important;
    color: inherit;
    min-width: 0;
}
a.neo-et-prod:hover {
    border-color: #99f6e4;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.12);
    transform: translateY(-2px);
}
.neo-et-prod__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f1f5f9;
    overflow: hidden;
    flex-shrink: 0;
}
.neo-et-prod__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.neo-et-prod__ph {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #94a3b8;
    font-size: 1.35rem;
}
.neo-et-prod__badge {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.45rem;
    border-radius: 0.35rem;
    background: rgba(15, 118, 110, 0.92);
    color: #fff;
}
.neo-et-prod__badge--ad {
    background: rgba(15, 23, 42, 0.78);
}
.neo-et-prod__disc {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    z-index: 2;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.15rem 0.38rem;
    border-radius: 0.3rem;
    background: #0f766e;
    color: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}
.neo-et-prod__cod {
    position: absolute;
    left: 0.35rem;
    bottom: 0.35rem;
    z-index: 2;
    background: #fff;
    color: #0f766e;
    border: 1px solid #99f6e4;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.12rem 0.35rem;
    border-radius: 0.3rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.neo-et-prod__body {
    padding: 0.55rem 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
    flex: 1;
}
.neo-et-prod__kat {
    margin: 0;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8 !important;
}
.neo-et-prod__name {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.neo-et-prod__store {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.neo-et-prod__store i { margin-right: 0.2rem; color: #0d9488; }
.neo-et-prod__stats {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b !important;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    line-height: 1.25;
}
.neo-et-prod__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    color: #475569 !important;
}
.neo-et-prod__rating i { color: #f59e0b; font-size: 0.62rem; }
.neo-et-prod__dot { color: #94a3b8; font-weight: 700; }
.neo-et-prod__sold { color: #64748b !important; }
.neo-et-prod__kota {
    margin: 0.1rem 0 0;
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.neo-et-prod__kota i { margin-right: 0.2rem; color: #f43f5e; }
.neo-et-prod__price {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
    font-weight: 900;
    color: #0f766e !important;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}
.neo-et-prod__mulai {
    font-size: 0.65rem;
    font-weight: 800;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.neo-et-prod__coret {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8 !important;
    text-decoration: line-through;
}
.neo-et-prod__hint {
    margin: 0;
    font-size: 10px;
    color: #64748b !important;
    font-weight: 700;
}
.neo-et-prod__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.35rem;
}
.neo-et-prod__actions a,
.neo-et-prod__actions button {
    font-size: 0.7rem;
    font-weight: 800;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: #0f766e;
    text-decoration: underline;
}
.neo-et-prod__actions .is-danger { color: #b91c1c; }
.neo-et-prod--manage { cursor: default; }
body:not(.neo-portal-app) .neo-et-prod__body {
    padding: 0.7rem 0.75rem 0.9rem;
    gap: 0.22rem;
}
body:not(.neo-portal-app) .neo-et-prod__name { font-size: 0.88rem; }
body:not(.neo-portal-app) .neo-et-prod__price { font-size: 1.02rem; }
body:not(.neo-portal-app) .neo-et-prod__store,
body:not(.neo-portal-app) .neo-et-prod__stats { font-size: 0.74rem; }
body.neo-portal-app .neo-et-prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.55rem;
}

/* Toko Saya — layout PC lebar */
.toko-saya-jenis-field {
    width: 100%;
    max-width: 100%;
}
.toko-saya-jenis-select {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 2.85rem;
    height: 2.85rem;
    padding: 0.65rem 2.35rem 0.65rem 0.85rem !important;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #0f766e 50%),
        linear-gradient(135deg, #0f766e 50%, transparent 50%);
    background-position:
        calc(100% - 1.15rem) calc(50% - 0.15rem),
        calc(100% - 0.75rem) calc(50% - 0.15rem);
    background-size: 0.4rem 0.4rem, 0.4rem 0.4rem;
    background-repeat: no-repeat;
}
.toko-saya-jenis-select:focus {
    outline: 2px solid rgba(15, 118, 110, 0.35);
    outline-offset: 1px;
}
.toko-saya-jenis-select optgroup {
    font-weight: 800;
    color: #0f766e;
    font-style: normal;
}
.toko-saya-jenis-select option {
    font-weight: 600;
    color: #134e4a;
    padding: 0.35rem 0.5rem;
}
.toko-saya-jenis-hint {
    margin: 0.35rem 0 0;
    font-size: 0.7rem;
    line-height: 1.35;
    color: var(--text-muted-color, #64748b);
}
@media (min-width: 768px) {
    .toko-saya-jenis-field {
        max-width: none;
    }
}

.toko-saya-page {
    max-width: none;
    margin: 0;
    width: 100%;
    padding: 0 0 1.5rem;
}
@media (min-width: 1024px) {
    .toko-saya-page { padding: 0 0 2rem; }
}

/* Form daftar NeoToko / NeoFood / Freshmart */
.toko-saya-daftar {
    width: 100%;
    max-width: none;
}
.toko-saya-daftar__form {
    padding: 1.15rem 1.2rem 1.35rem;
}
.toko-saya-daftar__head {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}
.toko-saya-daftar__head h2 {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted-color, #64748b);
}
.toko-saya-daftar__head p {
    margin: 0.3rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted-color, #64748b);
}
.toko-saya-daftar__grid {
    display: grid;
    gap: 1.15rem;
}
.toko-saya-daftar__pair {
    display: grid;
    gap: 0.85rem;
}
.toko-saya-daftar__jam {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.toko-saya-daftar__col--pin .neo-pin-block {
    height: 100%;
}
.toko-saya-daftar__foot {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color, #e2e8f0);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}
@media (min-width: 900px) {
    .toko-saya-daftar__form {
        padding: 1.35rem 1.5rem 1.5rem;
    }
    .toko-saya-daftar__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: start;
        gap: 1.35rem 1.5rem;
    }
    .toko-saya-daftar__pair {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }
    .toko-saya-daftar__col--pin {
        position: sticky;
        top: 1rem;
    }
    .toko-saya-daftar__col--pin .etalase-pin-map-shell {
        height: 320px;
    }
    .toko-saya-daftar__foot {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    .toko-saya-daftar__mou {
        flex: 1 1 18rem;
        min-width: 0;
    }
}
@media (min-width: 1200px) {
    .toko-saya-daftar__col--pin .etalase-pin-map-shell {
        height: 360px;
    }
}

.toko-saya-head {
    margin-bottom: 1.1rem;
}
.toko-saya-head__main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
}
.toko-saya-head__eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f766e;
    opacity: 0.85;
}
.toko-saya-head__title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-color, #0f172a);
}
@media (min-width: 768px) {
    .toko-saya-head__title { font-size: 1.85rem; }
}
.toko-saya-head__lead {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--text-muted-color, #64748b);
    max-width: 40rem;
}
.toko-saya-head__cta {
    display: none;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1rem;
    border-radius: 0.85rem;
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
@media (min-width: 900px) {
    .toko-saya-head__cta--pc {
        display: inline-flex;
    }
}
.toko-saya-head__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.65rem;
}
.toko-saya-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0f766e;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.18);
    text-decoration: none;
    line-height: 1.2;
}
.toko-saya-chip:hover {
    background: rgba(15, 118, 110, 0.14);
    color: #0d9488;
}
.toko-saya-chip i {
    font-size: 0.65rem;
    opacity: 0.85;
}
@media (max-width: 899px) {
    .toko-saya-chip--secondary { display: none; }
}
body.neo-portal-app .toko-saya-chip--secondary {
    display: none;
}

.toko-saya-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background:
        radial-gradient(ellipse 80% 80% at 100% 0%, rgba(45, 212, 191, 0.28), transparent 55%),
        linear-gradient(135deg, #0f766e 0%, #115e59 45%, #134e4a 100%);
    color: #ecfdf5;
    padding: 1.25rem 1.35rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 16px 36px rgba(15, 118, 110, 0.22);
}
@media (min-width: 1024px) {
    .toko-saya-hero { padding: 1.6rem 1.85rem; }
}
.toko-saya-hero__row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.toko-saya-hero__brand {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    min-width: 0;
    width: 100%;
    flex: none;
}
.toko-saya-hero__info {
    min-width: 0;
    flex: 1;
}
.toko-saya-hero__logo {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1.1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@media (min-width: 1024px) {
    .toko-saya-hero__logo { width: 5.25rem; height: 5.25rem; border-radius: 1.25rem; }
}
.toko-saya-hero__logo img { width: 100%; height: 100%; object-fit: cover; }
.toko-saya-hero__logo i { font-size: 1.5rem; opacity: 0.8; }
.toko-saya-hero h1 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff !important;
}
@media (min-width: 1024px) {
    .toko-saya-hero h1 { font-size: 1.75rem; }
}
.toko-saya-hero__meta {
    margin: 0.55rem 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(236, 253, 245, 0.92) !important;
    line-height: 1.35;
}
.toko-saya-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ecfdf5 !important;
    white-space: nowrap;
}
.toko-saya-hero__pill.is-open {
    background: rgba(16, 185, 129, 0.28);
    border-color: rgba(167, 243, 208, 0.45);
}
.toko-saya-hero__pill.is-closed {
    background: rgba(248, 113, 113, 0.22);
    border-color: rgba(254, 202, 202, 0.4);
}
.toko-saya-hero__jam {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}
.toko-saya-hero__jam-long { display: none; }
.toko-saya-hero__jam-short { display: inline; }
@media (min-width: 900px) {
    .toko-saya-hero__jam-long { display: inline; }
    .toko-saya-hero__jam-short { display: none; }
}

/* Toolbar aksi di luar kartu hero */
.toko-saya-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: -0.35rem 0 1.1rem;
}
.toko-saya-toolbar__main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}
.toko-saya-toolbar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.55rem;
    border-radius: 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none !important;
    text-align: center;
    line-height: 1.2;
    background: #fff;
    color: #0f766e !important;
    border: 1px solid #99f6e4;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.toko-saya-toolbar__btn.is-primary {
    background: #0f766e;
    color: #fff !important;
    border-color: #0f766e;
}
.toko-saya-toolbar__btn:hover {
    background: #f0fdfa;
}
.toko-saya-toolbar__btn.is-primary:hover {
    background: #0d9488;
}
.toko-saya-toolbar__more {
    width: 100%;
}
.toko-saya-toolbar__more > summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    background: #f8fafc;
    color: #334155;
    border: 1px solid #e2e8f0;
}
.toko-saya-toolbar__more > summary::-webkit-details-marker { display: none; }
.toko-saya-toolbar__more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 0.45rem;
}
.toko-saya-toolbar__more-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.6rem 0.35rem;
    border-radius: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    color: #0f766e !important;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.toko-saya-toolbar__more-grid a i { font-size: 0.95rem; }
.toko-saya-toolbar__act--pc { display: none; }
@media (min-width: 900px) {
    .toko-saya-toolbar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0;
        margin-bottom: 1.25rem;
    }
    .toko-saya-toolbar__main {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: none;
        flex: 1 1 auto;
    }
    .toko-saya-toolbar__btn {
        padding: 0.55rem 0.95rem;
        font-size: 0.78rem;
    }
    .toko-saya-toolbar__more {
        display: contents;
        width: auto;
    }
    .toko-saya-toolbar__more > summary { display: none; }
    .toko-saya-toolbar__more-grid {
        display: flex;
        flex-wrap: wrap;
        margin-top: 0;
        grid-template-columns: none;
    }
    .toko-saya-toolbar__more-grid a {
        flex-direction: row;
        padding: 0.55rem 0.9rem;
        font-size: 0.75rem;
    }
    .toko-saya-toolbar__act--pc { display: inline-flex; }
}
.toko-saya-layout {
    display: grid;
    gap: 1rem;
}
@media (min-width: 1024px) {
    .toko-saya-layout {
        grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
        align-items: start;
        gap: 1.35rem;
    }
    .toko-saya-layout__side { order: 2; }
    .toko-saya-layout__main { order: 1; }
}
.toko-saya-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.1rem;
    padding: 1.1rem 1.15rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.toko-saya-panel h2 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 900;
    color: #0f172a;
}
.toko-saya-panel__sub {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}
.toko-saya-slot {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid #f1f5f9;
}
.toko-saya-slot label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.35rem;
}
.toko-saya-paket-badge {
    display: inline-block;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: #ecfdf5;
    color: #0f766e;
    vertical-align: middle;
}
.toko-saya-paket-badge.is-pro {
    background: #eff6ff;
    color: #1d4ed8;
}
.toko-saya-paket-badge.is-pro_plus {
    background: #fef3c7;
    color: #b45309;
}
.toko-saya-paket-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.85rem;
}
.toko-saya-paket-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    padding: 0.75rem 0.8rem;
    background: #f8fafc;
}
.toko-saya-paket-card.is-current {
    border-color: #99f6e4;
    background: #f0fdfa;
}
.toko-saya-paket-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.toko-saya-paket-card__head strong {
    font-size: 0.85rem;
    color: #0f172a;
}
.toko-saya-paket-card__head span {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f766e;
}
.toko-saya-paket-card p {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
}
.toko-saya-paket-card__note {
    margin: 0 !important;
    font-size: 0.68rem !important;
    color: #0f766e !important;
}

.neo-nav .neo-cart-badge {
    background: var(--header-text-accent);
    color: #134e4a;
}

.neo-nav .neo-mobile-toggle {
    color: #ffffff;
}

.neo-nav-mobile {
    background: linear-gradient(180deg, #0f5c57 0%, #134e4a 100%);
    border-color: var(--header-border);
}
.neo-nav-mobile a {
    color: rgba(255, 255, 255, 0.88);
}
.neo-nav-mobile a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}
.neo-nav-mobile a.text-rose-400 {
    color: #fca5a5 !important;
}

.neo-logo-icon {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.neo-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent !important;
}

.neo-wallet-pill {
    background: var(--primary-soft);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}
.neo-wallet-pill .opacity-80 {
    color: var(--text-muted-color);
}

.neo-btn-primary {
    background: linear-gradient(135deg, #134e4a 0%, #0d9488 55%, #0f766e 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.32);
    transition: transform 0.2s, box-shadow 0.2s;
}
.neo-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.42);
    color: #fff;
}

.neo-btn-outline {
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    transition: background 0.2s, border-color 0.2s;
}
.neo-btn-outline:hover {
    background: var(--primary-soft);
    border-color: var(--primary-color);
    color: var(--text-heading);
}

.neo-hero {
    background: var(--hero-gradient);
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(19, 78, 74, 0.28), 0 4px 16px rgba(13, 148, 136, 0.2);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.neo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(153, 246, 228, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(0, 0, 0, 0.08), transparent 50%);
    pointer-events: none;
}

.neo-hero::after {
    content: '';
    position: absolute;
    right: -3rem;
    top: -3rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: rgba(153, 246, 228, 0.12);
    pointer-events: none;
}

.neo-hero h1,
.neo-hero .neo-hero-title {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.neo-hero p,
.neo-hero .neo-hero-sub {
    color: rgba(255, 255, 255, 0.92) !important;
}

.neo-hero .neo-hero-eyebrow {
    color: rgba(153, 246, 228, 0.95) !important;
    letter-spacing: 0.2em;
}

.neo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #99f6e4;
    color: #134e4a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

.neo-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(153, 246, 228, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.neo-hero-chip:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff !important;
    transform: translateY(-1px);
}
.neo-hero-chip i {
    opacity: 0.9;
}
.neo-hero-chip--warn {
    background: rgba(254, 243, 199, 0.25);
    border-color: rgba(253, 224, 71, 0.5);
    color: #fef9c3 !important;
}

.neo-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
}
.neo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 148, 136, 0.45);
    box-shadow: var(--shadow-lg);
}

.neo-card--visual {
    display: flex;
    flex-direction: column;
}

.neo-card-cover {
    position: relative;
    height: 9.5rem;
    overflow: hidden;
    background: var(--table-header-bg);
    border-bottom: 1px solid var(--border-color);
}
.neo-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.neo-card:hover .neo-card-cover img {
    transform: scale(1.06);
}
.neo-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(19, 78, 74, 0.08) 100%);
    pointer-events: none;
}
.neo-card-cover-icon {
    position: absolute;
    right: 1rem;
    bottom: -1.25rem;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid var(--card-bg);
    box-shadow: var(--shadow);
    z-index: 2;
    transition: transform 0.25s ease;
}
.neo-card:hover .neo-card-cover-icon {
    transform: scale(1.08) rotate(-3deg);
}

.neo-card-body {
    padding: 1.75rem;
    padding-top: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.neo-card-body .neo-btn-primary,
.neo-card-body button.neo-btn-primary {
    margin-top: auto;
    background: linear-gradient(135deg, #134e4a, #0d9488) !important;
    background-image: linear-gradient(135deg, #134e4a, #0d9488) !important;
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.28);
}
.neo-card-body .neo-btn-primary:hover,
.neo-card-body button.neo-btn-primary:hover {
    background: linear-gradient(135deg, #0f766e, #14b8a6) !important;
    background-image: linear-gradient(135deg, #0f766e, #14b8a6) !important;
    box-shadow: 0 8px 22px rgba(13, 148, 136, 0.35);
    color: #fff !important;
}

.neo-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.25s;
}
.neo-card:hover .neo-card-icon {
    transform: scale(1.08);
}

.neo-card h3 { color: var(--text-heading); }
.neo-card p { color: var(--text-muted-color); opacity: 1; }

.neo-stat-chip {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    box-shadow: var(--shadow);
}

.neo-footer {
    background: var(--header-bg);
    border-top: 1px solid var(--header-border);
    color: var(--header-text-muted);
}
.neo-footer p,
.neo-footer span {
    color: var(--header-text-muted);
}
.neo-footer a {
    color: var(--header-text);
}
.neo-footer a:hover {
    color: var(--header-link-hover);
}
.neo-footer strong {
    color: var(--header-text);
}

.neo-saldo-card {
    background: linear-gradient(135deg, #134e4a 0%, #0d9488 55%, #14b8a6 100%);
    border: 1px solid rgba(153, 246, 228, 0.35);
    border-radius: 1.15rem;
    color: #fff;
    box-shadow: 0 8px 22px rgba(13, 148, 136, 0.28);
    margin-bottom: 1.1rem;
    overflow: hidden;
}
.neo-saldo-card--compact {
    padding: 0;
}
.neo-saldo-card__inner {
    position: relative;
    z-index: 1;
    padding: 0.95rem 1rem 1rem;
}
.neo-saldo-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.neo-saldo-card__label {
    margin: 0 0 0.2rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78) !important;
}
.neo-saldo-card__amount {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fef08a !important;
    -webkit-text-fill-color: #fef08a !important;
}
@media (min-width: 768px) {
    .neo-saldo-card__amount { font-size: 1.9rem; }
    .neo-saldo-card__inner { padding: 1.15rem 1.25rem 1.2rem; }
}
.neo-saldo-card__pending {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff !important;
    white-space: nowrap;
}
.neo-saldo-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}
.neo-saldo-card__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.45rem 0.55rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.neo-saldo-card__meta-item span {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72) !important;
}
.neo-saldo-card__meta-item strong {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
}
.neo-saldo-card__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}
.neo-saldo-card__actions.is-kurir {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.neo-saldo-act {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: 3.15rem;
    padding: 0.45rem 0.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}
.neo-saldo-act i {
    font-size: 0.85rem;
    opacity: 0.95;
}
.neo-saldo-act--primary {
    background: #fff;
    border-color: #fff;
    color: #0f766e !important;
}
.neo-saldo-act--primary i {
    color: #0f766e;
}
.neo-saldo-act--neopay {
    background: rgba(224, 242, 254, 0.95);
    border-color: rgba(14, 165, 233, 0.55);
    color: #0369a1 !important;
}
.neo-saldo-act--neopay i {
    color: #0284c7;
    opacity: 1;
}
.neo-saldo-act--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 0.4rem;
    min-height: 2.5rem;
}
.neo-saldo-card__note {
    margin: 0.55rem 0 0;
    font-size: 0.68rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82) !important;
}
body.neo-client .neo-saldo-card h1,
body.neo-client .neo-saldo-card .neo-saldo-amount,
body.neo-client .neo-saldo-card .neo-saldo-card__amount {
    color: #fef08a !important;
    -webkit-text-fill-color: #fef08a !important;
}
body.neo-client .neo-saldo-card p {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Dompet di shell Android: kartu lebih ringkas */
body.neo-portal-app .neo-saldo-card {
    border-radius: 1rem;
    margin-bottom: 0.9rem;
}
body.neo-portal-app .neo-saldo-card__inner {
    padding: 0.85rem 0.9rem 0.9rem;
}
body.neo-portal-app .neo-saldo-card__amount {
    font-size: 1.45rem;
}

.neo-mutasi-in { color: var(--success-color); }
.neo-mutasi-out { color: var(--danger-color); }

.neo-badge-pending {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}
.neo-badge-sukses {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}
.neo-badge-ditolak {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.neo-modal-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
}

.neo-input {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    border-radius: var(--radius-sm);
}
.neo-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--card-bg);
}

/* Form & halaman konten */
body.neo-client main input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
body.neo-reseller-shop main input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
body.neo-client main select,
body.neo-reseller-shop main select,
body.neo-client main textarea,
body.neo-reseller-shop main textarea,
.neo-shop-panel input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
.neo-shop-panel select,
.neo-shop-panel textarea {
    color: #0f172a !important;
    background-color: #ffffff !important;
    -webkit-text-fill-color: #0f172a !important;
    caret-color: #0f172a;
}

body.neo-client main input::placeholder,
body.neo-client main textarea::placeholder,
.neo-shop-panel input::placeholder,
.neo-shop-panel textarea::placeholder {
    color: #94a3b8 !important;
    -webkit-text-fill-color: #94a3b8 !important;
    opacity: 1;
}

body.neo-client main select option,
.neo-shop-panel select option {
    color: #0f172a;
    background-color: #ffffff;
}

body.neo-client main input:-webkit-autofill,
body.neo-client main textarea:-webkit-autofill,
body.neo-client main select:-webkit-autofill,
.neo-shop-panel input:-webkit-autofill,
.neo-shop-panel textarea:-webkit-autofill {
    -webkit-text-fill-color: #0f172a !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
}

.neo-shop-panel,
body.neo-client main .neo-form-page {
    color: #334155;
}
.neo-shop-panel h1,
.neo-shop-panel h2,
.neo-shop-panel h3,
.neo-shop-panel strong,
body.neo-client main .neo-form-page h1,
body.neo-client main .neo-form-page h2,
body.neo-client main .neo-form-page h3,
body.neo-client main .neo-form-page strong {
    color: #0f172a;
}
.neo-shop-panel label,
.neo-shop-panel .shop-muted,
body.neo-client main .neo-form-page label,
body.neo-client main .neo-form-page .shop-muted {
    color: #64748b;
}
.neo-shop-panel .shop-card,
body.neo-client main .neo-form-page .shop-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: #334155;
}
.neo-shop-panel a.shop-link,
body.neo-client main .neo-form-page a.shop-link {
    color: var(--link-color);
    font-weight: 700;
}
.neo-shop-panel a.shop-link:hover,
body.neo-client main .neo-form-page a.shop-link:hover {
    color: var(--link-hover-color);
}

/* Mode PC: form/profil tidak dipaksa sempit seperti HP */
body:not(.neo-portal-app) main .neo-form-page {
    max-width: 64rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
body.neo-portal-app main .neo-form-page {
    max-width: 100% !important;
}

.neo-form-field {
    color: #0f172a !important;
    background-color: #ffffff !important;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}
.neo-form-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Timpa indigo/slate Tailwind */
body.neo-client .bg-indigo-600,
body.neo-client .bg-indigo-500 {
    background-color: var(--primary-color) !important;
}
body.neo-client .text-indigo-600,
body.neo-client .text-indigo-700,
body.neo-client .text-indigo-800 {
    color: var(--link-color) !important;
}
body.neo-client a.text-indigo-600:hover,
body.neo-client a.text-indigo-700:hover {
    color: var(--link-hover-color) !important;
}
body.neo-client .bg-indigo-50,
body.neo-client .bg-indigo-50\/40 {
    background-color: var(--table-header-bg) !important;
}
body.neo-client .border-indigo-100,
body.neo-client .border-indigo-200,
body.neo-client .border-indigo-600 {
    border-color: var(--border-color) !important;
}
body.neo-client .border-indigo-600.belanja-tab.active {
    border-bottom-color: var(--primary-color) !important;
}
body.neo-client .hover\:text-indigo-600:hover {
    color: var(--link-hover-color) !important;
}
body.neo-client .hover\:bg-indigo-50:hover {
    background-color: var(--primary-soft);
}
body.neo-client .text-blue-600 {
    color: var(--link-color) !important;
}
body.neo-client .border-slate-100,
body.neo-client .border-slate-50,
body.neo-client .border-slate-200 {
    border-color: var(--border-color) !important;
}
body.neo-client .bg-slate-50 {
    background-color: #f0fdfa !important;
}
body.neo-client .bg-slate-100 {
    background-color: var(--table-header-bg) !important;
}
body.neo-client .text-slate-400 {
    color: var(--text-subtle) !important;
}
body.neo-client .text-slate-500 {
    color: var(--text-muted-color) !important;
}
body.neo-client .text-slate-600 {
    color: #475569 !important;
}
body.neo-client .text-slate-700,
body.neo-client .text-slate-800 {
    color: var(--text-color) !important;
}
body.neo-client .text-slate-200 {
    color: #e2e8f0 !important;
}
body.neo-client .shop-muted {
    color: var(--text-muted-color);
}
body.neo-client main h1:not(.neo-hero-title):not(.neo-saldo-amount):not(.nca-hero__title),
body.neo-client main h2,
body.neo-client main h3 {
    color: var(--text-heading);
}
body.neo-client main p:not(.neo-hero-sub):not(.neo-hero-eyebrow):not(.bl-hero__eyebrow):not(.bl-hero__sub):not(.mp-hero__eyebrow):not(.mp-hero__sub):not(.nca-hero__sub):not(.nd-card__owner):not(.nd-card__type):not(.nd-card__hp):not(.nd-card__saldo-label):not(.nd-card__saldo) {
    color: var(--text-muted-color);
}
/* Kartu saldo Dompet: teks putih di atas gradient biru */
body.neo-client main .nd-card p,
body.neo-client main .nd-card .nd-card__owner-name,
body.neo-client main .nd-card #ndSaldoText,
body.neo-client main .nd-card #ndHpText {
    color: #f8fbff !important;
}
/* Hero legalitas seller */
body.neo-client main .vs-hero p,
body.neo-client main .vs-hero strong {
    color: #ecfdf5 !important;
}
/* Dark heroes (Belanja / Marketplace / NeoCar Armada): keep copy light — muted vars are for light panels */
body.neo-client main .bl-hero h1,
body.neo-client main .mp-hero h1,
body.neo-client main .nca-hero .nca-hero__title {
    color: #fff !important;
}
body.neo-client main .bl-hero .bl-hero__eyebrow,
body.neo-client main .mp-hero .mp-hero__eyebrow {
    color: rgba(204, 251, 241, 0.92) !important;
}
body.neo-client main .bl-hero .bl-hero__sub,
body.neo-client main .mp-hero .mp-hero__sub,
body.neo-client main .nca-hero .nca-hero__sub {
    color: rgba(255, 255, 255, 0.88) !important;
}
body.neo-client main .nca-hero .nca-chip,
body.neo-client main .nca-hero .nca-chip i {
    color: #fff !important;
}
body.neo-client .shop-card,
body.neo-client .bg-white.rounded-2xl.border,
body.neo-client .bg-white.rounded-3xl.border {
    background: var(--card-bg);
    border-color: var(--border-color) !important;
    box-shadow: var(--shadow);
}
body.neo-client .belanja-tabs {
    border-color: var(--border-color) !important;
    background: var(--card-bg);
}
body.neo-client .belanja-tab:not(.active) {
    color: var(--text-muted-color);
}
body.neo-client .belanja-tab:not(.active):hover {
    color: var(--text-color);
}
body.neo-client .belanja-tab.active {
    color: var(--text-heading) !important;
    border-bottom-color: var(--primary-color) !important;
    background: var(--primary-soft) !important;
}
body.neo-client .divide-slate-50 > :not([hidden]) ~ :not([hidden]) {
    border-color: var(--border-color);
}
body.neo-client .bg-violet-50 {
    background-color: var(--primary-soft) !important;
}
body.neo-client .border-violet-100 {
    border-color: var(--border-color) !important;
}
body.neo-client .text-orange-600,
body.neo-client .text-orange-700,
body.neo-client .text-orange-800 {
    color: var(--text-color) !important;
}

/* Dropdown Pengajuan — di luar area scroll nav agar tidak ter-clip */
.neo-nav .portal-pengajuan-dd {
    position: relative;
    z-index: 70;
}
.neo-nav .portal-pengajuan-dd button.neo-nav-link {
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    color: var(--header-text-muted);
}
.neo-nav .portal-pengajuan-dd button.neo-nav-link:hover,
.neo-nav .portal-pengajuan-dd button.neo-nav-link.is-active {
    color: var(--header-link-hover);
}
.neo-nav .portal-pengajuan-dd button.neo-nav-link.is-active {
    background: var(--header-active-bg);
    color: #ffffff;
    font-weight: 700;
}
.neo-nav .portal-pengajuan-menu {
    z-index: 80;
}
.neo-nav .portal-pengajuan-menu a {
    color: #334155 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.neo-nav .portal-pengajuan-menu a:hover {
    color: #0f766e !important;
    background: #f0fdfa;
}
.neo-nav .portal-pengajuan-menu a.bg-teal-50,
.neo-nav .portal-pengajuan-menu a.bg-teal-50:hover {
    color: #115e59 !important;
}


/* Bootstrap btn-indigo — timpa Tailwind preflight (background tombol transparan) */
body.neo-client .btn-indigo,
body.neo-client a.btn-indigo {
    background-color: #0d9488 !important;
    color: #ffffff !important;
    border: none !important;
    -webkit-text-fill-color: #ffffff !important;
}
body.neo-client .btn-indigo:hover:not(:disabled):not(.disabled),
body.neo-client a.btn-indigo:hover {
    background-color: #0f766e !important;
    color: #ffffff !important;
}
body.neo-client .btn-indigo:disabled,
body.neo-client .btn-indigo.disabled {
    background-color: #94a3b8 !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

/* —— Nav dropdowns (Belanja / Marketplace / Akun) —— */
.portal-nav-dd-menu .rounded-xl { box-shadow: 0 12px 28px rgba(15, 118, 110, 0.14); }
.neo-nav .portal-nav-dd-item { color: #334155 !important; }
.neo-nav .portal-nav-dd-item:hover { color: #0f766e !important; background: #f0fdfa; }
.neo-nav .portal-nav-dd-item.is-active-item { color: #115e59 !important; background: #ccfbf1; }

/* —— Menu grid apps (pintasan) —— */
.portal-apps-toggle {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.portal-apps-toggle:hover,
.portal-apps-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.22);
}
.portal-apps-toggle:active { transform: scale(0.96); }
.portal-apps {
    position: relative;
    z-index: 80;
}
.portal-apps-pop {
    position: absolute;
    right: 0;
    top: calc(100% + 0.35rem);
    /* Di atas Leaflet panes/controls (≈400–1000); nav sticky juga harus ≥ ini */
    z-index: 1200;
    width: min(19.5rem, calc(100vw - 1.5rem));
    padding-top: 0.15rem;
}
@media (max-width: 420px) {
    .portal-apps-pop {
        right: -0.35rem;
        width: min(18.5rem, calc(100vw - 0.75rem));
    }
}
.portal-apps-arrow {
    width: 0;
    height: 0;
    margin-left: auto;
    margin-right: 0.85rem;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    filter: drop-shadow(0 -1px 1px rgba(15, 118, 110, 0.08));
}
.portal-apps-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px -12px rgba(15, 118, 110, 0.28), 0 0 0 1px rgba(15, 118, 110, 0.06);
    padding: 0.85rem 0.75rem 0.95rem;
}
.portal-apps-title {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 0 0.35rem 0.65rem;
}
.portal-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 0.25rem;
}
.portal-apps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.2rem;
    text-decoration: none;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
}
.portal-apps-item:hover,
.portal-apps-item:focus-visible {
    background: #f8fafc;
}
.portal-apps-item.is-active .portal-apps-label {
    color: #0f766e;
    font-weight: 800;
}
.portal-apps-ico {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    box-shadow: 0 6px 14px -6px rgba(15, 23, 42, 0.35);
}
.portal-apps-badge {
    position: absolute;
    top: -0.2rem;
    right: -0.25rem;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.portal-apps-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #334155;
    text-align: center;
    line-height: 1.2;
    max-width: 5.4rem;
}
.portal-apps-panel {
    background: #fff;
    border-radius: 16px;
    padding: 0.85rem 0.55rem 1rem;
    margin: 0.35rem 0 0.75rem;
    box-shadow: inset 0 0 0 1px rgba(153, 246, 228, 0.45);
}
.portal-apps-panel .portal-apps-grid {
    gap: 0.75rem 0.35rem;
}
.portal-apps-panel .portal-apps-ico {
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
}
.portal-apps-panel .portal-apps-label {
    font-size: 0.72rem;
    max-width: 6rem;
}
@media (max-width: 380px) {
    .portal-apps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .portal-apps-label { font-size: 0.62rem; }
}

/* —— Dashboard home top (search + wallet, OnDelive-style) —— */
.dash-mp-home-top {
    position: relative;
    margin: -1.5rem -1rem 1rem;
}
@media (min-width: 640px) {
    .dash-mp-home-top { margin-left: -1.5rem; margin-right: -1.5rem; }
}
@media (min-width: 1024px) {
    .dash-mp-home-top { margin-left: -2rem; margin-right: -2rem; }
}
.dash-mp-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1rem 1.85rem;
    border-radius: 0 0 1.35rem 1.35rem;
    background: var(
        --portal-home-banner-bg,
        radial-gradient(ellipse 55% 85% at 88% 15%, rgba(204, 251, 241, 0.4), transparent 58%),
        linear-gradient(145deg, #042f2e 0%, #0f766e 48%, #2dd4bf 100%)
    );
    background-size: cover;
    background-position: center;
    min-height: 6rem;
    overflow: hidden;
}
.dash-mp-banner.has-ad-bg {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    min-height: 13.5rem;
    padding: 0.55rem 0.75rem 2.85rem;
}
.dash-mp-banner.has-ad-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 47, 46, 0.5) 0%,
        rgba(4, 47, 46, 0.08) 28%,
        rgba(4, 47, 46, 0.02) 58%,
        rgba(4, 47, 46, 0.22) 100%
    );
    pointer-events: none;
    z-index: 0;
}
.dash-mp-banner__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.dash-mp-banner.has-ad-bg .dash-mp-banner__top .dash-mp-search {
    flex: 1;
    min-width: 0;
    padding: 0.45rem 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
}
.dash-mp-banner.has-ad-bg .dash-mp-banner__top .dash-mp-banner-avatar {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.85rem;
}
.dash-mp-banner__stage {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 7.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-decoration: none !important;
    color: inherit;
}
.dash-mp-banner.has-ad-bg .dash-mp-banner__ad {
    position: static;
    margin: 0 0 0.15rem 0.1rem;
}
body.neo-portal-app .dash-mp-banner.has-ad-bg {
    min-height: 13rem !important;
    padding: 0.5rem 12px 2.7rem !important;
    gap: 0.4rem !important;
}
body.neo-portal-app .dash-mp-banner.has-ad-bg .dash-mp-banner__stage {
    min-height: 6.75rem !important;
}
.dash-mp-home-top:has(.dash-mp-banner.has-ad-bg) .dash-mp-wallet-card {
    margin-top: -1.05rem;
}
.dash-mp-banner > * {
    position: relative;
    z-index: 1;
}
.dash-mp-banner__ad {
    position: absolute;
    right: 0.85rem;
    bottom: 0.55rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.65rem;
    font-weight: 800;
}
.dash-mp-search {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #fff;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}
.dash-mp-search i {
    color: #0f766e;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.dash-mp-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
    color: #134e4a;
}
.dash-mp-search input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}
.dash-mp-search .vs-cam-btn {
    width: 2.05rem;
    height: 2.05rem;
    margin: 0 -0.25rem 0 0;
    color: #0f766e;
    background: #f0fdfa;
}
.dash-mp-search .vs-cam-btn:hover {
    background: #ccfbf1;
    color: #115e59;
}

/* Pencarian visual (kamera / galeri) */
.vs-cam-btn {
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 999px;
    background: #eef2ff;
    color: #1e3a6e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: none;
}
.vs-cam-btn:hover,
.vs-cam-btn:focus-visible {
    background: #dbeafe;
    color: #1e3a8a;
    outline: none;
}
.vs-file {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}
.vs-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.vs-overlay[hidden] { display: none !important; }
.vs-overlay__box {
    background: #fff;
    border-radius: 1.1rem;
    padding: 1.35rem 1.4rem 1.2rem;
    max-width: 18rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}
.vs-overlay__spin {
    width: 2.1rem;
    height: 2.1rem;
    border: 3px solid #e2e8f0;
    border-top-color: #1e3a6e;
    border-radius: 999px;
    display: inline-block;
    animation: vs-spin 0.7s linear infinite;
}
@keyframes vs-spin { to { transform: rotate(360deg); } }
.vs-overlay__box p {
    margin: 0.85rem 0 0.3rem;
    font-weight: 800;
    font-size: 0.92rem;
    color: #0f172a;
}
.vs-overlay__box small {
    display: block;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 600;
}
.vs-sheet {
    position: fixed;
    inset: 0;
    z-index: 11900;
}
.vs-sheet[hidden] { display: none !important; }
.vs-sheet__bg {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
}
.vs-sheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 1.1rem 1.1rem 0 0;
    padding: 1rem 1rem calc(1.1rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.16);
}
.vs-sheet__panel p {
    margin: 0 0 0.75rem;
    font-weight: 800;
    color: #0f172a;
    font-size: 0.95rem;
    text-align: center;
}
.vs-sheet__opt,
.vs-sheet__cancel {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
    cursor: pointer;
}
.vs-sheet__opt {
    background: #1e3a6e;
    color: #fff;
}
.vs-sheet__opt:hover { background: #163056; }
.vs-sheet__cancel {
    background: #f1f5f9;
    color: #334155;
    margin-bottom: 0;
}
@media (min-width: 720px) {
    .vs-sheet__panel {
        left: 50%;
        right: auto;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(22rem, calc(100vw - 2rem));
        border-radius: 1.1rem;
    }
}
.dash-mp-banner-avatar {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #99f6e4);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    color: #134e4a !important;
}
.dash-mp-banner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* NeoReseller home: greeting + dual saldo + stat chips (kelas ini hanya di reseller/index) */
.dash-mp-banner-hello {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.12rem;
    min-width: 0;
    flex: 1 1 auto;
    text-decoration: none !important;
    color: #fff !important;
    -webkit-tap-highlight-color: transparent;
}
.dash-mp-banner-hello:hover,
.dash-mp-banner-hello:focus-visible,
.dash-mp-banner-hello:hover strong,
.dash-mp-banner-hello:focus-visible strong {
    color: #fff !important;
}
.dash-mp-banner-kicker {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.92) !important;
}
.dash-mp-banner-hello strong {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff !important;
}
.dash-mp-user-chev {
    font-size: 0.62rem;
    opacity: 0.8;
}
.dash-mp-banner--reseller {
    align-items: center;
    background:
        radial-gradient(ellipse 55% 85% at 88% 15%, rgba(167, 243, 208, 0.35), transparent 58%),
        linear-gradient(145deg, #022c22 0%, #047857 50%, #10b981 100%);
}
.dash-mp-banner--reseller.has-ad-bg {
    align-items: stretch;
    /* Background iklan dari tema (--portal-home-banner-bg) — jangan paksa gradient hijau */
    background: var(--portal-home-banner-bg,
        radial-gradient(ellipse 55% 85% at 88% 15%, rgba(167, 243, 208, 0.35), transparent 58%),
        linear-gradient(145deg, #022c22 0%, #047857 50%, #10b981 100%)
    );
    background-size: cover;
    background-position: center;
}
.dash-mp-banner--reseller.has-ad-bg .dash-mp-banner__top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
}
.dash-mp-banner--reseller.has-ad-bg .dash-mp-banner-hello {
    flex: 1 1 auto;
    min-width: 0;
}
.dash-mp-wallet-card--dual {
    flex-direction: column;
    overflow: visible;
}
.dash-mp-wallet-dual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
}
.dash-mp-wallet-dual-row .dash-mp-wallet-saldo {
    min-width: 0;
}
.dash-mp-wallet-dual-row .dash-mp-wallet-saldo + .dash-mp-wallet-saldo {
    border-left: 1px solid #e2e8f0;
}
.dash-mp-wallet-card--dual .dash-mp-wallet-actions {
    flex: none;
    width: 100%;
    border-left: 0;
    border-top: 1px solid #e2e8f0;
}
.dash-mp-stat-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0.85rem 0.95rem 0.15rem;
    box-sizing: border-box;
}
.dash-mp-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
    max-width: 100%;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #a7f3d0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    text-decoration: none !important;
    color: #065f46 !important;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}
.dash-mp-stat-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-mp-stat-chip strong {
    font-weight: 900;
    color: #047857;
    font-variant-numeric: tabular-nums;
}

/* —— PC home: Tokopedia-style hero image slider —— */
.dash-mp-home-top--pc {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dash-mp-banner--pc-search {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: auto;
    padding: 0.85rem 1.25rem 1.15rem;
    border-radius: 0;
    background: linear-gradient(145deg, #042f2e 0%, #0f766e 55%, #14b8a6 100%);
}
.dash-mp-banner--pc-search .dash-mp-search {
    flex: 1;
    min-width: 0;
    max-width: none;
    margin: 0;
}
.dash-mp-banner-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}
.dash-mp-banner-toko {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: 2.55rem;
    padding: 0 0.7rem 0 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    white-space: nowrap;
    max-width: 11.5rem;
}
.dash-mp-banner-toko:hover {
    background: rgba(255, 255, 255, 0.28);
}
.dash-mp-banner-toko-logo {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #ccfbf1);
    border: 2px solid rgba(255, 255, 255, 0.95);
    color: #0f766e;
    font-size: 0.85rem;
}
.dash-mp-banner-toko-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dash-mp-banner-toko-txt {
    display: none;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
@media (min-width: 640px) {
    .dash-mp-banner-toko-txt { display: inline; }
}
/* Compact: logo saja (mirip avatar) bila ruang sempit — tetap tampil logo toko */
.dash-mp-banner-toko.has-logo {
    padding-right: 0.55rem;
}
.dash-mp-hero-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--neo-pc-canvas, 72rem);
    margin: 0.55rem auto 0;
    padding: 0 1rem;
    box-sizing: border-box;
}
.dash-mp-hero-slider__viewport {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
    /* Rasio marketplace — tinggi relatif ke lebar konten, bukan viewport */
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 8;
    min-height: 148px;
    max-height: 280px;
}
.dash-mp-hero-slider__track {
    position: absolute;
    inset: 0;
}
.dash-mp-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    text-decoration: none !important;
    color: inherit;
}
.dash-mp-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.dash-mp-hero-slide__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #134e4a;
}
.dash-mp-hero-slide__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.6rem 1.1rem 0.85rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.55) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    pointer-events: none;
}
.dash-mp-hero-slide__caption strong {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.dash-mp-hero-slide__caption span {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.92;
    max-width: 42rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dash-mp-hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.15rem;
    height: 2.15rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f766e;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.15s ease;
}
.dash-mp-hero-slider__viewport:hover .dash-mp-hero-slider__nav,
.dash-mp-hero-slider__nav:focus-visible {
    opacity: 1;
}
.dash-mp-hero-slider__nav:hover {
    transform: translateY(-50%) scale(1.06);
}
.dash-mp-hero-slider__nav--prev { left: 0.65rem; }
.dash-mp-hero-slider__nav--next { right: 0.65rem; }
.dash-mp-hero-slider__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.15rem 0.15rem;
}
.dash-mp-hero-slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.dash-mp-hero-slider__dot {
    width: 0.45rem;
    height: 0.45rem;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}
.dash-mp-hero-slider__dot.is-active {
    width: 1.15rem;
    background: #0f766e;
}
.dash-mp-hero-slider__more {
    font-size: 0.72rem;
    font-weight: 700;
    color: #0f766e !important;
    text-decoration: none !important;
    white-space: nowrap;
}
.dash-mp-hero-slider__more:hover {
    text-decoration: underline !important;
}
.dash-mp-home-top--pc .dash-mp-wallet-card {
    margin-top: 0.85rem;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(var(--neo-pc-canvas, 72rem) - 2rem);
    width: calc(100% - 2rem);
}
.dash-mp-banner--pc-search {
    padding: 0.85rem clamp(1rem, 2vw, 1.75rem) 1.15rem;
}
.dash-mp-banner--pc-search .dash-mp-search {
    max-width: none;
    flex: 1 1 auto;
}
@media (min-width: 1024px) {
    .dash-mp-hero-slider {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .dash-mp-hero-slider__viewport {
        aspect-ratio: 21 / 7;
        max-height: 300px;
        border-radius: 0.85rem;
    }
    .dash-mp-hero-slide__caption strong {
        font-size: 1.2rem;
    }
    .dash-mp-home-top--pc .dash-mp-wallet-card {
        width: calc(100% - 3rem);
        max-width: calc(var(--neo-pc-canvas, 72rem) - 3rem);
    }
}
@media (max-width: 640px) {
    .dash-mp-hero-slider__viewport {
        height: clamp(140px, 36vw, 190px);
    }
    .dash-mp-hero-slide__caption strong {
        font-size: 0.92rem;
    }
    .dash-mp-hero-slider__nav {
        opacity: 0.85;
    }
}

.dash-mp-wallet-card {
    position: relative;
    z-index: 2;
    margin: -1.35rem 0.85rem 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 1.05rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 118, 110, 0.08);
    overflow: hidden;
}
.dash-mp-wallet-saldo {
    flex: 1.15;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    text-decoration: none;
    color: inherit;
}
.dash-mp-wallet-ico {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.dash-mp-wallet-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
.dash-mp-wallet-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}
.dash-mp-wallet-value {
    font-size: 1.05rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
}
.dash-mp-wallet-card--no-saldo .dash-mp-wallet-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f766e;
}
.dash-mp-wallet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.15rem;
    width: fit-content;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: #fef9c3;
    color: #854d0e;
    font-size: 9px;
    font-weight: 800;
    font-style: normal;
}
.dash-mp-wallet-badge--muted {
    background: #f1f5f9;
    color: #64748b;
}
.dash-mp-wallet-actions {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 0.15rem;
    padding: 0.65rem 0.55rem;
    border-left: 1px solid #e2e8f0;
    flex: 1;
    min-width: 0;
}
.dash-mp-wallet-act {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
    color: #334155;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
}
.dash-mp-wallet-act-ico {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 0.8rem;
    border: 1.5px solid rgba(15, 118, 110, 0.2);
}
.dash-mp-wallet-act:hover .dash-mp-wallet-act-ico {
    background: #0f766e;
    color: #fff;
    border-color: #0f766e;
}
@media (max-width: 480px) {
    .dash-mp-wallet-card {
        flex-direction: column;
    }
    .dash-mp-wallet-actions {
        border-left: 0;
        border-top: 1px solid #e2e8f0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.15rem;
        justify-content: stretch;
        padding: 0.5rem 0.45rem 0.7rem;
    }
    .dash-mp-wallet-act {
        min-width: 0;
        width: 100%;
        padding: 0.15rem 0.1rem;
    }
    .dash-mp-wallet-dual-row .dash-mp-wallet-saldo {
        padding: 0.75rem 0.7rem;
        gap: 0.5rem;
    }
    .dash-mp-wallet-dual-row .dash-mp-wallet-ico {
        width: 2.05rem;
        height: 2.05rem;
        font-size: 0.85rem;
    }
    .dash-mp-wallet-dual-row .dash-mp-wallet-value {
        font-size: 0.95rem;
    }
}

.dash-mp-quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}
@media (min-width: 768px) {
    .dash-mp-quick { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
.dash-mp-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 0.4rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #99f6e4;
    text-decoration: none;
    color: #134e4a;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.dash-mp-quick-item:hover {
    transform: translateY(-2px);
    border-color: #0d9488;
    box-shadow: var(--shadow-lg);
    color: #0f766e;
}
.dash-mp-quick-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    position: relative;
}
.dash-mp-quick-label {
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

/* Grid layanan ala Gojek — soft rounded plate, lebih besar, badge ribbon */
.dash-mp-quick--gojek {
    gap: 0.85rem 0.45rem;
    padding: 0.35rem 0 0.15rem;
}
.dash-mp-quick--gojek .dash-mp-quick-item {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0.15rem 0.05rem;
    gap: 0.5rem;
    color: #334155;
    cursor: pointer;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}
.dash-mp-quick--gojek .dash-mp-quick-item:hover {
    transform: translateY(-2px);
    box-shadow: none;
    color: #0f172a;
}
.dash-mp-quick--gojek .dash-mp-quick-item:hover .dash-mp-quick-icon {
    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.85) inset;
}
.dash-mp-quick--gojek .dash-mp-quick-icon {
    position: relative;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1.2rem;
    font-size: 1.55rem;
    background: #fff;
    color: #0f766e;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 8px 18px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.dash-mp-quick--gojek .dash-mp-quick-icon i {
    color: inherit;
    filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.12));
}
/* Soft pastel plate per tone (bukan flat putih) */
.dash-mp-quick--gojek .dash-mp-tone--food {
    background: linear-gradient(165deg, #fff7f8 0%, #ffe4e8 55%, #fecdd3 100%);
    color: #e11d48;
    border-color: #fecdd3;
}
.dash-mp-quick--gojek .dash-mp-tone--green {
    background: linear-gradient(165deg, #f3fdf6 0%, #dcfce7 55%, #bbf7d0 100%);
    color: #16a34a;
    border-color: #bbf7d0;
}
.dash-mp-quick--gojek .dash-mp-tone--orange {
    background: linear-gradient(165deg, #fffaf5 0%, #ffedd5 55%, #fed7aa 100%);
    color: #ea580c;
    border-color: #fed7aa;
}
.dash-mp-quick--gojek .dash-mp-tone--rose {
    background: linear-gradient(165deg, #fff5f7 0%, #ffe4e6 55%, #fecdd3 100%);
    color: #e11d48;
    border-color: #fecdd3;
}
.dash-mp-quick--gojek .dash-mp-tone--indigo {
    background: linear-gradient(165deg, #f8f8ff 0%, #e0e7ff 55%, #c7d2fe 100%);
    color: #4f46e5;
    border-color: #c7d2fe;
}
.dash-mp-quick--gojek .dash-mp-tone--sky {
    background: linear-gradient(165deg, #f5fbff 0%, #e0f2fe 55%, #bae6fd 100%);
    color: #0284c7;
    border-color: #bae6fd;
}
.dash-mp-quick--gojek .dash-mp-tone--teal {
    background: linear-gradient(165deg, #f3fdfa 0%, #ccfbf1 55%, #99f6e4 100%);
    color: #0f766e;
    border-color: #99f6e4;
}
.dash-mp-quick--gojek .dash-mp-tone--emerald {
    background: linear-gradient(165deg, #f2fdf8 0%, #d1fae5 55%, #a7f3d0 100%);
    color: #059669;
    border-color: #a7f3d0;
}
.dash-mp-quick--gojek .dash-mp-tone--amber {
    background: linear-gradient(165deg, #fffbeb 0%, #fef3c7 55%, #fde68a 100%);
    color: #d97706;
    border-color: #fde68a;
}
.dash-pc-shortcuts { display: grid; gap: 0.85rem; }
.dash-pc-shortcuts__group {
    background: #fff;
    border: 1px solid #dbe7f3;
    border-radius: 1.15rem;
    padding: 0.95rem 1rem 1.05rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}
.dash-pc-shortcuts__head { margin-bottom: 0.75rem; }
.dash-pc-shortcuts__head p {
    margin: 0 0 0.15rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f766e;
}
.dash-pc-shortcuts__head h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 900;
    color: #0f172a;
}
.dash-pc-shortcuts__grid {
    display: grid;
    gap: 0.7rem;
}
@media (min-width: 900px) {
    .dash-pc-shortcuts__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.dash-pc-shortcut-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0.85rem;
    border-radius: 0.95rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    text-decoration: none !important;
    color: inherit !important;
}
.dash-pc-shortcut-card:hover { border-color: #b8d9f0; box-shadow: 0 10px 20px rgba(30, 58, 110, 0.08); }
.dash-pc-shortcut-card__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    background: #ecfeff;
    color: #0f766e;
    flex-shrink: 0;
}
.dash-pc-shortcut-card strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 800;
    color: #0f172a;
}
.dash-pc-shortcut-card small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.73rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.4;
}
.dash-mp-quick--gojek .dash-mp-quick-label {
    font-size: 12px;
    font-weight: 800;
    color: #334155;
}
.dash-mp-quick-tag {
    position: absolute;
    top: -0.28rem;
    right: -0.42rem;
    font-style: normal;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
    padding: 0.22rem 0.4rem 0.24rem;
    border-radius: 0.35rem 0.55rem 0.55rem 0.2rem;
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
    color: #fff;
    letter-spacing: 0.03em;
    box-shadow: 0 3px 8px rgba(225, 29, 72, 0.35);
    transform: rotate(6deg);
    z-index: 1;
}
.dash-mp-quick-tag::after {
    content: "";
    position: absolute;
    left: 0.15rem;
    bottom: -0.18rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.18rem 0.22rem 0 0;
    border-color: #9f1239 transparent transparent transparent;
    transform: rotate(-6deg);
}
.dash-mp-tone--food {
    background: linear-gradient(145deg, #fb7185, #e11d48);
    color: #fff;
}
.dash-mp-tone--green {
    background: linear-gradient(145deg, #4ade80, #16a34a);
    color: #fff;
}

/* Warna ikon dashboard (quick / store / tool) — dipakai PC & Android */
.dash-mp-tone--teal {
    background: linear-gradient(145deg, #5eead4, #0d9488);
    color: #fff;
}
.dash-mp-tone--emerald {
    background: linear-gradient(145deg, #6ee7b7, #059669);
    color: #fff;
}
.dash-mp-tone--sky {
    background: linear-gradient(145deg, #7dd3fc, #0284c7);
    color: #fff;
}
.dash-mp-tone--blue {
    background: linear-gradient(145deg, #93c5fd, #2563eb);
    color: #fff;
}
.dash-mp-tone--amber {
    background: linear-gradient(145deg, #fcd34d, #d97706);
    color: #fff;
}
.dash-mp-tone--orange {
    background: linear-gradient(145deg, #fdba74, #ea580c);
    color: #fff;
}
.dash-mp-tone--rose {
    background: linear-gradient(145deg, #fda4af, #e11d48);
    color: #fff;
}
.dash-mp-tone--fuchsia {
    background: linear-gradient(145deg, #f0abfc, #c026d3);
    color: #fff;
}
.dash-mp-tone--indigo {
    background: linear-gradient(145deg, #a5b4fc, #4f46e5);
    color: #fff;
}
.dash-mp-tone--cyan {
    background: linear-gradient(145deg, #67e8f9, #0891b2);
    color: #fff;
}
.dash-mp-tone--lime {
    background: linear-gradient(145deg, #bef264, #65a30d);
    color: #fff;
}
.dash-mp-tone--slate {
    background: linear-gradient(145deg, #cbd5e1, #475569);
    color: #fff;
}

.dash-mp-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}
.dash-mp-eyebrow {
    margin: 0 0 0.25rem;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0d9488;
}
.dash-mp-section-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-heading);
}
.dash-mp-link {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0f766e;
    text-decoration: none;
}
.dash-mp-link:hover { text-decoration: underline; }

.dash-mp-stores--featured {
    margin-top: 0.15rem;
    padding: 0.7rem 0.75rem 0.8rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid #99f6e4;
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.07);
}
.dash-mp-stores--featured .dash-mp-section-head {
    margin-bottom: 0.5rem;
}
.dash-mp-store-rail {
    display: grid;
    grid-auto-flow: column;
    /* ~50% ukuran kartu sebelumnya (8.5–10.5rem) */
    grid-auto-columns: minmax(4.25rem, 5.25rem);
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.dash-mp-store-rail::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
.dash-mp-store-card {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    padding: 0.3rem 0.3rem 0.35rem;
    border-radius: 0.6rem;
    background: #fff;
    border: 1px solid #ccfbf1;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}
.dash-mp-store-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1.5px;
    background: linear-gradient(90deg, #14b8a6, #38bdf8);
    opacity: 0.9;
}
.dash-mp-store-card--coffee::before {
    background: linear-gradient(90deg, #f59e0b, #ea580c);
}
.dash-mp-store-card--toko::before {
    background: linear-gradient(90deg, #0284c7, #4f46e5);
}
.dash-mp-store-card--ringan::before {
    background: linear-gradient(90deg, #6366f1, #0d9488);
}
.dash-mp-store-card:hover {
    transform: translateY(-1px);
    border-color: #0d9488;
    box-shadow: 0 5px 12px rgba(15, 118, 110, 0.12);
}
.dash-mp-store-logo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.45rem;
    display: grid;
    place-items: center;
    background: #f0fdfa;
    color: #0f766e;
    font-size: 0.85rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.dash-mp-store-logo.has-img {
    background: #fff;
    padding: 0;
}
.dash-mp-store-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dash-mp-store-card--coffee .dash-mp-store-logo:not(.has-img) {
    background: #fff7ed;
    color: #c2410c;
}
.dash-mp-store-card--toko .dash-mp-store-logo:not(.has-img) {
    background: #eff6ff;
    color: #1d4ed8;
}
.dash-mp-store-card--ringan .dash-mp-store-logo:not(.has-img) {
    background: #eef2ff;
    color: #4338ca;
}
.dash-mp-store-top { display: none; }
.dash-mp-store-icon { display: none; }
.dash-mp-store-badge { display: none !important; }
.dash-mp-store-name {
    font-size: 0.58rem;
    font-weight: 800;
    color: var(--text-heading, #0f172a);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}
.dash-mp-store-slug { display: none; }
body:not(.neo-portal-app) .dash-mp-eyebrow { font-size: 0.78rem; }
body:not(.neo-portal-app) .dash-mp-section-title { font-size: 1.45rem; }
body:not(.neo-portal-app) .dash-mp-store-rail {
    grid-auto-columns: minmax(7.5rem, 1fr);
    gap: 0.65rem;
}
body:not(.neo-portal-app) .dash-mp-store-card { padding: 0.45rem 0.45rem 0.5rem; border-radius: 0.75rem; }
body:not(.neo-portal-app) .dash-mp-store-name { font-size: 0.8rem; }

.dash-mp-tool-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}
@media (min-width: 640px) {
    .dash-mp-tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .dash-mp-tool-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.dash-mp-tools--featured {
    padding: 0.85rem 0.9rem 1rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.dash-mp-tools--featured .dash-mp-section-head {
    margin-bottom: 0.65rem;
}
.dash-mp-tool {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.75rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.dash-mp-tool:hover {
    transform: translateY(-1px);
    border-color: #99f6e4;
    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.08);
}
.dash-mp-tool-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.72rem;
    box-shadow: none;
}
.dash-mp-tool-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
    flex: 1;
}
.dash-mp-tool-text strong {
    font-size: 0.78rem;
    color: var(--text-heading);
    line-height: 1.2;
}
.dash-mp-tool-text small {
    font-size: 10px;
    color: var(--text-muted-color);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dash-mp-tool-chev {
    color: #94a3b8;
    font-size: 0.65rem;
}

/* —— Pesanan etalase (mobile-first) —— */
.pe-page {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    padding: 0.75rem 0.85rem 6.5rem;
    box-sizing: border-box;
}
@media (min-width: 640px) {
    .pe-page { padding: 1.25rem 1rem 3rem; }
}
/* Mode PC: lebar desktop, bukan kolom HP */
body:not(.neo-portal-app) .pe-page {
    max-width: 68rem;
    padding: 1.25rem 1.5rem 3.5rem;
}
@media (min-width: 900px) {
    body:not(.neo-portal-app) .pe-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
    body:not(.neo-portal-app) .pe-page > .pe-hero {
        max-width: none;
    }
    body:not(.neo-portal-app) .pe-detail-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 1rem;
        align-items: start;
    }
    body:not(.neo-portal-app) .pe-detail-main,
    body:not(.neo-portal-app) .pe-detail-side {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        min-width: 0;
    }
}
body.neo-portal-app .pe-page {
    max-width: 100%;
    padding: 0.75rem 0.75rem 6.5rem;
}
body.neo-portal-app .pe-list {
    display: flex;
    flex-direction: column;
}
body.neo-portal-app .pe-detail-grid,
body.neo-portal-app .pe-detail-main,
body.neo-portal-app .pe-detail-side {
    display: block;
}
.pe-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 0.75rem;
    min-height: 2.25rem;
}
.pe-back:hover { color: var(--text-heading); }
.pe-alert {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.pe-alert--ok { background: #ccfbf1; color: #115e59; }
.pe-alert--err { background: #fee2e2; color: #991b1b; }

.pe-tabs {
    display: flex;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(19, 78, 74, 0.06);
    margin-bottom: 0.85rem;
}
.pe-tabs--scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 1rem;
    scrollbar-width: none;
}
.pe-tabs--scroll::-webkit-scrollbar { display: none; }
.pe-tabs--scroll .pe-tab {
    flex: 0 0 auto;
    min-width: 5.5rem;
    padding: 0.55rem 0.65rem;
}
.pe-tab {
    flex: 1;
    text-align: center;
    padding: 0.55rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted-color);
    text-decoration: none;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.pe-tab.is-on {
    background: #fff;
    color: var(--text-heading);
    box-shadow: var(--shadow);
}
.pe-tab-n {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.12);
    color: var(--primary-color);
}
.pe-tab.is-on .pe-tab-n { background: var(--primary-soft); }

.pe-list { display: flex; flex-direction: column; gap: 0.55rem; }
.pe-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid rgba(153, 246, 228, 0.55);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}
.pe-list-item:active { transform: scale(0.985); }
.pe-list-item:hover { box-shadow: var(--shadow-lg); }
.pe-list-ico {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}
.pe-list-body { flex: 1; min-width: 0; }
.pe-list-code {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}
.pe-list-meta {
    font-size: 0.7rem;
    color: var(--text-muted-color);
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pe-list-step {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    color: #0f766e;
    background: #ccfbf1;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}
.pe-list-right {
    text-align: right;
    flex-shrink: 0;
}
.pe-list-rp {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
}
.pe-list-chev { color: #94a3b8; font-size: 0.7rem; margin-top: 0.25rem; }
.pe-empty {
    text-align: center;
    padding: 2.5rem 1.25rem;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px dashed rgba(153, 246, 228, 0.8);
    color: var(--text-muted-color);
    font-size: 0.85rem;
}

/* Detail hero */
.pe-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 1.15rem 1.1rem 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff !important;
    background: linear-gradient(145deg, #134e4a 0%, #0f766e 48%, #14b8a6 100%);
    box-shadow: 0 12px 28px -10px rgba(19, 78, 74, 0.45);
}
.pe-hero::after {
    content: '';
    position: absolute;
    right: -20%;
    top: -40%;
    width: 70%;
    height: 140%;
    background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%);
    pointer-events: none;
}
.pe-hero-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}
.pe-hero-kode {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    word-break: break-all;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
.pe-hero-sub {
    margin-top: 0.35rem;
    font-size: 0.72rem;
    opacity: 0.9;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.88) !important;
}
.pe-hero-badge {
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
.pe-hero-meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.9rem;
}
.pe-chip {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Horizontal stepper (mobile) */
.pe-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(153, 246, 228, 0.55);
    box-shadow: var(--shadow);
    padding: 0.85rem 0.4rem 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.pe-step {
    position: relative;
    text-align: center;
    padding: 0 0.15rem;
    min-width: 0;
}
.pe-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: calc(50% + 0.7rem);
    right: calc(-50% + 0.7rem);
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}
.pe-step.is-done:not(:last-child)::after,
.pe-step.is-current:not(:last-child)::after { background: #5eead4; }
.pe-step-dot {
    position: relative;
    z-index: 1;
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 auto 0.4rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 800;
    background: #e2e8f0;
    color: #94a3b8;
}
.pe-step.is-done .pe-step-dot {
    background: #0d9488;
    color: #fff;
}
.pe-step.is-current .pe-step-dot {
    background: #f59e0b;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.22);
    animation: pe-pulse 1.6s ease-in-out infinite;
}
@keyframes pe-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.22); }
    50% { box-shadow: 0 0 0 7px rgba(245, 158, 11, 0.08); }
}
.pe-step-label {
    font-size: 0.58rem;
    font-weight: 800;
    color: #94a3b8;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pe-step.is-done .pe-step-label,
.pe-step.is-current .pe-step-label { color: var(--text-heading); }
.pe-step-time {
    display: none;
}
@media (min-width: 640px) {
    .pe-steps {
        display: block;
        padding: 1rem 1.1rem 0.4rem;
    }
    .pe-step {
        display: flex;
        gap: 0.75rem;
        text-align: left;
        padding: 0 0 1rem;
    }
    .pe-step:not(:last-child)::after {
        left: 0.65rem;
        right: auto;
        top: 1.45rem;
        bottom: 0;
        width: 2px;
        height: auto;
        background: #e2e8f0;
    }
    .pe-step.is-done:not(:last-child)::after { background: #5eead4; }
    .pe-step.is-current:not(:last-child)::after { background: #fde68a; }
    .pe-step-dot {
        margin: 0;
        width: 1.5rem;
        height: 1.5rem;
        flex-shrink: 0;
        font-size: 0.65rem;
    }
    .pe-step-label {
        font-size: 0.85rem;
        -webkit-line-clamp: unset;
        display: block;
    }
    .pe-step-desc {
        font-size: 0.72rem;
        color: var(--text-muted-color);
        margin-top: 0.1rem;
        font-weight: 500;
    }
    .pe-step.is-todo .pe-step-desc { color: #cbd5e1; }
    .pe-step-time {
        display: block;
        font-size: 0.65rem;
        color: #94a3b8;
        margin-top: 0.15rem;
    }
}

.pe-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(153, 246, 228, 0.55);
    box-shadow: var(--shadow);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.pe-card-h {
    padding: 0.7rem 0.95rem 0;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted-color);
}
.pe-card-b { padding: 0.7rem 0.95rem 0.95rem; }
.pe-ship-row {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.8rem;
}
.pe-ship-row:last-child { border-bottom: 0; padding-bottom: 0; }
.pe-ship-ico {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: #f0fdfa;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}
.pe-ship-k { font-size: 0.65rem; font-weight: 700; color: var(--text-muted-color); }
.pe-ship-v { font-weight: 700; color: var(--text-heading); word-break: break-word; }
.pe-kode-ambil {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: var(--primary-color);
}

.pe-item {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.95rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.85rem;
}
.pe-item:last-child { border-bottom: 0; }
.pe-item-name { font-weight: 700; color: var(--text-heading); line-height: 1.3; }
.pe-item-qty { font-size: 0.7rem; color: var(--text-muted-color); margin-top: 0.15rem; }
.pe-item-rp { font-weight: 800; color: var(--primary-color); white-space: nowrap; }

.pe-sum-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8rem;
    padding: 0.25rem 0;
    color: var(--text-muted-color);
}
.pe-sum-row strong { color: var(--text-heading); font-weight: 700; }
.pe-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0.55rem;
    padding-top: 0.65rem;
    border-top: 1px dashed #99f6e4;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-heading);
}
.pe-sum-total span:last-child { color: var(--primary-color); font-size: 1.15rem; }

.pe-done-banner {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.95rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
    border: 1px solid #99f6e4;
    color: #115e59;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
}
.pe-done-banner i {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #0d9488;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pe-cta {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(153, 246, 228, 0.55);
    box-shadow: var(--shadow);
    padding: 0.95rem;
}
.pe-cta-hint {
    font-size: 0.78rem;
    color: var(--text-color);
    line-height: 1.45;
    margin-bottom: 0.65rem;
}
.pe-cta textarea {
    width: 100%;
    min-height: 2.75rem;
    margin-bottom: 0.65rem;
    font-size: 16px; /* cegah zoom iOS/Android */
}
.pe-cta-btn {
    width: 100%;
    min-height: 3rem;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.7);
    -webkit-tap-highlight-color: transparent;
}
.pe-cta-btn:active { transform: scale(0.98); }
@media (max-width: 639px) {
    .pe-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        margin: 0;
        border-radius: 18px 18px 0 0;
        border: 0;
        border-top: 1px solid rgba(153, 246, 228, 0.7);
        box-shadow: 0 -8px 28px rgba(19, 78, 74, 0.12);
        padding: 0.85rem 0.85rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
    }
    .pe-cta-hint { display: none; }
}

/* —— Pesanan etalase: tema gelap —— */
body.neo-client.pe-dark,
body.neo-client.pe-dark main {
    background: #0b1220 !important;
    background-image: none !important;
    color: #e2e8f0 !important;
}
.pe-theme-dark {
    color: #e2e8f0 !important;
}
.pe-theme-dark .pe-back {
    color: #5eead4 !important;
}
.pe-theme-dark .pe-back:hover { color: #ccfbf1 !important; }
.pe-theme-dark h1,
.pe-theme-dark .pe-list-code,
.pe-theme-dark .pe-item-name,
.pe-theme-dark .pe-ship-v,
.pe-theme-dark .pe-sum-row strong,
.pe-theme-dark .pe-sum-total,
.pe-theme-dark .pe-step.is-done .pe-step-label,
.pe-theme-dark .pe-step.is-current .pe-step-label {
    color: #f8fafc !important;
    -webkit-text-fill-color: #f8fafc !important;
}
.pe-theme-dark .pe-list-meta,
.pe-theme-dark .pe-item-qty,
.pe-theme-dark .pe-ship-k,
.pe-theme-dark .pe-sum-row,
.pe-theme-dark .pe-card-h,
.pe-theme-dark .pe-step-desc,
.pe-theme-dark .pe-step-time,
.pe-theme-dark .pe-step-label,
.pe-theme-dark .pe-empty {
    color: #94a3b8 !important;
    -webkit-text-fill-color: #94a3b8 !important;
}
.pe-theme-dark .pe-alert--ok {
    background: rgba(45, 212, 191, 0.12);
    color: #99f6e4 !important;
    border: 1px solid rgba(45, 212, 191, 0.25);
}
.pe-theme-dark .pe-alert--err {
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca !important;
    border: 1px solid rgba(248, 113, 113, 0.25);
}
.pe-theme-dark .pe-tabs {
    background: rgba(255, 255, 255, 0.06);
}
.pe-theme-dark .pe-tab { color: #94a3b8 !important; }
.pe-theme-dark .pe-tab.is-on {
    background: #1e293b;
    color: #f8fafc !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.pe-theme-dark .pe-tab-n {
    background: rgba(45, 212, 191, 0.15);
    color: #5eead4 !important;
}
.pe-theme-dark .pe-list-item,
.pe-theme-dark .pe-card,
.pe-theme-dark .pe-steps,
.pe-theme-dark .pe-empty,
.pe-theme-dark .pe-cta {
    background: #111827 !important;
    border-color: rgba(148, 163, 184, 0.16) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.pe-theme-dark .pe-list-ico {
    background: rgba(45, 212, 191, 0.12);
    color: #5eead4;
}
.pe-theme-dark .pe-list-step {
    background: rgba(45, 212, 191, 0.12);
    color: #5eead4 !important;
}
.pe-theme-dark .pe-list-rp,
.pe-theme-dark .pe-item-rp,
.pe-theme-dark .pe-sum-total span:last-child,
.pe-theme-dark .pe-kode-ambil {
    color: #2dd4bf !important;
    -webkit-text-fill-color: #2dd4bf !important;
}
.pe-theme-dark .pe-list-chev { color: #64748b; }
.pe-theme-dark .pe-hero {
    background: linear-gradient(145deg, #042f2e 0%, #0f766e 55%, #14b8a6 100%);
    box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.55);
}
.pe-theme-dark .pe-step:not(:last-child)::after { background: #334155; }
.pe-theme-dark .pe-step.is-done:not(:last-child)::after,
.pe-theme-dark .pe-step.is-current:not(:last-child)::after { background: #2dd4bf; }
.pe-theme-dark .pe-step-dot {
    background: #334155;
    color: #64748b;
}
.pe-theme-dark .pe-step.is-done .pe-step-dot {
    background: #14b8a6;
    color: #042f2e;
}
.pe-theme-dark .pe-step.is-current .pe-step-dot {
    background: #f59e0b;
    color: #111827;
}
.pe-theme-dark .pe-step.is-todo .pe-step-desc { color: #475569 !important; }
.pe-theme-dark .pe-ship-row,
.pe-theme-dark .pe-item {
    border-bottom-color: rgba(148, 163, 184, 0.12);
}
.pe-theme-dark .pe-ship-ico {
    background: rgba(45, 212, 191, 0.1);
    color: #5eead4;
}
.pe-theme-dark .pe-sum-total {
    border-top-color: rgba(45, 212, 191, 0.35);
}
.pe-theme-dark .pe-done-banner {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.25), rgba(15, 23, 42, 0.9));
    border-color: rgba(45, 212, 191, 0.35);
    color: #99f6e4 !important;
}
.pe-theme-dark .pe-cta-hint { color: #cbd5e1 !important; }
.pe-theme-dark .pe-cta textarea.neo-input,
.pe-theme-dark .pe-cta .neo-input {
    background: #0b1220 !important;
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    border-color: rgba(148, 163, 184, 0.25) !important;
}
.pe-theme-dark .pe-cta-btn {
    background: linear-gradient(135deg, #0d9488, #2dd4bf);
    color: #042f2e !important;
    box-shadow: 0 10px 24px -8px rgba(45, 212, 191, 0.55);
}
@media (max-width: 639px) {
    .pe-theme-dark .pe-cta {
        background: #111827 !important;
        border-top: 1px solid rgba(148, 163, 184, 0.18) !important;
        box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.45);
    }
}

/* —— Pindah mode hybrid Client ↔ Kurir —— */
.neo-mode-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
}
.neo-mode-bar--kurir {
    background: #ecfdf5;
    border: 1px solid #99f6e4;
    color: #0f766e;
}
.neo-mode-bar--jasa {
    background: #f0fdfa;
    border: 1px solid #5eead4;
    color: #0f766e;
}
.neo-mode-bar--client {
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #c2410c;
}
.neo-mode-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.neo-mode-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
    white-space: nowrap;
}
.neo-mode-switch--to-client {
    background: #0f766e;
    color: #fff !important;
}
.neo-mode-switch--to-kurir {
    background: #ea580c;
    color: #fff !important;
}
.neo-mode-switch--to-jasa {
    background: #b45309;
    color: #fff !important;
}
.neo-mode-switch--to-mitra {
    background: #0f766e;
    color: #fff !important;
}
