/**
 * Prompter.to — Mobile-first enhancements (user areas only)
 * Theme preserved; dopamine micro-interactions on touch devices.
 */

@media (max-width: 1023px) {
    :root {
        --mob-nav-h: 4rem;
        --mob-nav-float: 0.625rem;
        --mob-safe-b: env(safe-area-inset-bottom, 0px);
        --mob-safe-t: env(safe-area-inset-top, 0px);
        --mob-auth-header-h: 3.25rem;
    }

    html {
        font-size: 15px;
    }

    html.mob-viewport body,
    body.mob-has-bottom-nav {
        padding-bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 0.75rem);
    }

    body.mob-sheet-open,
    body.mob-menu-open {
        overflow: hidden;
    }

    /* ── Compact top navbar ───────────────────────────── */
    #navbar .h-16 {
        height: 3.25rem;
    }

    #navbar .text-xl {
        font-size: 1rem !important;
    }

    #navbar .btn-gradient {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.75rem !important;
    }

    #navbar .mob-nav-signin.btn-gradient {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        position: relative;
        isolation: isolate;
        overflow: hidden !important;
        font-size: 0.6875rem !important;
        font-weight: 700 !important;
        padding: 0.45rem 0.85rem !important;
        border-radius: 9999px !important;
        white-space: nowrap;
        color: #fff !important;
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
        transform: none !important;
    }

    #navbar .mob-nav-signin.btn-gradient::before {
        inset: 0;
        border-radius: inherit;
        z-index: 0;
        pointer-events: none;
    }

    #navbar .mob-nav-signin.btn-gradient span {
        position: relative;
        z-index: 1;
    }

    #navbar .mob-nav-signin.btn-gradient:hover {
        color: #fff !important;
        transform: scale(1.02) !important;
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.38) !important;
    }

    #navbar .mob-nav-signin.btn-gradient:active {
        transform: scale(0.98) !important;
    }

    #navbar .mob-header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    #navbar > div > div {
        gap: 0.5rem;
    }

    /* ── Mobile menu drawer ───────────────────────────── */
    .mob-drawer-backdrop {
        position: fixed;
        inset: 0;
        z-index: 55;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s;
    }

    .mob-drawer-backdrop.is-open {
        opacity: 1;
        visibility: visible;
        z-index: 110;
    }

    .mob-drawer {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 56;
        width: min(90vw, 340px);
        height: 100%;
        background:
            radial-gradient(ellipse 120% 80% at 100% 0%, rgba(139, 92, 246, 0.14) 0%, transparent 55%),
            linear-gradient(180deg, #16161f 0%, #0b0b0f 48%, #09090d 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
        transform: translateX(100%);
        transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
        display: flex;
        flex-direction: column;
        padding: 0 0 calc(1rem + var(--mob-safe-b));
        overflow: hidden;
    }

    .mob-drawer.is-open {
        transform: translateX(0);
        z-index: 111;
    }

    body.mob-menu-open .mob-bottom-nav {
        z-index: 45;
        opacity: 0.35;
        pointer-events: none;
    }

    .mob-drawer__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 1.35rem 1.15rem 1.15rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mob-drawer__brand {
        min-width: 0;
    }

    .mob-drawer__logo {
        display: block;
        font-size: 1.125rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

    .mob-drawer__tagline {
        display: block;
        margin-top: 0.25rem;
        font-size: 0.6875rem;
        font-weight: 600;
        color: #64748b;
        letter-spacing: 0.02em;
    }

    .mob-drawer__nav {
        flex: 1;
        overflow-y: auto;
        padding: 0.85rem 0.85rem 0.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .mob-drawer__foot {
        padding: 0.85rem 0.85rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.06));
    }

    .mob-drawer__foot-note {
        font-size: 0.6875rem;
        color: #64748b;
        font-weight: 600;
        margin-bottom: 0.65rem;
        text-align: center;
    }

    .mob-drawer__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
        min-height: 2.75rem;
        border-radius: 0.875rem;
        font-size: 0.8125rem;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #8b5cf6, #ec4899);
        box-shadow: 0 8px 28px rgba(139, 92, 246, 0.35);
        transition: transform 0.15s, box-shadow 0.15s;
    }

    .mob-drawer__cta:active {
        transform: scale(0.98);
    }

    .mob-drawer__link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.8rem 0.9rem;
        border-radius: 0.875rem;
        font-weight: 700;
        font-size: 0.8125rem;
        color: #e2e8f0;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
    }

    .mob-drawer__link::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.5625rem;
        margin-left: auto;
        color: #475569;
        transition: color 0.18s, transform 0.18s;
    }

    .mob-drawer__link:active {
        transform: scale(0.985);
    }

    .mob-drawer__link.is-active {
        color: #ddd6fe;
        background: rgba(139, 92, 246, 0.14);
        border-color: rgba(139, 92, 246, 0.28);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .mob-drawer__link.is-active::after {
        color: #a78bfa;
        transform: translateX(2px);
    }

    .mob-drawer__icon {
        width: 2.375rem;
        height: 2.375rem;
        border-radius: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .mob-menu-btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.625rem;
        height: 2.625rem;
        border-radius: 0.875rem;
        color: #e2e8f0;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.09);
        backdrop-filter: blur(10px);
        box-shadow:
            0 4px 16px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.07);
        transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
        -webkit-tap-highlight-color: transparent;
    }

    .mob-menu-btn:active {
        transform: scale(0.94);
    }

    .mob-menu-btn--burger.is-active,
    body.mob-menu-open #mob-menu-open.mob-menu-btn--burger {
        background: rgba(139, 92, 246, 0.16);
        border-color: rgba(167, 139, 250, 0.35);
        box-shadow:
            0 4px 20px rgba(139, 92, 246, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .mob-menu-btn__lines {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 1.125rem;
        height: 0.875rem;
        pointer-events: none;
    }

    .mob-menu-btn__lines span {
        display: block;
        height: 2px;
        width: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, #ddd6fe, #f9a8d4);
        transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s, width 0.2s;
        transform-origin: center;
    }

    .mob-menu-btn--burger .mob-menu-btn__lines span:nth-child(2) {
        width: 72%;
        margin-left: auto;
    }

    .mob-menu-btn--burger.is-active .mob-menu-btn__lines span:nth-child(1),
    body.mob-menu-open #mob-menu-open.mob-menu-btn--burger .mob-menu-btn__lines span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mob-menu-btn--burger.is-active .mob-menu-btn__lines span:nth-child(2),
    body.mob-menu-open #mob-menu-open.mob-menu-btn--burger .mob-menu-btn__lines span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .mob-menu-btn--burger.is-active .mob-menu-btn__lines span:nth-child(3),
    body.mob-menu-open #mob-menu-open.mob-menu-btn--burger .mob-menu-btn__lines span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mob-menu-btn--close .mob-menu-btn__lines {
        gap: 0;
        width: 1rem;
        height: 1rem;
        position: relative;
    }

    .mob-menu-btn--close .mob-menu-btn__lines span {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        margin: 0;
    }

    .mob-menu-btn--close .mob-menu-btn__lines span:first-child {
        transform: translateY(-50%) rotate(45deg);
    }

    .mob-menu-btn--close .mob-menu-btn__lines span:last-child {
        transform: translateY(-50%) rotate(-45deg);
    }

    /* ── Bottom tab bar (floating pill) ─────────────── */
    .mob-bottom-nav {
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        bottom: calc(var(--mob-nav-float) + var(--mob-safe-b));
        z-index: 100;
        height: var(--mob-nav-h);
        padding: 0.25rem;
        box-sizing: border-box;
        background: rgba(12, 12, 18, 0.9);
        backdrop-filter: blur(24px) saturate(1.3);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 1.125rem;
        box-shadow:
            0 12px 40px rgba(0, 0, 0, 0.45),
            0 0 0 1px rgba(139, 92, 246, 0.12) inset;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-template-rows: minmax(0, 1fr);
        align-items: stretch;
        gap: 0;
        pointer-events: auto;
    }

    .mob-bottom-nav .mob-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        min-width: 0;
        min-height: 0;
        height: 100%;
        width: 100%;
        padding: 0.25rem 0.125rem;
        box-sizing: border-box;
        color: #64748b;
        text-decoration: none;
        border-radius: 0.75rem;
        transition: color 0.2s ease, background 0.2s ease;
        position: relative;
        overflow: hidden;
        -webkit-tap-highlight-color: rgba(139, 92, 246, 0.15);
        touch-action: manipulation;
        cursor: pointer;
        transform: none !important;
        user-select: none;
        -webkit-user-select: none;
    }

    /* Full cell tap target — icon/label sit above, clicks land here */
    .mob-tab__hit {
        position: absolute;
        inset: 0;
        z-index: 1;
        border-radius: inherit;
    }

    .mob-bottom-nav .mob-tab::after {
        display: none !important;
    }

    .mob-bottom-nav .mob-tab:hover,
    .mob-bottom-nav .mob-tab:active {
        transform: none !important;
        color: #94a3b8 !important;
    }

    .mob-bottom-nav .mob-tab__icon-wrap,
    .mob-bottom-nav .mob-tab__label,
    .mob-bottom-nav .mob-tab__icon-wrap > i {
        position: relative;
        z-index: 2;
        pointer-events: none;
    }

    .mob-tab__icon-wrap {
        position: relative;
        flex-shrink: 0;
        width: 1.875rem;
        height: 1.875rem;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        border-radius: 0.625rem;
        transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mob-tab__icon-wrap i {
        font-size: 1.0625rem;
        line-height: 1;
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
    }

    .mob-tab__label {
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: 0.5625rem;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.01em;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 0.125rem;
    }

    .mob-bottom-nav .mob-tab.is-active {
        color: #ddd6fe;
    }

    .mob-bottom-nav .mob-tab.is-active .mob-tab__icon-wrap {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(236, 72, 153, 0.22));
        box-shadow: 0 4px 14px rgba(139, 92, 246, 0.28);
    }

    .mob-bottom-nav .mob-tab.is-active .mob-tab__icon-wrap i {
        color: #e9d5ff;
        transform: scale(1.05);
    }

    .mob-bottom-nav .mob-tab:active .mob-tab__icon-wrap {
        transform: scale(0.92);
    }

    .mob-bottom-nav .mob-tab__badge {
        position: absolute;
        top: -0.125rem;
        right: -0.375rem;
        z-index: 3;
        min-width: 0.95rem;
        height: 0.95rem;
        padding: 0 0.2rem;
        margin: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, #8b5cf6, #f472b6);
        color: #fff;
        font-size: 0.5rem;
        font-weight: 800;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 10px rgba(244, 114, 182, 0.5);
        border: 1.5px solid #0c0c12;
        pointer-events: none;
        animation: mob-badge-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mob-bottom-nav .mob-tab__badge.is-hidden {
        display: none !important;
        animation: none;
    }

    @keyframes mob-badge-pop {
        0% { transform: scale(0.5); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
    }

    /* ── Profile tabs — chip tabs in glass track ─────── */
    #profile-sidebar-slot {
        overflow: visible;
        min-width: 0;
    }

    .mob-profile-tabs {
        position: relative;
        margin: 0 0 0.5rem;
        padding: 0;
        overflow: visible;
        width: 100%;
    }

    .mob-profile-tabs__viewport {
        position: relative;
        overflow: hidden;
        border-radius: 0.875rem;
        background: rgba(17, 17, 24, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 8px 24px rgba(0, 0, 0, 0.22);
    }

    .mob-profile-tabs__fade {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 1.35rem;
        z-index: 2;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .mob-profile-tabs__fade--start {
        left: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 0.2rem;
        background: linear-gradient(90deg, rgba(17, 17, 24, 0.95) 40%, transparent);
    }

    .mob-profile-tabs__fade--end {
        right: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 0.2rem;
        background: linear-gradient(270deg, rgba(17, 17, 24, 0.95) 40%, transparent);
    }

    .mob-profile-tabs__fade--start i,
    .mob-profile-tabs__fade--end i {
        font-size: 0.625rem;
        color: #a78bfa;
        line-height: 1;
        filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.55));
    }

    .mob-profile-tabs__fade--end i {
        animation: mobProfileTabsChevRight 1.4s ease-in-out infinite;
    }

    .mob-profile-tabs__fade--start i {
        animation: mobProfileTabsChevLeft 1.4s ease-in-out infinite;
    }

    .mob-profile-tabs.is-scrollable.can-scroll-right .mob-profile-tabs__fade--end {
        opacity: 1;
    }

    .mob-profile-tabs.is-scrollable.can-scroll-left .mob-profile-tabs__fade--start {
        opacity: 1;
    }

    @keyframes mobProfileTabsChevRight {
        0%, 100% {
            transform: translateX(0);
            opacity: 0.75;
        }
        50% {
            transform: translateX(3px);
            opacity: 1;
        }
    }

    @keyframes mobProfileTabsChevLeft {
        0%, 100% {
            transform: translateX(0);
            opacity: 0.75;
        }
        50% {
            transform: translateX(-3px);
            opacity: 1;
        }
    }

    /* Profile pages — align content under compact navbar (avoid desktop pt-28 gap) */
    #spa-main[data-page^="profile"]:not([data-page="profile-editor"]) > main {
        padding-top: calc(3.25rem + var(--mob-safe-t) + 0.625rem) !important;
        padding-bottom: 1.25rem !important;
    }

    #spa-main[data-page^="profile"]:not([data-page="profile-editor"]) > main > .grid {
        gap: 0.75rem !important;
    }

    #spa-main[data-page^="profile"]:not([data-page="profile-editor"]) #profile-content > .mb-8:first-child {
        margin-bottom: 1rem !important;
    }

    .mob-profile-tabs__track {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        scroll-padding-inline: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.35rem 0.5rem;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .mob-profile-tabs__track:focus-visible {
        outline: 2px solid rgba(167, 139, 250, 0.55);
        outline-offset: -2px;
    }

    .mob-profile-tabs__track::-webkit-scrollbar {
        display: none;
    }

    .mob-profile-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        min-height: 2.25rem;
        padding: 0.4rem 0.65rem 0.4rem 0.45rem;
        border-radius: 0.625rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.04);
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        color: #94a3b8;
        white-space: nowrap;
        text-decoration: none;
        transition:
            color 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease,
            box-shadow 0.2s ease,
            transform 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mob-profile-tab__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 1.375rem;
        height: 1.375rem;
        border-radius: 0.375rem;
        font-size: 0.625rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mob-profile-tab__icon i {
        display: block;
        line-height: 1;
    }

    .mob-profile-tab__label {
        line-height: 1.1;
    }

    .mob-profile-tab__launch {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 0.875rem;
        height: 0.875rem;
        margin-left: -0.1rem;
        font-size: 0.5rem;
        color: #a78bfa;
        opacity: 0.9;
    }

    .mob-profile-tab__launch i {
        display: block;
        line-height: 1;
    }

    .mob-profile-tab.is-active {
        color: #fff;
        background: linear-gradient(145deg, rgba(139, 92, 246, 0.38), rgba(244, 114, 182, 0.22));
        border-color: rgba(167, 139, 250, 0.45);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            0 4px 14px rgba(139, 92, 246, 0.28);
    }

    .mob-profile-tab:not(.is-active):active {
        transform: scale(0.97);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .mob-profile-tab.is-active .mob-profile-tab__icon {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.18);
    }

    .mob-profile-tab--external:not(.is-active) .mob-profile-tab__launch {
        color: #94a3b8;
    }

    .mob-profile-tab--external.is-active .mob-profile-tab__launch {
        color: #ede9fe;
    }

    .mob-sidebar-desktop {
        display: none !important;
    }

    /* ── Marketplace filter popup ───────────────────── */
    .mkt-sidebar {
        display: none;
    }

    .mkt-mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.5rem 0.85rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        color: #f1f5f9;
        background: rgba(255, 255, 255, 0.05);
        border: 1.5px solid rgba(167, 139, 250, 0.5);
        box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.12) inset;
        transition: background 0.15s, border-color 0.15s, transform 0.15s;
        flex-shrink: 0;
    }

    .mkt-mobile-filter-btn i {
        font-size: 0.8125rem;
        color: #a78bfa;
    }

    .mkt-mobile-filter-btn:active {
        transform: scale(0.97);
        background: rgba(139, 92, 246, 0.12);
        border-color: rgba(167, 139, 250, 0.65);
    }

    .mkt-results-header {
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .mkt-results-title {
        font-size: 1.125rem !important;
        line-height: 1.25;
    }

    .mkt-results-count {
        font-size: 0.6875rem !important;
    }

    .mkt-filter-sheet-backdrop {
        position: fixed;
        inset: 0;
        z-index: 58;
        background: rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, visibility 0.28s;
    }

    .mkt-filter-sheet-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    .mkt-filter-sheet {
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 0.5rem);
        z-index: 59;
        max-height: min(78vh, 560px);
        background: linear-gradient(180deg, #181824 0%, #0e0e14 100%);
        border-radius: 1.125rem;
        border: 1px solid rgba(139, 92, 246, 0.28);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
        transform: translateY(calc(100% + 2rem)) scale(0.96);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mkt-filter-sheet.is-open {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .mkt-filter-sheet__handle {
        width: 2.25rem;
        height: 0.2rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        margin: 0.6rem auto 0;
        flex-shrink: 0;
    }

    .mkt-filter-sheet__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.65rem 1rem 0.5rem;
        flex-shrink: 0;
    }

    .mkt-filter-sheet__title {
        font-size: 0.9375rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

    .mkt-filter-sheet__subtitle {
        font-size: 0.625rem;
        color: #64748b;
        margin-top: 0.15rem;
        font-weight: 500;
    }

    .mkt-filter-sheet__body {
        overflow-y: auto;
        flex: 1;
        padding: 0 0.75rem 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .mkt-filter-sheet__body .mkt-sidebar {
        display: flex !important;
        flex-direction: column;
        gap: 0.65rem !important;
        padding-bottom: 0.25rem;
    }

    .mkt-filter-sheet__body .mkt-panel {
        flex-shrink: 0;
    }

    .mkt-filter-sheet__body .mkt-panel__toggle {
        min-height: 2.75rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mkt-filter-sheet__body .filter-body.hidden,
    .mkt-filter-sheet__body .filter-body.is-collapsed {
        display: none !important;
    }

    .mkt-filter-sheet__body .filter-body:not(.hidden):not(.is-collapsed) {
        display: block !important;
    }

    .mkt-filter-sheet__body .mkt-panel.is-open .mkt-panel__chev {
        transform: rotate(180deg);
    }

    .mkt-view-toggle,
    .marketplace-view-btn {
        display: none !important;
    }

    .mkt-results-header > .flex.items-center {
        justify-content: flex-end;
    }

    .mkt-filter-sheet__body .mkt-panel__label {
        font-size: 0.75rem !important;
    }

    .mkt-filter-sheet__body .mkt-panel__sublabel {
        font-size: 0.625rem !important;
    }

    .mkt-filter-sheet__body .mkt-opt__text,
    .mkt-filter-sheet__body .mkt-sort-item {
        font-size: 0.75rem !important;
    }

    .mkt-filter-sheet__foot {
        padding: 0.65rem 0.75rem calc(0.65rem + var(--mob-safe-b));
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(11, 11, 15, 0.6);
        flex-shrink: 0;
    }

    .mkt-filter-apply-btn {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        min-height: 2.5rem;
        border-radius: 0.75rem;
        font-size: 0.8125rem;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #8b5cf6, #ec4899);
        box-shadow: 0 6px 24px rgba(139, 92, 246, 0.35);
        transition: transform 0.15s;
    }

    .mkt-filter-apply-btn:active {
        transform: scale(0.98);
    }

    body.mob-sheet-open .mob-bottom-nav {
        opacity: 0.35;
        pointer-events: none;
    }

    /* ── Mobile heroes — home, marketplace, trending ─── */
    .mob-page-hero,
    #hero,
    .mkt-hero {
        --mob-hero-px: max(1rem, env(safe-area-inset-left, 0px));
        --mob-hero-py-top: calc(4.75rem + env(safe-area-inset-top, 0px));
    }

    /* Home hero — full viewport height */
    #hero {
        --mob-hero-bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 0.5rem);
        min-height: 100dvh !important;
        min-height: 100svh !important;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: var(--mob-hero-py-top) var(--mob-hero-px) var(--mob-hero-bottom) !important;
        overflow: hidden !important;
    }

    body:not(.mob-has-bottom-nav) #hero {
        --mob-hero-bottom: 1.25rem;
    }

    /* Home hero — particle glow (replaces orbs + float cards on mobile) */
    @keyframes heroParticleGlow {
        0%, 100% {
            opacity: 0.35;
            transform: translate3d(0, 0, 0) scale(1);
        }
        50% {
            opacity: 0.95;
            transform: translate3d(0, -3px, 0) scale(1.35);
        }
    }

    @keyframes heroParticleDrift {
        0%, 100% {
            transform: translate3d(0, 0, 0);
        }
        50% {
            transform: translate3d(2px, -2px, 0);
        }
    }

    #hero .hero-scene .hero-orb,
    #hero .hero-float-card-wrap {
        display: none !important;
    }

    #hero .hero-particles {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
        overflow: hidden;
        pointer-events: none;
    }

    #hero .hero-particle {
        position: absolute;
        left: var(--px, 50%);
        top: var(--py, 50%);
        width: var(--sz, 2px);
        height: var(--sz, 2px);
        margin-left: calc(var(--sz, 2px) / -2);
        margin-top: calc(var(--sz, 2px) / -2);
        border-radius: 50%;
        animation:
            heroParticleGlow 3.25s ease-in-out infinite,
            heroParticleDrift 5.25s ease-in-out infinite;
        animation-delay: var(--delay, 0s), calc(var(--delay, 0s) + 0.5s);
        will-change: opacity, transform;
    }

    #hero .hero-particle--violet {
        background: rgba(167, 139, 250, 0.9);
        box-shadow:
            0 0 6px 1px rgba(139, 92, 246, 0.55),
            0 0 14px 3px rgba(139, 92, 246, 0.28);
    }

    #hero .hero-particle--pink {
        background: rgba(244, 114, 182, 0.85);
        box-shadow:
            0 0 6px 1px rgba(244, 114, 182, 0.5),
            0 0 14px 3px rgba(244, 114, 182, 0.22);
    }

    #hero .hero-particle--blue {
        background: rgba(96, 165, 250, 0.85);
        box-shadow:
            0 0 6px 1px rgba(96, 165, 250, 0.45),
            0 0 14px 3px rgba(96, 165, 250, 0.2);
    }

    #hero .hero-particle--mint {
        background: rgba(52, 211, 153, 0.8);
        box-shadow:
            0 0 6px 1px rgba(52, 211, 153, 0.4),
            0 0 12px 2px rgba(52, 211, 153, 0.18);
    }

    #hero .hero-particle--soft {
        filter: blur(1px);
        opacity: 0.5;
        animation-duration: 4.25s, 6.5s;
    }

    #hero .hero-content {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        padding: 0 !important;
        text-align: center;
        flex: 0 1 auto;
    }

    .hero-eyebrow,
    .mkt-hero__eyebrow,
    .trend-hero__badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        max-width: 100%;
        font-size: 0.6875rem !important;
        font-weight: 700;
        letter-spacing: 0.02em;
        line-height: 1.35;
        padding: 0.4rem 0.85rem !important;
        margin-bottom: 1rem !important;
        border-radius: 9999px;
    }

    .hero-eyebrow-pulse {
        width: 1.35rem !important;
        height: 1.35rem !important;
        font-size: 0.55rem !important;
        flex-shrink: 0;
    }

    .hero-headline,
    .mkt-hero__title,
    .trend-hero h1 {
        font-size: clamp(2rem, 9.5vw, 2.65rem) !important;
        line-height: 1.06 !important;
        letter-spacing: -0.03em !important;
        margin-bottom: 0.9rem !important;
    }

    .mkt-hero__title br {
        display: none;
    }

    .mkt-hero__title .gradient-text {
        display: inline;
    }

    .hero-sub,
    .mkt-hero__subtitle,
    .trend-hero p.text-lg {
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.35rem !important;
        max-width: 22rem;
        margin-inline: auto;
        color: #94a3b8 !important;
    }

    .hero-search-wrap,
    .mkt-search-wrap {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.25rem !important;
    }

    .hero-search-glow {
        border-radius: 1rem !important;
        box-shadow: 0 12px 36px rgba(139, 92, 246, 0.18) !important;
    }

    .hero-search,
    .mkt-search-form {
        display: grid !important;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem !important;
        align-items: stretch !important;
        padding: 0.55rem !important;
        border-radius: calc(1rem - 1px) !important;
    }

    .hero-search-icon,
    .mkt-search-form > i {
        grid-row: 1;
        grid-column: 1;
        align-self: center;
        padding: 0 0.35rem 0 0.45rem !important;
        margin: 0 !important;
        font-size: 0.875rem !important;
        color: #64748b !important;
    }

    .hero-search input,
    .mkt-search-form input {
        grid-row: 1;
        grid-column: 2;
        width: 100% !important;
        min-width: 0 !important;
        font-size: 0.9375rem !important;
        padding: 0.7rem 0.35rem 0.7rem 0 !important;
    }

    .hero-search-btn,
    .mkt-search-form button {
        grid-row: 2;
        grid-column: 1 / -1;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        width: 100% !important;
        min-height: 2.75rem;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        font-weight: 700 !important;
        border-radius: 0.75rem !important;
        white-space: nowrap;
    }

    .hero-ctas {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        justify-content: center !important;
        gap: clamp(0.5rem, 2.8vw, 0.75rem) !important;
        width: 100%;
        margin-bottom: 1.25rem !important;
    }

    .hero-cta-primary {
        display: none !important;
    }

    .hero-cta-secondary {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        min-width: 0 !important;
        min-height: clamp(2.35rem, 10vw, 2.85rem);
        padding: clamp(0.5rem, 2.4vw, 0.75rem) clamp(0.4rem, 2vw, 0.75rem) !important;
        font-size: clamp(0.5625rem, 2.65vw, 0.8125rem) !important;
        line-height: 1.15 !important;
        border-radius: clamp(0.65rem, 2.5vw, 0.875rem) !important;
        text-align: center;
        gap: clamp(0.25rem, 1.4vw, 0.4rem);
        overflow: hidden;
    }

    .hero-cta-secondary__icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: clamp(0.6875rem, 3vw, 0.875rem) !important;
        color: #c4b5fd;
    }

    .hero-cta-secondary__label {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-stats {
        display: none !important;
    }

    .mkt-hero__stats {
        display: none !important;
    }

    .hero-stat-pill,
    .mkt-stat-pill {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: clamp(0.5rem, 2.15vw, 0.6875rem) !important;
        line-height: 1.2 !important;
        padding: clamp(0.45rem, 1.9vw, 0.6rem) clamp(0.25rem, 1.2vw, 0.45rem) !important;
        gap: 0.25rem !important;
        border-radius: clamp(0.5rem, 2vw, 0.75rem) !important;
        background: rgba(255, 255, 255, 0.035) !important;
        border: 1px solid rgba(255, 255, 255, 0.07) !important;
        text-align: center;
        white-space: normal;
        overflow: hidden;
    }

    .hero-stat-pill strong,
    .mkt-stat-pill strong {
        font-size: clamp(0.5625rem, 2.5vw, 0.75rem) !important;
        line-height: 1.1;
    }

    .hero-stat-pill i,
    .mkt-stat-pill i {
        font-size: clamp(0.5rem, 2vw, 0.625rem) !important;
        flex-shrink: 0;
    }

    .hero-platforms {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: clamp(0.35rem, 2vw, 0.55rem) !important;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0.15rem 0 0;
        margin: 0.25rem 0 0;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    .hero-platforms.hero-platforms--has-more {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }

    .hero-platforms > .text-xs {
        grid-column: 1 / -1;
        text-align: center;
        width: 100%;
        margin: 0 0 0.45rem !important;
        padding: 0;
        font-size: clamp(0.5625rem, 2vw, 0.625rem) !important;
        white-space: nowrap;
    }

    .hero-platforms .platform-badge {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: clamp(0.15rem, 1vw, 0.25rem);
        min-width: 0 !important;
        width: 100%;
        max-width: 100%;
        font-size: clamp(0.5rem, 2.1vw, 0.625rem) !important;
        padding: clamp(0.32rem, 1.6vw, 0.45rem) clamp(0.2rem, 1.1vw, 0.4rem) !important;
        letter-spacing: 0.01em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .hero-platforms .platform-badge i {
        font-size: clamp(0.4375rem, 1.8vw, 0.5625rem) !important;
        flex-shrink: 0;
    }

    .hero-platforms .platform-badge--more {
        letter-spacing: 0.02em;
    }

    .hero-scroll {
        display: none !important;
    }

    /* Home — subtle mobile spacing (keep desktop py-24 feel, trim slightly) */
    #how-it-works,
    .home-featured,
    #categories,
    #spa-main[data-page="index"] #reviews,
    #spa-main[data-page="index"] #reviews + section {
        padding-top: 5.25rem !important;
        padding-bottom: 5.25rem !important;
    }

    #how-it-works .text-center.mb-4 {
        margin-bottom: 1rem !important;
    }

    .home-featured__head,
    #categories > .max-w-7xl > .text-center.mb-16,
    #spa-main[data-page="index"] #reviews > .max-w-5xl > .text-center.mb-16,
    #spa-main[data-page="index"] #reviews .grid.mb-16 {
        margin-bottom: 3.5rem !important;
    }

    .home-featured__head {
        gap: 1rem !important;
        align-items: center !important;
        text-align: center;
    }

    .home-featured__titles {
        min-width: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home-featured__eyebrow {
        display: inline-flex !important;
        align-items: center;
        font-size: 0.6875rem !important;
        letter-spacing: 0.14em !important;
        margin-bottom: 0.65rem !important;
        padding: 0.3rem 0.65rem !important;
        border-radius: 9999px;
        background: rgba(139, 92, 246, 0.1);
        border: 1px solid rgba(139, 92, 246, 0.18);
    }

    .home-featured__title {
        font-size: clamp(1.375rem, 6.2vw, 1.875rem) !important;
        line-height: 1.15 !important;
        letter-spacing: -0.025em !important;
        text-align: center;
    }

    .home-featured__title .gradient-text {
        display: inline !important;
        padding: 0 !important;
        white-space: nowrap;
    }

    .home-featured__link {
        align-self: center !important;
        font-size: 0.8125rem !important;
        line-height: 1.35;
        max-width: 100%;
        justify-content: center;
    }

    .home-featured .grid,
    #categories .grid,
    #spa-main[data-page="index"] #reviews .grid.gap-4 {
        gap: 1.1rem !important;
    }

    #spa-main[data-page="index"] #reviews + section .gbc {
        padding: 2.25rem 1.25rem !important;
    }

    #spa-main[data-page="index"] #reviews + section .mb-10 {
        margin-bottom: 2.25rem !important;
    }

    #spa-main[data-page="index"] #reviews + section .mb-5 {
        margin-bottom: 1.15rem !important;
    }

    /* Product detail — compact top / even section rhythm */
    #spa-main[data-page="product-detail"] .pd-page-main {
        padding-top: calc(3.25rem + var(--mob-safe-t) + 0.75rem) !important;
    }

    #spa-main[data-page="product-detail"] .pd-breadcrumb {
        margin-top: 0.25rem !important;
        margin-bottom: 0.75rem !important;
    }

    #spa-main[data-page="product-detail"] .lg\:col-span-2 {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    #spa-main[data-page="product-detail"] .lg\:col-span-2.space-y-6 > * + * {
        margin-top: 1.5rem;
    }

    #spa-main[data-page="product-detail"] .pd-purchase-card,
    #spa-main[data-page="product-detail"] .pd-details-card .p-5 {
        padding: 1.15rem !important;
    }

    #spa-main[data-page="product-detail"] .pd-details-card > div:first-child {
        padding: 1rem 1.15rem !important;
    }

    #spa-main[data-page="product-detail"] .pd-section-card {
        padding: 1.25rem !important;
    }

    /* Product hero — views & usages side by side at bottom (mobile only) */
    #spa-main[data-page="product-detail"] .pd-product-stats {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    #spa-main[data-page="product-detail"] .pd-product-rating {
        flex-wrap: wrap;
    }

    #spa-main[data-page="product-detail"] .pd-product-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 1rem;
        width: 100%;
    }

    #spa-main[data-page="product-detail"] .pd-product-metric {
        justify-content: flex-start;
    }

    #spa-main[data-page="product-detail"] .pd-gallery__main img {
        max-width: 100%;
    }

    #spa-main[data-page="product-detail"] .mt-16 {
        margin-top: 2.5rem !important;
    }

    #spa-main[data-page="product-detail"] #product-reviews > h2:first-child {
        margin-top: 0 !important;
    }

    .hiw-pipeline {
        margin-bottom: 0.25rem;
    }

    .hiw-cta-strip {
        margin-top: 2.25rem !important;
    }

    .hiw-cta-strip.reveal.visible {
        margin-top: 2.25rem !important;
    }

    /* Marketplace hero */
    .mkt-hero {
        padding: var(--mob-hero-py-top) var(--mob-hero-px) 0.5rem !important;
        min-height: auto !important;
    }

    .mkt-hero__eyebrow {
        margin-bottom: 0.75rem !important;
    }

    .mkt-hero__subtitle {
        margin-bottom: 0.85rem !important;
    }

    .mkt-search-wrap {
        margin-bottom: 0.65rem !important;
    }

    .mkt-hero + section {
        padding-top: 0.5rem !important;
        padding-bottom: 1.25rem !important;
    }

    .mkt-hero + section > .max-w-7xl > .grid {
        gap: 0.75rem !important;
    }

    .mkt-results-header {
        margin-bottom: 0.85rem !important;
    }

    .mkt-hero__content {
        width: 100%;
        max-width: 28rem;
        margin-inline: auto;
        text-align: center;
    }

    .mkt-hero__mesh,
    .mkt-hero__grid {
        opacity: 0.85;
    }

    .mkt-hero__platforms {
        display: none !important;
    }

    .mkt-platform-chip {
        font-size: 0.625rem !important;
        padding: 0.35rem 0.65rem !important;
    }

    /* Trending hero */
    .trend-hero {
        min-height: auto !important;
        padding-top: var(--mob-hero-py-top) !important;
        padding-bottom: 1.5rem !important;
        padding-left: var(--mob-hero-px) !important;
        padding-right: var(--mob-hero-px) !important;
        background:
            radial-gradient(ellipse 80% 55% at 50% -10%, rgba(244, 114, 182, 0.14), transparent 60%),
            radial-gradient(ellipse 60% 40% at 100% 20%, rgba(249, 115, 22, 0.1), transparent 55%),
            #0b0b0f;
    }

    .trend-hero > .absolute.inset-0 {
        opacity: 0.65;
    }

    .trend-hero .max-w-4xl {
        width: 100%;
        max-width: 28rem;
    }

    .trend-hero__badge,
    .trend-hero .inline-flex.items-center.gap-2 {
        background: rgba(244, 114, 182, 0.1) !important;
        border: 1px solid rgba(244, 114, 182, 0.22) !important;
        color: #fbcfe8 !important;
        font-size: 0.6875rem !important;
        padding: 0.4rem 0.85rem !important;
        margin-bottom: 0.85rem !important;
    }

    .trend-hero h1 {
        margin-bottom: 0.75rem !important;
    }

    .trend-hero p.text-lg {
        margin-bottom: 0 !important;
    }

    #spa-main h1 {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    }

    #spa-main h2 {
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
    }

    #spa-main h3 {
        font-size: 0.9375rem;
    }

    #spa-main p,
    #spa-main .text-sm {
        font-size: 0.8125rem;
    }

    #spa-main .text-xs {
        font-size: 0.6875rem;
    }

    .product-card .font-black,
    .marketplace-product-card .font-black {
        font-size: 0.9375rem !important;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    /* Marketplace product cards — compact on mobile */
    .marketplace-products-grid {
        gap: 0.65rem !important;
    }

    .marketplace-products-grid .marketplace-product-card {
        border-radius: 1rem !important;
    }

    .marketplace-products-grid .product-card__inner {
        padding: 0.65rem !important;
        border-radius: 1rem !important;
    }

    .marketplace-products-grid .product-card__inner .aspect-square {
        margin-bottom: 0.5rem !important;
        border-radius: 0.65rem !important;
    }

    .marketplace-products-grid .product-card__inner > .p-5 {
        padding: 0 !important;
    }

    .marketplace-products-grid .product-card__inner .flex.items-center.gap-2.mb-3 {
        margin-bottom: 0.35rem !important;
        gap: 0.35rem !important;
    }

    .marketplace-products-grid .product-card__inner h3 {
        font-size: 0.8125rem !important;
        margin-bottom: 0.25rem !important;
    }

    .marketplace-products-grid .product-card__inner .text-sm.text-slate-400 {
        font-size: 0.6875rem !important;
        margin-bottom: 0.5rem !important;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }

    .marketplace-products-grid .product-card__inner .mt-auto .mb-4 {
        margin-bottom: 0.5rem !important;
    }

    .marketplace-products-grid .product-card__inner .btn-gradient {
        padding: 0.45rem 0.65rem !important;
        font-size: 0.6875rem !important;
        border-radius: 0.5rem !important;
    }

    .marketplace-products-grid .product-card__inner button[onclick*="toggleWishlist"] {
        width: 2rem !important;
        height: 2rem !important;
    }

    .marketplace-products-grid .product-card__inner .absolute.top-3.left-3 span {
        padding: 0.15rem 0.35rem !important;
        font-size: 0.5625rem !important;
    }

    .marketplace-products-grid .product-card__inner .absolute.top-3.right-3 {
        display: none;
    }

    /* Product detail — breadcrumb */
    #spa-main[data-page="product-detail"] .pd-breadcrumb {
        max-width: 100%;
        overflow: hidden;
    }

    #spa-main[data-page="product-detail"] .pd-breadcrumb__trail {
        flex-wrap: nowrap;
        align-items: center;
        gap: clamp(0.2rem, 1.4vw, 0.45rem);
        font-size: clamp(0.5625rem, 2.75vw, 0.75rem);
        line-height: 1.2;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.1rem;
    }

    #spa-main[data-page="product-detail"] .pd-breadcrumb__trail::-webkit-scrollbar {
        display: none;
    }

    #spa-main[data-page="product-detail"] .pd-breadcrumb__item,
    #spa-main[data-page="product-detail"] .pd-breadcrumb__sep {
        flex-shrink: 0;
    }

    #spa-main[data-page="product-detail"] .pd-breadcrumb__sep {
        font-size: 0.85em;
        opacity: 0.65;
    }

    #spa-main[data-page="product-detail"] .pd-breadcrumb__item--truncate {
        flex-shrink: 1;
        min-width: 0;
        max-width: clamp(3.25rem, 24vw, 6.5rem);
    }

    #spa-main[data-page="product-detail"] .pd-breadcrumb__link--truncate {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #spa-main[data-page="product-detail"] .pd-breadcrumb__current {
        flex: 1 1 auto;
        min-width: 0;
        max-width: clamp(4.5rem, 42vw, 11rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .btn-gradient:active,
    .save-btn:active {
        transform: scale(0.97);
    }

    /* Dashboard — Quick Stats: 3 compact columns on all mobile widths */
    .mob-quick-stats,
    .mob-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0.5rem !important;
    }

    .mob-quick-stats .section-card,
    .mob-stat-grid .section-card {
        padding: 0.625rem 0.35rem !important;
        border-radius: 0.75rem !important;
        min-width: 0;
    }

    .mob-quick-stats .section-card > div:first-child,
    .mob-stat-grid .section-card > div:first-child {
        font-size: 1.125rem !important;
        line-height: 1.15 !important;
    }

    .mob-quick-stats .section-card > div:last-child,
    .mob-stat-grid .section-card > div:last-child {
        font-size: 0.5625rem !important;
        margin-top: 0.2rem !important;
        line-height: 1.2 !important;
    }

    /* Auth pages */
    .mob-auth-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        height: calc(var(--mob-auth-header-h) + var(--mob-safe-t));
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding:
            var(--mob-safe-t)
            max(1rem, env(safe-area-inset-right, 0px))
            0
            max(1rem, env(safe-area-inset-left, 0px));
        box-sizing: border-box;
        background: rgba(11, 11, 15, 0.92);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
    }

    .mob-auth-header__actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mob-auth-header__signin {
        display: inline-flex;
        align-items: center;
        position: relative;
        isolation: isolate;
        overflow: hidden;
        font-size: 0.6875rem;
        font-weight: 700;
        padding: 0.45rem 0.85rem;
        border-radius: 9999px;
        color: #fff;
        background: linear-gradient(135deg, #8b5cf6, #ec4899);
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mob-auth-header__signin:active {
        transform: scale(0.98);
    }

    .mob-auth-header__logo {
        font-size: 1rem;
        text-decoration: none;
    }

    body.mob-auth-page {
        align-items: flex-start !important;
        padding-top: calc(var(--mob-auth-header-h) + var(--mob-safe-t) + 0.75rem) !important;
    }

    body.mob-auth-page--center {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        padding:
            calc(var(--mob-auth-header-h) + var(--mob-safe-t) + 1.25rem)
            max(1rem, env(safe-area-inset-right, 0px))
            calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 0.75rem)
            max(1rem, env(safe-area-inset-left, 0px)) !important;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body.mob-auth-page--center.mob-has-bottom-nav {
        padding-bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 0.75rem) !important;
    }

    body.mob-auth-page--center.mob-auth-page--register {
        padding-top: calc(var(--mob-auth-header-h) + var(--mob-safe-t) + 1.35rem) !important;
    }

    body.mob-auth-page--center.mob-auth-page--register .mob-auth-screen {
        justify-content: flex-start;
        padding-top: 0.65rem;
    }

    body.mob-auth-page--center.mob-auth-page--register .mob-auth-hero {
        padding-top: 0.35rem;
    }

    body.mob-auth-page--center .mob-auth-bg__orb--1,
    body.mob-auth-page--center .mob-auth-bg__orb--2,
    body.mob-auth-page--center .mob-auth-bg__orb--3 {
        position: absolute;
        border-radius: 9999px;
        filter: blur(64px);
        pointer-events: none;
    }

    body.mob-auth-page--center .mob-auth-bg__orb--1 {
        width: 14rem;
        height: 14rem;
        top: 8%;
        left: -18%;
        background: rgba(139, 92, 246, 0.22);
    }

    body.mob-auth-page--center .mob-auth-bg__orb--2 {
        width: 16rem;
        height: 16rem;
        top: 34%;
        right: -24%;
        background: rgba(236, 72, 153, 0.16);
    }

    body.mob-auth-page--center .mob-auth-bg__orb--3 {
        width: 12rem;
        height: 12rem;
        bottom: 18%;
        left: 18%;
        background: rgba(59, 130, 246, 0.12);
    }

    body.mob-auth-page--center .mob-auth-screen {
        width: 100%;
        max-width: 22.5rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex: 0 1 auto;
        min-height: 0;
        gap: 0.85rem;
        padding-top: 0.35rem;
    }

    .mob-auth-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.5rem 0.5rem 0.35rem;
    }

    .mob-auth-hero__icon {
        width: 3.75rem;
        height: 3.75rem;
        border-radius: 1.125rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.85rem;
        font-size: 1.35rem;
        color: #fff;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(236, 72, 153, 0.9));
        box-shadow:
            0 12px 32px rgba(139, 92, 246, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    .mob-auth-hero__eyebrow {
        font-size: 0.6875rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 0.35rem;
    }

    .mob-auth-hero__title {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
        line-height: 1.15;
        font-weight: 900;
        color: #fff;
        letter-spacing: -0.02em;
        margin-bottom: 0.4rem;
    }

    .mob-auth-hero__sub {
        max-width: 18rem;
        font-size: 0.8125rem;
        line-height: 1.45;
        color: #94a3b8;
        font-weight: 500;
    }

    body.mob-auth-page--center .mob-auth-alert {
        border-radius: 0.875rem !important;
        font-size: 0.8125rem !important;
        line-height: 1.45;
    }

    body.mob-auth-page--center .mob-auth-card--shell {
        padding: 1.15rem 1rem 1.25rem !important;
        border-radius: 1.35rem !important;
        background: rgba(14, 14, 20, 0.88) !important;
        backdrop-filter: blur(18px) saturate(1.2);
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow:
            0 24px 64px rgba(0, 0, 0, 0.42),
            0 0 0 1px rgba(139, 92, 246, 0.08) inset !important;
    }

    body.mob-auth-page--center .mob-auth-card--shell::before {
        display: none !important;
    }

    body.mob-auth-page--center .mob-auth-form {
        display: flex;
        flex-direction: column;
        gap: 0.95rem !important;
    }

    body.mob-auth-page--center .mob-auth-field {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
    }

    body.mob-auth-page--center .mob-auth-label {
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        color: #cbd5e1 !important;
        margin-bottom: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    body.mob-auth-page--center .mob-auth-label-icon {
        width: 1rem;
        text-align: center;
        font-size: 0.8125rem;
        color: #64748b;
        flex-shrink: 0;
    }

    body.mob-auth-page--center .mob-auth-label-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    body.mob-auth-page--center .mob-auth-input-wrap {
        position: relative;
    }

    body.mob-auth-page--center .mob-auth-input-icon {
        display: none;
    }

    body.mob-auth-page--center .mob-auth-input-wrap:focus-within .mob-auth-input-icon {
        color: #a78bfa;
    }

    body.mob-auth-page--center .mob-auth-input {
        min-height: 3rem !important;
        padding-left: 0.95rem !important;
        padding-right: 0.95rem !important;
        border-radius: 0.875rem !important;
        font-size: 0.9375rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
    }

    body.mob-auth-page--center .mob-auth-input:focus {
        background: rgba(139, 92, 246, 0.06) !important;
        border-color: rgba(167, 139, 250, 0.45) !important;
    }

    body.mob-auth-page--center .mob-auth-link {
        font-size: 0.6875rem !important;
        font-weight: 700 !important;
    }

    body.mob-auth-page--center .mob-auth-remember {
        padding-top: 0.1rem;
    }

    body.mob-auth-page--center .mob-auth-submit {
        min-height: 3.125rem !important;
        margin-top: 0.15rem !important;
        border-radius: 0.95rem !important;
        font-size: 0.9375rem !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 10px 28px rgba(139, 92, 246, 0.35) !important;
    }

    body.mob-auth-page--center .mob-auth-submit:active {
        transform: scale(0.985);
    }

    body.mob-auth-page--center .mob-auth-switch {
        margin-top: 0.35rem !important;
        font-size: 0.8125rem !important;
        line-height: 1.45;
    }

    body.mob-auth-page--center .mob-auth-card--shell input[name="otp_code"] {
        min-height: 3.25rem !important;
        font-size: 1.35rem !important;
        letter-spacing: 0.35em !important;
        border-radius: 0.875rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
    }

    body.mob-auth-page--center .mob-auth-2fa-note {
        border-radius: 0.875rem !important;
        font-size: 0.8125rem !important;
        line-height: 1.45;
    }

    body.mob-auth-page--center .mob-auth-back {
        margin-top: 0.35rem !important;
        padding-bottom: 0.15rem;
    }

    body.mob-auth-page--center .mob-auth-back a {
        font-size: 0.75rem;
        font-weight: 600;
        gap: 0.4rem;
        color: #64748b;
    }

    body.mob-auth-page--center .mob-auth-hint {
        font-size: 0.6875rem !important;
        line-height: 1.35;
        color: #64748b !important;
        margin-top: 0.15rem !important;
    }

    body.mob-auth-page--center .mob-auth-card__head {
        display: none !important;
    }

    body.mob-auth-page--center .mob-auth-terms {
        align-items: flex-start !important;
        gap: 0.65rem !important;
    }

    body.mob-auth-page--center .mob-auth-terms span {
        font-size: 0.75rem !important;
        line-height: 1.45 !important;
    }

    body.mob-auth-page--center .mob-auth-form--compact {
        gap: 0.75rem !important;
    }

    body.mob-auth-page.mob-has-bottom-nav {
        padding-bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 1.25rem) !important;
    }

    .mob-auth-hero-logo {
        display: none !important;
    }

    .mob-auth-card {
        border-radius: 1.25rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.1);
    }

    /* Checkout success */
    .mob-success-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    #spa-main[data-page="checkout-success"] .checkout-success-page,
    .checkout-success-page.mob-success-wrap {
        padding-bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 2rem) !important;
    }

    /* Cart / checkout sticky CTA (extends 767px rules to tablet/mobile nav) */
    .cc-sticky-cta {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        z-index: 40;
        padding: 0.875rem 1rem calc(0.875rem + var(--mob-safe-b));
        background: rgba(11, 11, 15, 0.95);
        border-top: 1px solid rgba(51, 65, 85, 0.5);
        backdrop-filter: blur(12px);
    }

    .mob-has-bottom-nav .cc-sticky-cta {
        bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 0.35rem);
    }

    body:not(.mob-has-bottom-nav) .cc-sticky-cta {
        bottom: 0;
    }

    .cc-page main,
    #spa-main[data-page="cart"] main {
        padding-bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 5rem) !important;
    }

    .cc-summary .cc-btn-primary,
    .cc-summary .cc-summary__cta {
        display: none !important;
    }

    .cc-summary .cc-trust {
        grid-template-columns: 1fr !important;
    }

    /* Profile editor — fixed viewport, no page scroll */
    body.page-profile-editor #spa-main[data-page="profile-editor"] {
        top: var(--editor-nav-h, 3.5rem);
        bottom: 0;
    }

    body.page-profile-editor #spa-main[data-page="profile-editor"] > main {
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: hidden !important;
        padding-bottom: 0 !important;
    }

    body.page-profile-editor #mob-bottom-nav,
    body.page-profile-editor .mob-bottom-nav {
        display: none !important;
    }

    body.page-profile-editor #spa-main[data-page="profile-editor"] main > .flex.flex-1.overflow-hidden {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    #spa-main[data-page="profile-editor"] .editor-lib-sidebar {
        max-height: 9rem;
    }

    #spa-main[data-page="profile-editor"] .flex-1.flex.flex-col.overflow-hidden > .flex-1.flex.overflow-hidden {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    #spa-main[data-page="profile-editor"] #editorPane,
    #spa-main[data-page="profile-editor"] #previewPane {
        min-height: 0;
        max-height: none;
        flex: 1 1 0;
    }

    #spa-main[data-page="profile-editor"] #previewPane {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Orders table → cards */
    .mob-orders-table thead {
        display: none;
    }

    .mob-orders-table,
    .mob-orders-table tbody,
    .mob-orders-table tr {
        display: block;
        width: 100%;
    }

    .mob-orders-table tbody tr {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(51, 65, 85, 0.45);
    }

    .mob-orders-table tbody tr:last-child {
        border-bottom: none;
    }

    .mob-orders-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.35rem 0 !important;
        border: none;
        text-align: right;
    }

    .mob-orders-table tbody td::before {
        content: attr(data-label);
        font-size: 0.6875rem;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        text-align: left;
        flex-shrink: 0;
    }

    .mob-orders-table tbody td > div {
        text-align: right;
    }

    /* Library prompt modal — phone-only layout (tablet+ uses fixed panel in profile.css) */
    @media (max-width: 639px) {
        #promptModal {
            padding: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            overflow: hidden;
        }

        #promptModal.hidden {
            display: none !important;
        }

        #promptModal > .library-modal-stage {
            width: 100%;
            height: 100%;
            max-height: 100dvh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem max(0.75rem, env(safe-area-inset-bottom));
        }

        #modalPanel {
            max-width: 100% !important;
            width: 100% !important;
            max-height: min(92dvh, calc(100dvh - 1.5rem)) !important;
            border-radius: 1rem !important;
        }

        #modalBody {
            flex-direction: column !important;
            min-height: 0 !important;
        }

        #modalVarsPanel.library-vars-panel:not(.hidden) {
            width: 100% !important;
            max-height: none;
            order: 2;
            border-right: none !important;
            border-bottom: none;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            flex-shrink: 0;
        }

        #modalBody .library-modal-content {
            order: 1;
        }

        #promptModal #modalContent {
            max-height: none;
        }

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

    /* Profile account sheet (mobile) — slides in from right like main drawer */
    .profile-dropdown-backdrop {
        z-index: 55;
        backdrop-filter: blur(6px);
    }

    .profile-dropdown-backdrop.is-open {
        z-index: 110;
    }

    #navbar {
        z-index: 60;
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;
        width: min(90vw, 340px) !important;
        max-width: none !important;
        height: 100% !important;
        max-height: 100dvh !important;
        margin: 0 !important;
        padding: 0 0 calc(1rem + var(--mob-safe-b)) !important;
        border-radius: 0 !important;
        border: none !important;
        border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55) !important;
        background:
            radial-gradient(ellipse 120% 80% at 100% 0%, rgba(139, 92, 246, 0.14) 0%, transparent 55%),
            linear-gradient(180deg, #16161f 0%, #0b0b0f 48%, #09090d 100%) !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1) !important;
        z-index: 111 !important;
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile.is-open {
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile .profile-sheet__head {
        flex-shrink: 0;
        padding-top: calc(1rem + env(safe-area-inset-top, 0px));
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile .profile-sheet__head > .flex {
        align-items: flex-start;
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile .profile-sheet__nav {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.85rem !important;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile .profile-sheet__nav > a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.8rem 0.9rem;
        border-radius: 0.875rem;
        font-weight: 700;
        font-size: 0.8125rem;
        color: #e2e8f0 !important;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile .profile-sheet__nav > a::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.5625rem;
        margin-left: auto;
        color: #475569;
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile .profile-sheet__nav > a:active {
        transform: scale(0.985);
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile .profile-sheet__nav > a > span:first-child {
        width: 2.375rem;
        height: 2.375rem;
        border-radius: 0.7rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    #dropdownMenu.profile-dropdown-menu.profile-dropdown-menu--mobile .profile-sheet__nav > .h-px {
        margin: 0.35rem 0;
        flex-shrink: 0;
    }

    body.profile-menu-open .mob-bottom-nav {
        z-index: 45;
        opacity: 0.35;
        pointer-events: none;
    }

    body.profile-menu-open.mob-menu-open .mob-bottom-nav {
        z-index: 45;
    }

    /* Profile pages — compact sections */
    #spa-main[data-page^="profile"] .section-card {
        padding: 1.15rem;
    }

    #spa-main[data-page^="profile"] .section-title {
        font-size: 0.9375rem;
        margin-bottom: 1.15rem;
    }

    #spa-main[data-page="profile-support"] .grid.grid-cols-1.md\:grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    /* Trending grid spacing under hero */
    #spa-main[data-page="trending"] section.py-12 {
        padding-top: 1.25rem !important;
    }

    /* Marketplace loading overlay — account for bottom nav */
    #marketplace-loading {
        top: 3.25rem !important;
        bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b)) !important;
    }

    body.mob-sheet-open #marketplace-loading {
        bottom: 0 !important;
    }

    /* Toast above bottom nav */
    #toast-container {
        left: 1rem !important;
        right: 1rem !important;
        bottom: calc(var(--mob-nav-h) + var(--mob-nav-float) + var(--mob-safe-b) + 0.5rem) !important;
    }

    body:not(.mob-has-bottom-nav) #toast-container {
        bottom: 1.25rem !important;
    }

    /* Touch targets */
    #navbar .mob-nav-cart-hide {
        display: none;
    }

    #userDropdown > button,
    #navbar a[href*="cart"] {
        min-width: 2.75rem;
        min-height: 2.75rem;
    }

    /* Extra-small phones */
    @media (max-width: 380px) {
        html {
            font-size: 14px;
        }

        .mob-tab__label {
            font-size: 0.5rem;
        }

        .mob-tab__icon-wrap {
            width: 1.75rem;
            height: 1.75rem;
        }

        .mob-tab__icon-wrap i {
            font-size: 1rem;
        }

        .mkt-mobile-filter-btn {
            padding: 0.45rem 0.75rem;
            font-size: 0.6875rem;
        }
    }
}

@media (min-width: 1024px) {
    .mob-menu-btn,
    .mob-bottom-nav,
    .mob-drawer,
    .mob-drawer-backdrop,
    .mob-profile-tabs,
    .mkt-filter-sheet,
    .mkt-filter-sheet-backdrop,
    .mkt-mobile-filter-btn {
        display: none !important;
    }

    .mob-sidebar-desktop {
        display: block !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mob-tab i,
    .mob-menu-btn__lines span,
    .mob-drawer,
    .mkt-filter-sheet,
    #hero .hero-orb,
    #hero .hero-float-card-wrap,
    #hero .hero-particle,
    .mob-profile-tabs__fade--start i,
    .mob-profile-tabs__fade--end i {
        transition: none !important;
        animation: none !important;
        opacity: 0.9;
    }
}
