/* — style.css • bagian bawah layar (mobile only) — */


@media (max-width: 991px) {
    .mobile-fix-option {
        bottom: 0;
        display: block !important;
        position: fixed;
        left: 0;
        background-color: rgb(248, 248, 248);
        width: 100%;
        z-index: 100;
    }

    .mobile-fix-option ul {
        align-items: center;
        display: flex;
        justify-content: space-evenly;
        margin-bottom: 0;
        padding-left: 0;
    }

    .mobile-fix-option ul li a {
        display: grid;
        font-weight: 500;
        padding: 8px 6px;
        text-align: center !important;
        transition: all .4s ease-in-out;
    }

    .mobile-fix-option ul li a .bi {
        font-size: calc(16px + .5vw);
        line-height: 0;
        transition: all .4s ease-in-out;
        color: rgba(118,118,118);
        margin: 0 auto;
    }

}