/* --- Header: Mobile Bottom Nav --- */

.tk-mobile-nav {
    display: none; 
}

@media (max-width: 767px) {
    .tk-mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #ffffff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .tk-mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        text-decoration: none;
        color: #777;
        font-family: 'Noto Sans', sans-serif;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }
    .tk-mobile-nav-item .nav-icon {
        font-size: 20px;
        margin-bottom: 3px;
    }
    .tk-mobile-nav-item.cart-nav-item {
        position: relative;
    }
    .tk-mobile-nav-item .cart-count-badge {
        position: absolute;
        top: 4px;
        right: calc(50% - 25px);
        background-color: #e53935;
        color: white;
        font-size: 10px;
        font-weight: bold;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid white;
    }
    .tk-mobile-nav-item.current-menu-item,
    .tk-mobile-nav-item:hover {
        color: var(--tk-golden);
    }
    
    body {
        /* This padding accounts for BOTH top and bottom bars */
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}