/* ==========================================================================
   Snaf Navigation Styles (Mobile Footer Bar Only)
   ========================================================================== */

/* デフォルト（PC）：スマホフッターバーは非表示 */
.mobile-footer-menu-buttons.snaf-mobile-footer-bar {
    display: none !important;
}

/* スマホ・タブレット（1023px以下）：固定フッターメニューバーを表示 */
@media screen and (max-width: 1023px) {
    .mobile-footer-menu-buttons.snaf-mobile-footer-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: auto !important;
        min-height: 54px;
        padding: 0;
        padding-bottom: constant(safe-area-inset-bottom);
        padding-bottom: env(safe-area-inset-bottom);
        margin: 0;
        display: flex !important;
        justify-content: space-around;
        align-items: stretch;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
        z-index: 9999;
    }

    .snaf-mobile-footer-bar li.menu-button {
        flex: 1;
        margin: 0;
        padding: 0 !important;
        border: none !important;
        display: flex;
    }

    .snaf-mobile-footer-bar .menu-button-in {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 7px 2px 7px 2px;
        box-sizing: border-box;
        color: #ffffff !important;
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
    }

    .snaf-mobile-footer-bar .menu-button-in:active {
        background-color: rgba(255, 255, 255, 0.15);
    }

    .snaf-mobile-footer-bar .menu-icon {
        font-size: 20px;
        line-height: 1;
        margin-bottom: 2px;
        color: #ffffff !important;
        display: block;
    }

    .snaf-mobile-footer-bar .menu-caption {
        font-size: 11px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.01em;
        color: #ffffff !important;
        display: block;
        white-space: nowrap;
    }

    /* フッターバー ハイライトボタン（会員登録 / マイページ） */
    .snaf-mobile-footer-bar li.snaf-footer-btn-highlight .menu-button-in {
        background: #fff1f2;
    }

    .snaf-mobile-footer-bar li.snaf-footer-btn-highlight .menu-button-in:active {
        background-color: #ffe4e6;
    }

    .snaf-mobile-footer-bar li.snaf-footer-btn-highlight .menu-caption {
        color: #e11d48 !important;
        font-weight: 800;
    }

    .snaf-mobile-footer-bar li.snaf-footer-btn-highlight .menu-icon {
        color: #e11d48 !important;
    }
}
