/* Only show on mobile */
.as-mobile-bar-e55 {
    display: none;
}

@media (max-width: 767px) {
    .as-mobile-bar-e55 {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #111111;
        border-top: 1px solid #333333;
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        padding: 12px 0;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    }
    
    .as-m-item-e55 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #ffffff;
        font-family: sans-serif;
        font-size: 12px;
        font-weight: 500;
        transition: all 0.2s ease;
        flex: 1;
    }
    
    .as-m-item-e55 svg {
        width: 20px;
        height: 20px;
        fill: #ffffff;
        margin-bottom: 6px;
        transition: all 0.2s ease;
    }
    
    .as-m-item-e55:hover,
    .as-m-item-e55:active {
        color: #007AFF;
    }
    
    .as-m-item-e55:hover svg,
    .as-m-item-e55:active svg {
        fill: #007AFF;
        transform: translateY(-2px);
    }
}