.storefront-soft-nav-loader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, color-mix(in srgb, var(--accent, #1c8791) 72%, #ffffff), var(--accent, #1c8791));
        transform-origin: left center;
        transform: scaleX(0);
        transition: transform .22s ease;
        z-index: 9999;
        pointer-events: none;
    }

    .storefront-soft-nav-loader.is-visible {
        transform: scaleX(1);
    }

    body.storefront-soft-nav-animated {
        transition: opacity .18s ease;
    }

    body.storefront-soft-nav-leaving {
        opacity: .04;
    }

    html body .bottom-nav,
    html body .bottom-cart,
    html body .cart-toast,
    html body .restaurant-bottom-nav,
    html body .drawer-scrim,
    html body .drawer-panel,
    html body .bottom-bar {
        position: fixed !important;
    }
