/* Mobile Menu Styles (split from style.css) */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1000;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.bottom-menu-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.bottom-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    color: #718096;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.bottom-menu-item span {
    font-size: 11px;
    margin-top: 4px;
    font-weight: 500;
}

.bottom-menu-item.active {
    color: #2d3748;
    font-weight: 600;
}

@media (min-width: 769px) {
    .bottom-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    main {
        padding-bottom: 70px;
    }
}
