/* Shared mobile bottom navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    background-color: #000000;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 75px;
    }
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: all 0.2s ease;
    flex: 1;
}

.mobile-bottom-nav .nav-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    margin-bottom: 5px;
}

.mobile-bottom-nav .nav-item span {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.mobile-bottom-nav .nav-item.active {
    color: #E11B22;
}

.mobile-bottom-nav .nav-item.active .nav-icon {
    fill: #E11B22;
}

.mobile-bottom-nav .nav-item:active {
    transform: scale(0.92);
}
