:root {
    /* #923493   1px solid rgba(17,19,23,0.08)*/
    --accent: #ee1e3e;
    --text: #fff;
    --text2: #923493;
    --bg: #0A0A0A;
    --btn-bg: #fff;
    --card: #ffffff;
    --btn-border: rgba(255, 255, 255, .16);
    --dot: rgba(255, 255, 255, .38);
    --safe-b: calc(30px + env(safe-area-inset-bottom));
    --btn-size: 50px;
    --btn-radius: 14px;
    --btn-bg :linear-gradient(29deg, #923493, #ee1e3e);
     --btn-border:rgba(255,255,255,.16); --dot:rgba(255,255,255,.38);
      --safe-b:calc(30px + env(safe-area-inset-bottom));
      --btn-size:50px; --btn-radius:14px;
     --divider: rgba(17, 19, 23, .08);
            --radius-lg: 18px;
 --navH: 72px;                 /* your nav height */
  --safeB: env(safe-area-inset-bottom, 0px);
      --ink:#111827; --ink-2:#374151; --muted:#9AA3AF; --surface:#EFEFEF; --shadow:0 10px 24px rgba(0,0,0,.10);
      --side-pad:20px;
--mapH: 55vh;
  --spacerH: 49vh;
   /* runtime */
    --vvh:120vh;   /* visual viewport height */
    --kb:0px;       /* keyboard height */
    --sheetH: 200px;/* bottom card height (tweak if needed) */
}
/* no motion */
  .noFx, .noFx *{transition:none!important;animation:none!important;scroll-behavior:auto!important;}
html,
body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: #000;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, "SF Pro Text", Roboto, Arial, sans-serif;
    overscroll-behavior: none;
    user-select: none;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.app-index {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Track & slides */
.track {
    display: flex;
    height: 100%;
    transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ✅ Fix: ensure bg always covers full screen */
.bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(110% 70% at 50% 10%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .55) 100%),
        linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .12) 40%);
    z-index: 1;
}

.content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: calc(96px + env(safe-area-inset-bottom));
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* use center if you want centered text */
    gap: 10px;
    /* space between logo and title */
}

.logo {
    height: 30px;
    width: auto;
    display: block;
    filter: brightness(1.1) contrast(1.05) drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
    /* keep readable on photos */
    pointer-events: none;
    user-select: none;
    margin-bottom: 4%;
}

.title {
    font-weight: 600;
    font-size: 33px;
    line-height: 1.12;
    margin: 0 0 14px;
    color: var(--text);
}

.subtitle {
    font-size: 15px;
    opacity: .88;
    margin: 0;
}

/* Bottom bar */
.bottom-bar {
    position: absolute;
    inset-inline: 30px;
    bottom: var(--safe-b);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    pointer-events: auto;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    width: var(--btn-size);
    height: var(--btn-size);
    border: 1px solid var(--btn-border);
    border-radius: 20%;
    /* keep it circular or change to 0 if you prefer */
    background: transparent;
    /* fully transparent background */
    color: #fff;
    /* arrow color */
    display: grid;
    place-items: center;
    box-shadow: none;
    /* remove white box shadow */
    cursor: pointer;
    transition: transform 120ms ease, opacity 120ms ease;
}

.nav-btn:active {
    transform: scale(0.92);
    opacity: 0.8;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: rgb(12 11 11);
}

.nav-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.dots {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
}

.dot {
    width: 12px;
    height: 6px;
    background: var(--dot);
    border-radius: 999px;
    transition: all 200ms ease;
}

.dot.active {
    width: 29px;
    background: var(--accent);
}

main {
    margin: 0;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, "SF Pro Text", Roboto, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #e9e9e9, #ee1e3e);
    overscroll-behavior: none;
    user-select: none;
}

.app-login {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    max-width: 520px;
    margin: 0 auto;
}

/* Top: logo alone */
.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 12px;
    height: 60vh;
}

.logo .o {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    display: grid;
    place-items: center;
    color: #000;
    font-weight: 900;
}

/* Content sheet (white, rounded, scrolls if needed) */
.sheet {
    margin-top: 14px;
    background: var(--card);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 30px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    /* for flex scrolling */
    overflow: auto;
    height: 60vh;
    text-align: center;
}

.login-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.12;
    margin: 0 0 14px;
    color: #313131;
}

.nav-btn.next {
    background: #e8e8e8;
}

.nav-btn.prev {
    border: 1px solid #fff;
}

.nav-btn.prev svg {
    stroke: #fff
}

.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.field {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 14px;
    background: #fff;
}

.field input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 15px;
    color: var(--bg);
}

.field input::placeholder {
    color: #9a9a9a;
}

.icon {
    width: 20px;
    height: 20px;
    color: #888;
    display: grid;
    place-items: center;
}

.icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.eye {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.eye svg {
    width: 22px;
    height: 22px;
    stroke: #888;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.link {
    color: #444;
    text-decoration: none;
    padding-bottom: 14px;
}

.link:hover {
    text-decoration: underline;
}

.btn {
    border: 0;
    outline: 0;
    cursor: pointer;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 16px;
    transition: transform .05s ease, background .15s ease, opacity .15s ease;
}

.btn:active {
    transform: scale(.98);
}

.btn-primary {
    background: linear-gradient(29deg, #923493, #ee1e3e);
    color: var(--text);
    width: 100%;
}

.btn-primary:active {
    background: var(--accent-press);
}

.sep {
    position: relative;
    text-align: center;
    color: #777;
    font-size: 13px;
    margin: 6px 0 2px;
}

.sep::before,
.sep::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #eee;
}

.sep::before {
    left: 0
}

.sep::after {
    right: 0
}

.oauth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.oauth .btn {
    background: #fff;
    border: 1px solid var(--line);
    color: #1a1a1a;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.oauth svg {
    width: 18px;
    height: 18px;
}

.foot {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-top: 6px;
}

.foot a {
    color: #555;
    text-decoration: none;
}

.foot a:hover {
    text-decoration: underline;
}

.logo-login {
    height: 30%;
    z-index: 99;
    display: block;
    margin-inline: auto;
}

/* extras for OTP */
.field--otp {
    justify-content: center;
    gap: 10px;
}

.otp-box {
    width: 46px;
    height: 54px;
    border: 1px solid #191818;
    border-radius: 14px;
    text-align: center;
    font: 700 20px/1.1 Urbanist, sans-serif;
    background: #fff;
}

.otp-box:focus {
    outline: none;
    border-color: #d8d8de;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .04) inset;
}

.muted {
    color: #6b6b6b;
    font-size: 13px;
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Desktop preview nice width */
@media (min-width:560px) {
    .sheet {
        padding: 28px 22px;
    }

    .title {
        font-size: 28px;
    }
}


/* FULL WIDTH, NO BOXED CONTAINER */
    .home{ width:100vw; max-width:none; overflow-x:hidden; background:var(--surface); }

    .app{
      width:100%; height:100vh; display:grid; grid-template-rows:auto 1fr; overflow:hidden;
      padding-left: env(safe-area-inset-left);
      padding-right: env(safe-area-inset-right);
      padding-bottom: env(safe-area-inset-bottom);
    }

    /* TOP (avatar + name + bell) — USE INNER PADDING, NOT OUTER MARGINS */
    .topbar-home{  padding: 16px calc(var(--side-pad) + env(safe-area-inset-right)) 13px calc(var(--side-pad) + env(safe-area-inset-left)); }
    .top-row{ display:flex; align-items:center; gap:12px; }
    .avatar{ width:45px; height:45px; border-radius:14px; overflow:hidden; background:#ddd; flex:0 0 auto; }
    .avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
    .grow{ flex:1; min-width:0; }
    .u-name{ font-weight:600; color:var(--ink); line-height:1; }
    .u-sub{ font-size:12px; color:var(--muted); margin-top:2px; line-height:1.2; }
.bell {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    display: grid
;
    place-items: center;
}    .bell:active{ transform:scale(.96); opacity:.9; }
    .bell svg{ width:22px; height:22px; color:var(--ink); }

    /* SEARCH (alone)F3F4F6 */
    .search{
      margin:12px calc(var(--side-pad) + env(safe-area-inset-right)) 10px calc(var(--side-pad) + env(safe-area-inset-left));
      background:#ffffff; border-radius:16px; padding:12px 14px;
      display:flex; align-items:center; gap:10px; color:var(--ink-2);
    }
    .search svg{ width:22px; height:22px; color:var(--ink-2); }
    .search input{ border:0; outline:0; background:transparent; width:100%; font:600 15px/1 'Urbanist',system-ui; color:var(--ink); }

    /* CATEGORY SLIDER (icons) */
    .chips-scroll{
      padding:6px calc(var(--side-pad) + env(safe-area-inset-right)) 2px calc(var(--side-pad) + env(safe-area-inset-left));
      display:flex; gap:10px; overflow-x:auto; scroll-snap-type:x mandatory;margin-bottom: 3%;
    }
    .chips-scroll::-webkit-scrollbar{ height:0 }
    
    .chip:active{ transform:scale(.97); opacity:.9; }
    .chip svg{ width:34px; height:35px; }
    .chip .lbl{ font-size:12px; font-weight:800; }

    /* SCROLL AREA */
    .sheet-home{
      height:100%; overflow-y:auto; -webkit-overflow-scrolling:touch;
      padding:0 calc(var(--side-pad) + env(safe-area-inset-right)) 110px calc(var(--side-pad) + env(safe-area-inset-left));
      padding: 3% 5%; background: none!important;
    }
    .sheet-home::-webkit-scrollbar{ width:0; height:0; }

    .section-h{ display:flex; align-items:center; justify-content:space-between; margin:16px 2px 10px; color:var(--ink); }
    .section-h .t{ font-weight:800; font-size:18px; }
    .section-h .f{ font-size:12px; color:var(--muted); }

    /* CAR CARD */
    .car-card{ background:var(--card); color:var(--ink); border-radius:24px; box-shadow:var(--shadow); padding:12px; margin-bottom:14px; }
    .car-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .driver{ display:flex; align-items:center; gap:10px; }
    .driver .a{ width:45px; height:45px; border-radius:12px; overflow:hidden; background:#ddd; flex:0 0 auto; }
    .driver .a img{ width:100%; height:100%; object-fit:cover; display:block; }
    .driver .name{ font:700 14px/1.2 'Urbanist',system-ui; color:var(--ink); }
    .driver .sub{ font-size:12px; color:var(--muted); }
    .price{ font:800 14px/1 'Urbanist'; background:#F6F7FB; padding:8px 10px; border-radius:12px; }

    /* STABLE CAR PHOTO (no broken icon flash) */
    .car-photo{ position:relative; margin:10px 0 8px; border-radius:18px; overflow:hidden; }
    .car-photo .ph{
      width:100%; height:auto; display:block; object-fit:cover; aspect-ratio:16/9;
      filter: drop-shadow(0 12px 18px rgba(0,0,0,.18));
    }

.car-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #afaaaa1a;
    border-radius: 12px;
}

/* Left section (model + eta stacked) */
.car-foot .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

/* Car model name */
.model {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ETA (time) line */
.eta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
    padding-top: 5%;
}
.eta svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}


/* Book button — neutral layout (inherits brand color from your root) */
.book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 14px;
  border: none;
border-radius: 10px;
  background: linear-gradient(29deg, #923493, #ee1e3e);
  color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.book:active {
  transform: translateY(1px) scale(0.98);
  opacity: 0.9;
}

    /* BOTTOM NAV — EDGE-TO-EDGE WITH SAFE AREAS */
    .dock{
      position:fixed;
      left: calc(12px + env(safe-area-inset-left));
      right: calc(12px + env(safe-area-inset-right));
      bottom: calc(12px + env(safe-area-inset-bottom));
      height:68px; border-radius:20px; background:#111315; color:#fff;
      box-shadow:0 12px 28px rgba(0,0,0,.35);
      display:grid; grid-template-columns:1fr repeat(3,1fr); align-items:center; justify-items:center; gap:6px;
      z-index:10;
    }
    /* Category slider – padding that always works on mobile webviews */
.chips-scroll{
  --pad-l: calc(var(--side-pad) + env(safe-area-inset-left));
  --pad-r: calc(var(--side-pad) + env(safe-area-inset-right));

  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;

  /* 1) Regular visual padding */
  padding-inline: var(--pad-l) var(--pad-r);

  /* 2) Tell snap engine to respect the insets when snapping */
  scroll-padding-inline: var(--pad-l) var(--pad-r);
}

/* 3) Fallback for engines that ignore inline padding on horizontal flex scrollers */
.chips-scroll::before,
.chips-scroll::after{
  content: "";
  flex: 0 0 auto;
}
.chips-scroll::before{ width: var(--pad-l); }
.chips-scroll::after{  width: var(--pad-r); }

/* Items unchanged */
.chip{
  flex: 0 0 auto;
  min-width: 96px;
  scroll-snap-align: start;
  background: #fff;
  color: var(--ink-2);
  border:none;
  border-radius: 18px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform .12s ease, opacity .12s ease, border-color .12s ease;
}

    .clock{ font-weight:800; font-size:14px; opacity:.9; }
    .tab{ width:46px; height:46px; border-radius:14px; display:grid; place-items:center; transition:transform .12s ease, opacity .12s ease, background .12s ease; }
    .tab svg{ width:22px; height:22px; color:#fff; }
    .tab.active{ background:rgba(255,255,255,.08); }
    .tab:active{ transform:scale(.96); opacity:.9; }
 /* ===== Floating icon-only navigation ===== */
.mini-dock{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:18px;
  padding:8px 12px  ;
  background:rgb(255 255 255 / 73%);
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.1);
  backdrop-filter:blur(10px);
}

/* recommended section */
.mini-dock .recommended{
  display:flex;
  align-items:center;
  gap:18px;
  position:relative;
}
.mini-dock .recommended::before{
  position:absolute;
  top:-18px;
  left:0;
  font-size:10px;
  font-weight:600;
  color:#9AA3AF;
}

/* base button (icon only) */
.md-btn{
  background:none;
  border:none;
  outline:none;
  cursor:pointer;
  display:grid;
  place-items:center;
  color:#1f2937;
  transition:all .15s ease;
  border-radius:14px;
  width:44px; height:44px;
}
.md-btn svg{
  width:22px; height:22px;
  stroke:currentColor;
  fill:none;
}

/* when selected → black background + white icon */
.md-btn.is-selected{
  background:#000;
  color:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  transform:scale(1.05);
}

/* AI (⚡️ energy icon) — gradient stroke always */
.md-btn.ai{
  width:46px; height:46px;
}
.md-btn.ai svg path{
  stroke:url(#aiGradient);
  stroke-width:2;
  stroke-linejoin:round;
  stroke-linecap:round;
}
.md-btn.ai svg{
  width:26px; height:26px;
  filter: drop-shadow(0 0 6px rgba(238,30,62,0.35));
}
/*order car*/
   .app-req {
            position: relative;
            height: 100%;
            width: 100%;
            overflow: hidden
        }

        /* map full width, stops under trip-card */
        #map {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            height: 100%;
            z-index: 1;
            background: #dbeafe;
        }

        .leaflet-control-attribution {
            display: none
        }

        .greeting {
            position: absolute;
            left: 12px;
            right: 12px;
            top: calc(env(safe-area-inset-top) + 8px);
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 10px;
            top: 20px;
            background: rgb(255 255 255 /85%);;
            backdrop-filter: blur(12px);
            border-radius: 17px;
            padding: 5px 26px;
            box-shadow: var(--shadow)
        }

        .greeting .title-req {
            font-weight: 600;
            color:#000;
        }

        .greeting .sub {
            font-size: 13px;
            color: var(--muted);
            margin-top: 7%;
        }

        .greeting .bell {
            margin-left: auto;
            width: 28px;
            height: 28px;
            border-radius: 10px;
            display: grid;
            place-items: center;
        }

        /* overlay holds all content */
        .overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 12px;
            display: grid;
            gap: 12px;
            background: #fff;
            z-index: 2;
            padding-bottom: calc(env(safe-area-inset-bottom) + 12px);
        }

        /* trip-card floats above the map */
        .trip-card {
            position: relative;
            z-index: 4;
            margin-top: -90px;
            /* pull it up into the map */
            background: var(--card);
            border: 1px solid var(--divider);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 1px;
        }

        .trip-row {
            display: grid;
            grid-template-columns: 48px 1fr;
            /* bigger icon column */
            gap: 12px;
            align-items: center;
            padding: 12px 10px;
            border-radius: 12px;
        }

        .trip-row+.trip-row {
            position: relative;
        }

        /* horizontal line that starts from the left icon side */
        .trip-row+.trip-row::before {
            content: "";
            position: absolute;
            top: 0;
            right: 19px;
            width: 75%;
            height: 1px;
            background: var(--divider);
        }

        /* circular icon holder */
        .icon-circle {
            position: relative;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid rgba(17, 19, 23, .06);
            display: grid;
            place-items: center;
            box-shadow: 0 1px 0 rgba(17, 19, 23, .04);
        }

        /* vertical dotted line: drawn from DEST icon up towards PICKUP icon */
        .trip-row.dest .icon-circle::before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -28px;
            /* how far above the dest circle to start */
            height: 28px;
            /* length of connector (tweak to taste) */
            width: 2px;
            background: repeating-linear-gradient(to bottom,
                    rgba(17, 19, 23, .25) 0 4px,
                    rgba(17, 19, 23, .25) 0 4px);
            border-radius: 1px;
        }


        .trip-row .value {
            color: var(--muted);;
        }

        .trip-row .hint {
            color: var(--muted);
        }

        /* make the SVGs inherit color easily */
        .icon-circle svg {
            width: 22px;
            height: 22px;
            display: block;
            fill: currentColor;
            color: #111317;
        }

        .trip-row .label {
           font-size: 14px;
    font-weight: 800;
    color: #923493;
    margin-bottom: 4px;
    padding: 0;
        }

        .trip-row .hint {
            color: var(--muted)
        }

        /* wallet */
        .wallet {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            padding: 10px;
            background: #923493;
            color: #fff;
            border-radius: var(--radius-lg)
        }

        .wallet .kicker {
            font-size: 12px;
            opacity: .8;
            margin-bottom: 6px
        }

        .wallet .amount {
            font-size: 20px;
            font-weight: 800
        }

        .wallet .btn {
            background: #fff;
            color: #111317;
            border-radius: 12px;
            padding: 10px 14px;
            border: 1px solid #e5e7eb;
            font-weight: 600;
        }

        /* shortcuts */
        .section-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .section-title h4 {
            margin: 0;
            font-size: 16px
        }

        .shortcuts {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 2px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch
        }

        .shortcut {
            flex: 0 0 56%;
            scroll-snap-align: start;
            border: 1px solid var(--divider);
            border-radius: 16px;
            padding: 12px;
            background: #fff;
            min-height: 96px;
        }

        .shortcut[data-type="home"] {
            background: rgba(239, 68, 68, .06)
        }

        .shortcut[data-type="work"] {
            background: rgba(16, 185, 129, .06)
        }

        .shortcut[data-type="fav"] {
            background: rgba(147, 52, 147, .07)
        }

        .shortcut .row1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px
        }

        .badges {
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 999px;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #000;
        }

        .wallet {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 5px;
            background: #923493;
            color: #fff;
            border-radius: 18px;
            box-shadow: var(--shadow);
            overflow: hidden;
            /* prevent any icon bleed */
        }

        .wallet-info {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .wallet-icon {
            width: 44px;
            height: 44px;
            flex: 0 0 44px;
            border-radius: 14px;
            display: grid;
            place-items: center;
        }

        .wallet-text {
            min-width: 0;
        }

        .wallet .kicker {
            font-size: 12px;
            opacity: .8;
            margin-bottom: 5px;
        }

        .wallet .amount {
            font-size: 20px;
            font-weight: 600;
            line-height: 1;
            white-space: nowrap;
        }

        .wallet .btn {
            background: #fff;
            color: #111317;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 7px 14px;
            font-weight: 700;
            flex: 0 0 auto;
        }

        .shortcut .req {
            font-weight: 700;
            margin-bottom: 2px
        }

        .shortcut .sub {
            color: var(--muted);
            font-size: 13px
        }

        /* Remove gray overscroll / bounce highlight on mobile horizontal scroll */
        .shortcuts {
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-x: contain;
            scrollbar-width: none;
            /* hide scrollbar (Firefox) */
        }

        .shortcuts::-webkit-scrollbar {
            display: none;
            /* hide scrollbar (WebKit) */
        }
.wallet-icon {
  width: 20px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wallet-svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

        /* map error */
        .map-oops {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(17, 17, 17, .85);
            color: #fff;
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 13px;
            display: none;
            z-index: 5;
        }


.nav {
    bottom: 5px;
    left: 70px;
    width: calc(100% - 140px);
    height: 74px;
    border-radius: 50px;
    background: #000000;
    overflow: hidden;
     position: fixed;
    left: 70px;
  height: var(--navH);
  padding-bottom: var(--safeB);
  z-index: 100; 
}
.main, .sheet-home, .page-content, .page-container{
  padding-bottom: calc(var(--navH) + var(--safeB) + 2px);
}
/* order */

