

#mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
}

#nav-home,
#nav-categories,
#nav-favorites,
#nav-cart,
#nav-profile {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 4px;
    position: relative;
}

#nav-home:hover,
#nav-categories:hover,
#nav-favorites:hover,
#nav-cart:hover,
#nav-profile:hover {
    color: #007bff;
}

#nav-home.active,
#nav-categories.active,
#nav-favorites.active,
#nav-cart.active,
#nav-profile.active {
    color: #ff8c00;
}

#icon-home,
#icon-categories,
#icon-favorites,
#icon-cart,
#icon-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

#home-icon,
#categories-icon,
#favorites-icon,
#cart-icon,
#profile-icon {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

#nav-home.active #home-icon,
#nav-categories.active #categories-icon,
#nav-favorites.active #favorites-icon,
#nav-cart.active #cart-icon,
#nav-profile.active #profile-icon {
    transform: scale(1.1);
}

#label-home,
#label-categories,
#label-favorites,
#label-cart,
#label-profile {
    font-size: 0.65rem;
    font-weight: 500;
    text-align: center;
}

#cart-badge {
    position: absolute;
    top: 8px;
    right: 50%;
    transform: translateX(50%);
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    border: 2px solid #ffffff;
}

/* Desktop - Hide navigation */
@media (min-width: 768px) {
    #mobile-nav {
        display: none;
    }
}

/* Tablet - Hide navigation */
@media (min-width: 481px) and (max-width: 767px) {
    #mobile-nav {
        display: none;
    }
}

/* Mobile - Show navigation */
@media (max-width: 480px) {
    #mobile-nav {
        display: flex;
        height: 65px;
    }
     body {
        padding-bottom: 7%; /* Mobile'da daha fazla boşluk */
    }
    
    #home-icon,
    #categories-icon,
    #favorites-icon,
    #cart-icon,
    #profile-icon {
        font-size: 1.2rem;
    }
    
    #label-home,
    #label-categories,
    #label-favorites,
    #label-cart,
    #label-profile {
        font-size: 0.6rem;
    }
}