/* PakWheels Mobile App Navigation Bar - Clean 4-Item Bar */
.paktrees-mobile-app-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999999;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #e5e5e5;
}

.app-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555555 !important;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 600;
    flex: 1;
    height: 100%;
    transition: all 0.2s ease;
}

.app-bar-item.active, .app-bar-item:hover {
    color: #28a745 !important; /* Primary Theme Green */
    background: rgba(40, 167, 69, 0.05);
}

.app-bar-icon {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 3px;
}

/* Mobile Category Pills Slider */
.paktrees-mobile-category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 14px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 15px;
}

.paktrees-mobile-category-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.cat-pill-item a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    background: #f4fbf5;
    border: 1px solid #c8e6c9;
    border-radius: 20px;
    white-space: nowrap;
    text-decoration: none !important;
    color: #1b5e20 !important;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.cat-pill-item.active a, .cat-pill-item a:hover {
    background: #28a745;
    color: #ffffff !important;
    border-color: #28a745;
}

.cat-emoji {
    font-size: 15px;
}

/* Responsive Trigger for App Bar */
@media (max-width: 768px) {
    .paktrees-mobile-app-bar {
        display: flex;
    }
    body {
        padding-bottom: 65px !important;
    }
}
