.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 12px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    border-radius: 20px 20px 0 0;
    z-index: 1000;
    direction: rtl; 
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 12px;
    position: relative;
}

.bottom-nav-item i {
    font-size: 18px;
}

.bottom-nav-item.active {
    color: #4a1726;
}

.bottom-nav-item span:first-of-type {
    font-size: 10px;
}

/* عداد السلة */
.cart-badge {
    position: absolute;
    top: -5px;
    right: 25px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* إضافة مساحة أسفل الصفحة حتى لا يخفي الشريط المحتوى */
body {
    padding-bottom: 70px;
}

/* للشاشات الكبيرة (حاسوب) - إخفاء الشريط */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}
