/* استایل‌های Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    display: none; /* به صورت پیش‌فرض مخفی */
}

body.dark-mode .bottom-bar {
    background: #333;
    border-top: 1px solid #444;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.bottom-bar.hidden {
    transform: translateY(100%);
}

.bottom-bar-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.bottom-bar-item {
    flex: 1;
    text-align: center;
}

.bottom-bar-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
}

body.dark-mode .bottom-bar-link {
    color: #ccc;
}

.bottom-bar-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

body.dark-mode .bottom-bar-icon {
    filter: brightness(0) invert(1); /* سفید کردن آیکون‌ها در حالت شب */
}

.bottom-bar-text {
    font-size: 12px;
}

.bottom-bar-link:hover {
    color: #e20a0b;
}

body.dark-mode .bottom-bar-link:hover {
    color: #e20a0b;
}

/* نمایش فقط در موبایل */
@media (max-width: 767px) {
    .bottom-bar {
        display: block;
    }
}