/* assets/style/ride.css */
#panel .input{
    width:100%;
    height: var(--tap);
    background: var(--gray);
    border: none;
    border-radius: var(--r14);
    padding: 0 12px;
    outline:none;
    color: var(--text);
}
#panel .input::placeholder{ color: rgba(11,15,25,.55); }

.sfRow{
    position: relative;
    display:flex;
    align-items:center;
    gap:10px;
}

.sfRow.sfRowInput,
.sfRowInput{
    position: relative;
}

.sfRow.sfRowInput .sfInput{
    padding-right: 44px;
}

.sfClear{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 18px;
}

.sfClear:active{
    transform: translateY(-50%) scale(0.98);
}

.sfDot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    flex: 0 0 auto;
}

.sfDot.origin{ background: rgba(29,78,216,.95); }
.sfDot.dest{ background: rgba(255,77,77,.95); }

.sfDivider{
    height: 1px;
    background: rgba(11,15,25,.10);
    margin: 10px 2px;
}

.suggestions{
    position:absolute;
    left:0;
    right:0;
    top: 52px;
    max-height: 260px;
    overflow:auto;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(11,15,25,.12);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.22);
    z-index:1500;
}

.suggestion{
    padding: 10px 12px;
    font-size: 13px;
    cursor:pointer;
    color: rgba(11,15,25,.92);
}
.suggestion:hover{ background: rgba(11,15,25,.06); }

#map{
    position: relative;
}

#map.is-route-loading{
    filter: blur(2px) saturate(.8);
    pointer-events: none;
}

#map.is-route-loading::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,.28);
    backdrop-filter: blur(1px);
    z-index: 500;
}

#map.is-route-loading::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:42px;
    height:42px;
    margin-left:-21px;
    margin-top:-21px;
    border-radius:50%;
    border: 3px solid rgba(11,15,25,.14);
    border-top-color: rgba(29,78,216,.9);
    animation: routeSpin .8s linear infinite;
    z-index: 501;
}

.recentBar{
    display:flex;
    gap:10px;
    margin-top: 10px;
}

.fareBox{
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(11,15,25,.10);
    background: rgba(255,255,255,.86);
    padding: 14px 16px;
    box-shadow: 0 10px 24px rgba(2,6,23,.08);
}

.fareBox.is-loading{
    overflow: hidden;
}

.fareBox.is-loading .farePrice,
.fareBox.is-loading .fareMeta{
    opacity: 0;
}

.fareBox.is-loading::before{
    content:"";
    display:block;
    width: 56%;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(226,232,240,.98) 0%, rgba(248,250,252,1) 48%, rgba(226,232,240,.98) 100%);
    background-size: 220% 100%;
    animation: routeShimmer 1.1s linear infinite;
}

.fareBox.is-loading::after{
    content:"";
    display:block;
    width: 36%;
    height: 12px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(226,232,240,.98) 0%, rgba(248,250,252,1) 48%, rgba(226,232,240,.98) 100%);
    background-size: 220% 100%;
    animation: routeShimmer 1.1s linear infinite;
}

@keyframes routeSpin{
    to { transform: rotate(360deg); }
}

@keyframes routeShimmer{
    0%{ background-position: 200% 0; }
    100%{ background-position: -20% 0; }
}

.recentItem{
    flex:1;
    border: none;
    background: rgba(11,15,25,.03);
    border-radius: 16px;
    padding: 10px 12px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    min-width:0;
}
.recentItem:active{ transform: translateY(1px); }

.riIco{
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    background: rgba(11,15,25,.06);
}

.riTxt{
    font-size: 13px;
    font-weight: 900;
    color: rgba(11,15,25,.86);
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
}

.vtRow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;

    padding: 12px 14px;
    border-radius: var(--r14);
    background: var(--gray);
    cursor:pointer;
    margin-top: 10px;
}

.vtRowSkeleton{
    pointer-events: none;
    background: rgba(255,255,255,.82);
}

.vtSk{
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(226,232,240,.98) 0%, rgba(248,250,252,1) 48%, rgba(226,232,240,.98) 100%);
    background-size: 220% 100%;
    animation: routeShimmer 1.1s linear infinite;
}

.vtSkName{
    width: 128px;
    height: 18px;
}

.vtSkMeta{
    width: 210px;
    height: 12px;
    margin-top: 8px;
}

.vtSkPrice{
    width: 74px;
    height: 18px;
}

.vtRow:hover{ border-color: rgba(249,213,21,.55); }

.vtRow.on{
    background: rgba(249,213,21,.16);
    border-color: rgba(249,213,21,.75);
}

.vtLeft{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.vtName{ font-weight: 950; font-size: 16px; }
.vtMeta{
    opacity:.78;
    font-size: 13px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.vtRight{
    font-weight: 950;
    font-size: 16px;
    white-space:nowrap;
}

/* ── Verify code banner ─────────────────────────────────── */
.verifyCodeBanner{
    width: 100%;
    margin: 10px 0;
    border-radius: 18px;
    background: #F9D515;
    padding: 16px 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(249,213,21,.45);
}

.verifyCodeRow{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verifyCodeLabel{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(2,6,23,.70);
}

.verifyCodeHintTxt{
    font-size: 11px;
    font-weight: 600;
    color: rgba(2,6,23,.55);
}

.verifyCodeNum{
    font-size: 48px;
    font-weight: 1000;
    letter-spacing: 10px;
    color: rgba(2,6,23,.92);
    line-height: 1;
}
/* ─────────────────────────────────────────────────────── */

.ride-card{
    width: 100%;
    margin: 10px 0;
    border-radius: 22px;
    padding: 12px;
    position: relative;
    overflow: hidden;

    background: rgba(255,255,255,.86);
    border: 1px solid rgba(2,6,23,.08);
    box-shadow: 0 14px 34px rgba(2,6,23,.10);
    color: rgba(2,6,23,.92);
}

.ride-card::before{
    content:"";
    display: none;
    position:absolute;
    inset: 0 0 auto 0;
    height: 54px;
    background:
        radial-gradient(140px 90px at 18% 10%, rgba(249,213,21,.35), rgba(249,213,21,0) 70%),
        radial-gradient(140px 90px at 82% 0%, rgba(45,107,255,.14), rgba(45,107,255,0) 70%),
        linear-gradient(90deg, rgba(249,213,21,.14), rgba(255,184,0,.08));
    pointer-events:none;
}

.ride-card::after{
    content:"";
    position:absolute;
    inset:0;
    background-image: radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity:.05;
    pointer-events:none;
}

.ride-card.hidden{ display:none; }

.rideCardTop{
    position: relative;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    gap: 12px;
    align-items: center;
}

.rideCardAvatar{
    width: 46px;
    height: 46px;
    border-radius: 100%;
    object-fit: cover;
    background: rgba(2,6,23,.05);
    /* border: 1px solid rgba(2,6,23,.08); */
}

.rideCardTopMain{
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rideCardNameRow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    min-width: 0;
}

.rideCardName{
    font-size: 15px;
    font-weight: 1000;
    letter-spacing: -0.01em;
    line-height: 1.1;
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
}

.rideCardRating{
    flex: 0 0 auto;
    display:flex;
    align-items:center;
    gap: 6px;
    font-size: 12px;
    font-weight: 1000;
    color: rgba(2,6,23,.80);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(2,6,23,.04);
    border: 1px solid rgba(2,6,23,.06);
}

.rideCardStar{
    font-size: 12px;
    line-height: 1;
}

.rideCardVehicle{
    font-size: 12px;
    font-weight: 900;
    color: rgba(2,6,23,.70);
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
}

.rideCardPlate{
    font-size: 12px;
    font-weight: 950;
    color: rgba(2,6,23,.78);
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
}

.rideCardEta{
    flex: 0 0 auto;
    min-width: 64px;
    text-align:center;
    border-radius: 16px;
    padding: 8px 10px;
    background: rgba(249,213,21,.20);
    border: 1px solid rgba(249,213,21,.40);
    color: rgba(2,6,23,.92);
    height: 100%;
}

.rideCardEtaVal{
    font-size: 16px;
    font-weight: 1000;
    line-height: 1;
}

.rideCardEtaLbl{
    margin-top: 2px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(2,6,23,.70);
}

.rideCardMid{
    position: relative;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(2,6,23,.06);
    display: grid;
    gap: 10px;
}

.rideCardRoute{
    border-radius: 18px;
    background: rgba(2,6,23,.028);
    /* border: 1px solid rgba(2,6,23,.07); */
    padding: 10px 12px;
    display: grid;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.rideCardRoute::before{
    content:"";
    position:absolute;
    left: 18px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(29,78,216,.55), rgba(255,77,77,.55));
    border-radius: 2px;
    opacity: .30;
    pointer-events:none;
}

.rideCardRouteRow{
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: center;
}

.rideCardDot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-left: 4px;
}

.rideCardDot.o{ background: rgba(29,78,216,.95); }
.rideCardDot.d{ background: rgba(255,77,77,.95); }

.rideCardRouteTxt{
    font-size: 13px;
    font-weight: 900;
    color: rgba(2,6,23,.78);
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rideCardPay{
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    gap: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.70);
    /* border: 1px solid rgba(2,6,23,.07); */
    padding: 10px 12px;
}

.rideCardPayLeft,
.rideCardPayRight{
    display:flex;
    flex-direction:column;
    gap: 3px;
    min-width: 0;
}

.rideCardPayLbl{
    font-size: 11px;
    font-weight: 900;
    color: rgba(2,6,23,.60);
}

.rideCardPayMethod{
    font-size: 13px;
    font-weight: 1000;
    color: rgba(2,6,23,.82);
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
}

.rideCardPayValue{
    font-size: 14px;
    font-weight: 1000;
    color: rgba(2,6,23,.92);
    white-space: nowrap;
}

.rideCardActions{
    position: relative;
    margin-top: 10px;
    display:flex;
    gap: 10px;
    align-items: center;
}

.rideChatBtn{
    width: 100%;
    height: 46px;
    border-radius: 18px;
    border: 1px solid rgba(2,6,23,.08);
    background: rgba(255,255,255,.78);
    color: rgba(2,6,23,.92);
    /* box-shadow: 0 10px 22px rgba(2,6,23,.10); */
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    font-weight: 1000;
    cursor:pointer;
    position: relative;
}

.rideChatBtn:active{ transform: translateY(1px); }

.rideChatIco{
    font-size: 18px;
    line-height: 1;
}

.rideChatTxt{
    font-size: 13px;
    font-weight: 1000;
}

.rideChatBadge{
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(255,77,77,.95);
    color: #fff;
    font-size: 11px;
    font-weight: 1000;
    display:grid;
    place-items:center;
    border: 2px solid rgba(255,255,255,.92);
}

.rideSafeWrap{
    position: relative;
    flex: 0 0 auto;
}

.rideSafeBtn{
    min-width: 108px;
    height: 46px;
    border-radius: 18px;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(255,255,255,.82);
    color: rgba(2,6,23,.92);
    font-size: 13px;
    font-weight: 1000;
    cursor: pointer;
    padding: 0 14px;
}

.rideSafeBtn:active{ transform: translateY(1px); }

.rideSafetyMenu{
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    min-width: 188px;
    border-radius: 16px;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(255,255,255,.98);
    box-shadow: 0 16px 40px rgba(2,6,23,.16);
    padding: 8px;
    z-index: 45;
}

.rideSafetyItem{
    width: 100%;
    height: 40px;
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 12px;
    background: rgba(2,6,23,.03);
    color: rgba(2,6,23,.92);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.rideSafetyItem + .rideSafetyItem{
    margin-top: 8px;
}

#chatFab.chatFab{
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border: 1px solid rgba(2,6,23,.08);
    background: rgba(255,255,255,.75);
    color: rgba(2,6,23,.92);
    box-shadow: 0 10px 22px rgba(2,6,23,.10);
    font-size: 18px;
    flex: 0 0 auto;
}

#chatFab.chatFab:active{
    transform: translateY(1px);
}

.chatBadge{
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(255,77,77,.95);
    color: #fff;
    font-size: 11px;
    font-weight: 1000;
    display:grid;
    place-items:center;
    border: 2px solid rgba(255,255,255,.92);
}

.ride-card-footer{
    position: relative;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(2,6,23,.06);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
}

.ride-price{
    display:flex;
    align-items:baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(2,6,23,.62);
}

.ride-price strong{
    font-size: 16px;
    font-weight: 1000;
    color: rgba(2,6,23,.92);
}

.stars{ display:flex; gap:8px; font-size: 22px; user-select:none; }
.star{ cursor:pointer; opacity:.35; }
.star.on{ opacity:1; }

/* =========================
   Ride (startup modern UI)
   ========================= */

.rideMetaBox,
.rideWaitingCard{
    position: relative;
    border-radius: var(--radius-lg);
    /* background: var(--card-bg); */
    /* border: 1px solid var(--card-border); */
    /* box-shadow: var(--shadow-lg); */
    padding: 14px;
    margin-top: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.rideMetaBox::before{
    content:"";
    position:absolute;
    inset: 0 0 auto 0;
    height: 54px;
    background:
        radial-gradient(120px 80px at 18% 10%, rgba(249,213,21,.35), rgba(249,213,21,0) 70%),
        radial-gradient(120px 80px at 80% 0%, rgba(45,107,255,.18), rgba(45,107,255,0) 70%),
        linear-gradient(90deg, rgba(249,213,21,.18), rgba(255,184,0,.10));
    pointer-events:none;
}

.rideWaitingCard::before{
    content: none;
}

.rideMetaBox::after,
.rideWaitingCard::after{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity:.06;
    pointer-events:none;
}

.rideMetaTop,
.rideWaitingHeader{
    position: relative;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.rideMetaTitle,
.rideWaitingTitle{
    font-size: 16px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.02em;
    color: var(--text-1);
}

.rideMetaSub,
.rideWaitingSub{
    margin-top: 2px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-2);
}

.rideMetaChip{
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    border: 1px solid rgba(2,6,23,.08);
    background: rgba(255,255,255,.7);
    box-shadow: 0 8px 16px rgba(2,6,23,.08);
}

.rideMetaRoute,
.rideWaitingRoute{
    position: relative;
    border-radius: var(--radius-md);
    background: rgba(2,6,23,.028);
    border: 1px solid rgba(2,6,23,.07);
    padding: 10px 12px;
    overflow: hidden;
}

.rideMetaRoute{
    display: grid;
    gap: 10px;
}

.rideMetaRoute::before,
.rideWaitingRoute::before{
    content:"";
    position:absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(45,107,255,.55), rgba(255,77,77,.55));
    border-radius: 2px;
    opacity: .35;
}

.rideMetaRow{
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: center;
}

.rideMetaDot,
.dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    position: relative;
    margin-left: 4px;
}

.rideMetaDot.o, .dot.o{ background: var(--blue); }
.rideMetaDot.d, .dot.d{ background: var(--red); }

.rideMetaDot::after,
.dot::after{
    content:"";
    position:absolute;
    inset:-6px;
    border-radius: 999px;
    background: currentColor;
    filter: blur(10px);
    opacity:.18;
}

.rideMetaTxt,
.rideWaitingRow .txt{
    font-size: 13px;
    font-weight: 900;
    color: rgba(2,6,23,.78);
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rideWaitingRow{
    display:flex;
    gap: 10px;
    align-items:center;
    padding: 7px 0;
}

.rideMetaStats,
.rideWaitingPills{
    margin-top: 12px;
    display:flex;
    flex-wrap:wrap;
    gap: 8px;
}

#rideMeta{
    display: none !important;
}

.rideMetaPill,
.rideWaitingPills .pill{
    position: relative;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 950;
    color: rgba(2,6,23,.76);
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(2,6,23,.08);
    /* box-shadow: 0 10px 18px rgba(2,6,23,.08); */
    overflow: hidden;
}

.rideMetaPill::before{
/* .rideWaitingPills .pill::before{ */
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(120deg,
        rgba(249,213,21,.22),
        rgba(255,255,255,0) 38%,
        rgba(45,107,255,.12));
    opacity:.65;
    pointer-events:none;
}

.rideMetaPill b{
    font-weight: 1000;
    color: var(--text-1);
}

#rideStatus{
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 12px;
    color: rgba(2,6,23,.74);
    background: rgba(2,6,23,.03);
    border: 1px solid rgba(2,6,23,.07);
}

#rideStatus:empty{ display:none; }

#btnCancel{
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(255,77,77,.18);
}

#stateRide h3{
    margin: 6px 0 8px;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: rgba(2,6,23,.90);
}

#bannerBox{
    margin-top: 10px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(2,6,23,.12);
    border: 1px solid rgba(2,6,23,.08);
}

#panel{
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    box-shadow: 0 -18px 40px rgba(2,6,23,.10);
}

.movaMePulse{
    position: relative;
    width: 28px;
    height: 28px;
}

.movaMePulse::before{
    content:"";
    position:absolute;
    inset: -10px;
    border-radius: 999px;
    background: rgba(29,78,216,.22);
    animation: movaPulse 1.35s ease-out infinite;
}

.movaMeDot{
    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #1D4ED8;
    box-shadow: 0 0 0 3px rgba(255,255,255,.85);
}

@keyframes movaPulse{
    0%{ transform: scale(.55); opacity: .85; }
    100%{ transform: scale(1); opacity: 0; }
}

.movaPin{
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(11,15,25,.12);
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
    display: grid;
    place-items: center;
}

.movaPinOrigin .movaPinInner{
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #1D4ED8;
    box-shadow: 0 0 0 4px rgba(29,78,216,.14);
}

.movaPinDest{
    color: #FF4D4D;
}

.movaPinDest .movaPinSvg svg{
    width: 18px;
    height: 18px;
    display:block;
}

.movaPinDest .movaPinSvg svg path{
    fill: currentColor;
}

.movaVeh{
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(11,15,25,.12);
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
    display: grid;
    place-items: center;
    color: #0B0F19;
}

.movaVehSvg svg{
    width: 28px;
    height: 28px;
    display:block;
}

.shareSheet{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(105%);
    transition: transform .22s ease;
    z-index: 2300;
    background: var(--sheet);
    color: var(--text);
    border: 1px solid var(--sheetBorder);
    border-bottom: 0;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    box-shadow: var(--shadowUp);
    max-height: 82vh;
    overflow: auto;
}

body.share-open .shareSheet{
    transform: translateY(0);
}

.shareSheet.dragging{
    transition: none;
}

.shareTop{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 10px;
    border-bottom: 1px solid var(--border-soft);
}

.shareTop::before{
    content:"";
    position:absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: rgba(2,6,23,.18);
}

.shareBody{
    padding: 12px 14px calc(env(safe-area-inset-bottom) + 14px);
}

.shareLabel{
    font-size: 12px;
    font-weight: 900;
    color: rgba(2,6,23,.66);
    margin-bottom: 8px;
}
