/* Bottom Navigation Styles */
.bottom-nav {
    display: block;
}
.bottom-nav {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.625rem;   
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    /* iOS Safari fix */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
    border-radius: 50px;
    min-width: 3.75rem;
    justify-content: flex-end;
    flex: 1;
}

.active-outer-circle {
    position: absolute;
    bottom: 38%;
    left: 50%;
    transform: translateX(-50%);
    width: 6.25rem;
    height: 6.25rem;
    background-color: #1a1a1a;
    border-radius: 50%;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-inner-circle {
    background-color: #2c2c32;
    border-radius: 50px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 4.6875rem;
    height: 4.6875rem;
}

.nav-icon {
    width: 1.375rem;
    height: 1.375rem;
    margin-bottom: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.nav-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: auto;
}

.nav-label {
    color: #929AAA;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

/* Icon specific styles */
.menu-icon {
    color: #00FF90;
}

/* Hover animations for bottom nav */
.nav-item:hover .nav-icon {
    transform: translateY(-2px) scale(1.1);
    transition: all 0.3s ease;
}

.nav-item:hover .nav-label {
    color: #00FF90;
    transition: color 0.3s ease;
}


.nav-item:hover .nav-image {
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

/* Special hover for wallet with active circle */
.nav-item:has(.active-outer-circle):hover .nav-wallet-icon {
    transform: translateY(-2px) scale(1.1);
    transition: all 0.3s ease;
}

.nav-item:has(.active-outer-circle):hover .active-inner-circle {
    background-color: #3c3c42;
    transition: all 0.3s ease;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger-line,
.hamburger-middle {
    width: 100%;
    height: 0.125rem;
    background-color: #929AAA;
    transition: all 0.3s ease;
}

.hamburger-middle{
    background-color: #00FF90;
}

/* ========================================
   TABLET & DESKTOP STYLES
   ======================================== */
@media (min-width: 768px) {
    .bottom-nav {
        display: none;
    }
}

