.mobile-filter-panel {
    position: fixed;
    top: 110px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-filter-panel.active {
    transform: translateX(0);
    padding: 15px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: none;
    z-index: 1040;
}

.overlay.active {
    display: block;
}

.mobile-tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1100;
}

.mobile-tabbar .tabbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tabbar-icon {
    flex: 1;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    color: #2e7d32;
}

.tabbar-icon .icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabbar-icon .label {
    font-size: 11px;
    margin-top: 2px;
}

.tabbar-icon.active-tab .icon-wrap {
    background: #ffcc80;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e65100;
}

.tabbar-icon.active-tab .label {
    color: #e65100;
}

.central-icon {
    position: relative;
    top: -20px;
}

.central-icon .circle-icon {
    width: 48px;
    height: 48px;
    background: #2e7d32;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .mobile-filter-panel,
    .overlay,
    .mobile-tabbar {
        display: none !important;
    }
}
