.drag-handle {
    cursor: grab;
    touch-action: none;
}

.drag-handle:active { cursor: grabbing; }

.flex-1 { flex: 1; }

.shopping-row {
    cursor: pointer;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    height: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background-color: var(--mud-palette-surface);
    border-top: 1px solid var(--mud-palette-lines-default);
    z-index: 1300;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}