/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-color, #fff);
    border-top: 1px solid rgba(166, 161, 178, 0.2);
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav__container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 4px;
    padding: 0 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.mobile-bottom-nav__container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #a6a1b2;
    padding: 8px 12px;
    min-width: 70px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:active {
    background: rgba(255, 69, 0, 0.1);
    color: #ff4500;
}

.mobile-bottom-nav__item.active {
    background: rgba(255, 69, 0, 0.15);
    color: #ff4500;
}

.mobile-bottom-nav__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-nav__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.mobile-bottom-nav__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-bottom-nav__label {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.mobile-bottom-nav__divider {
    width: 1px;
    background: rgba(166, 161, 178, 0.2);
    margin: 8px 4px;
    flex-shrink: 0;
}

/* Show on mobile screens */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind nav */
    body {
        padding-bottom: 75px !important;
    }
    
    /* Hide hamburger menu on mobile when bottom nav is shown */
    .Header_burger___g_W7 {
        display: none !important;
    }
}

/* Dark mode support */
[data-theme="dark"] .mobile-bottom-nav {
    background: #1a1a1a;
    border-top-color: rgba(166, 161, 178, 0.15);
}

[data-theme="dark"] .mobile-bottom-nav__item {
    color: #a6a1b2;
}

[data-theme="dark"] .mobile-bottom-nav__item:hover,
[data-theme="dark"] .mobile-bottom-nav__item:active {
    background: rgba(255, 69, 0, 0.15);
    color: #ff4500;
}

[data-theme="dark"] .mobile-bottom-nav__item.active {
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
}

[data-theme="dark"] .mobile-bottom-nav__divider {
    background: rgba(166, 161, 178, 0.15);
}
