

#mobile-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #D1C4B5; /* لون الخلفية المطلوب */
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000; 
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); 
    padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 768px) {
    #mobile-nav-bar {
        display: none !important;
    }
}



.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a; 
    font-size: 10px;
    font-weight: 500;
    padding: 5px;
    flex-grow: 1; 
    transition: transform 0.3s ease, color 0.3s ease; 
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
    line-height: 1; 
    transition: transform 0.3s ease; 
}

.nav-item:hover {
    color: #4a4a4a;
}


.nav-item:hover i {
    transform: scale(1.15) translateY(-2px); 
}




.cart-nav-item {
    position: relative;
}

.badge {
    position: absolute;
    top: -5px;
    right: 15px; 
    background-color: #5cb85c; 
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 5px;
    min-width: 15px;
    text-align: center;
    line-height: 1;
    border: 1px solid #D1C4B5;
 
    display: {{ cart.item_count | default: 0 | abs > 0 | ? 'block', 'none' }};
}