/* فایل: mini-app/nav.css */

/* تنظیمات کلی نوار پایین */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98); /* کمی شفافیت */
    backdrop-filter: blur(10px); /* افکت شیشه‌ای */
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
    z-index: 999; /* بالاتر از همه */
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px; /* هماهنگ با سایر صفحات */
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa; /* رنگ غیرفعال */
    font-size: 0.75rem;
    gap: 6px;
    cursor: pointer;
    width: 20%;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
    transition: transform 0.2s;
}

/* حالت فعال */
.nav-item.active {
    color: #333; /* رنگ فعال */
    font-weight: 700;
}

.nav-item.active i {
    color: #007aff; /* رنگ آیکون فعال (آبی تلگرام) */
    transform: translateY(-2px);
}

/* افکت هاور برای دسکتاپ */
@media (hover: hover) {
    .nav-item:hover {
        color: #666;
    }
    .nav-item:hover i {
        transform: scale(1.1);
    }
}

.nav-item:active {
    transform: scale(0.95);
}
/* استایل برای بج نوتیفیکیشن */
.nav-item {
    position: relative; /* برای اینکه بج نسبت به آیکون تنظیم شود */
}

.nav-badge {
    position: absolute;
    top: -5px;
    right: 25%; /* تنظیم دقیق موقعیت */
    background-color: #e74c3c;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff; /* حاشیه سفید برای زیبایی */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    padding: 0 4px;
}

/* انیمیشن کوچک برای جلب توجه */
.nav-badge.new {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}