/* Mobile Bottom Tab Bar */
.mobile-tab-bar {
    display: none;
}

@media (max-width: 767px) {
    .mobile-tab-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
        height: 60px;
    }

    .mobile-tab-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #6b7280;
        text-decoration: none;
        font-size: 10px;
        font-weight: 500;
        padding: 6px 4px;
        transition: color 0.2s;
    }

    .mobile-tab-item i {
        font-size: 20px;
        line-height: 1;
    }

    .mobile-tab-item span {
        line-height: 1;
    }

    .mobile-tab-item.mobile-tab-active,
    .mobile-tab-item:active {
        color: var(--green, rgba(11, 114, 65, 1));
    }

    /* Push page content above the tab bar */
    body {
        padding-bottom: 60px;
    }
}
