body {
    margin-bottom: 75.0px;
}

/*--------------------------------------------------------------------------------*/

    #store-sticky-bar {
        color: #fff;
        background-color: #e4e9e3;

        max-width: 700px;
        width: 100vw;
        height: 75.0px;
        padding: 10px 10px;

        position: fixed; /* Sticky */
        z-index: 999;

        
        bottom: 0px;

        left: 50%;
        transform: translate(-50%, 0%);


        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }


        .store-sticky-bar-item {
            position: relative;
            display: flex;
            flex-direction: column;
            flex: 1 1 0;

            max-width: 80px;
            height: 100%; /* 부모 컨테이너의 전체 높이를 사용 */
            justify-content: flex-start;

            cursor: pointer;

            background-color: #fff;
            border-radius: 5px;

            box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.1),
                        -1px 2px 1px rgba(0, 0, 0, 0.1);
        }
        /* .store-sticky-bar-item:not(:last-child) {
            border-right: 1px solid #fff; /* Exclude last child
        } */
        .store-sticky-bar-item,
        .store-sticky-bar-item:active,
        .store-sticky-bar-item:hover {
            color: #333;
            text-decoration: none;
        }

        .store-sticky-bar-item[disabled] {
            pointer-events: none;
        }

            .store-sticky-bar-item img {
                height: 20px;
                margin: 10px auto 2px;
            }

            .store-sticky-bar-item[disabled] img {
                filter: grayscale(100%) contrast(120%);
            }

            .store-sticky-bar-text {
                font-size: 11px;
                font-weight: 500;
                text-align: center;
            }

        .store-sticky-bar-spacing {
            border-right: 1px solid #fff;

            height: 80%;
            margin: auto 0px;
        }