/* ==================== MOBILE FOOTER COMPONENT ==================== */
.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 16px 20px;
    border-top: 1px solid rgba(242, 168, 58, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.mobile-footer.hidden {
    transform: translateY(100%);
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 40px;
    flex: 1;
    max-width: 80px;
    background: transparent;
    border: none;
}

.footer-nav-item i {
    font-size: 1.2rem;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.footer-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.footer-nav-item.active {
    background: rgba(242, 168, 58, 0.12);
}

.footer-nav-item.active i {
    color: #f2a83a;
    transform: translateY(-2px);
}

.footer-nav-item.active span {
    color: #f2a83a;
    font-weight: 600;
}

.footer-nav-item:active {
    transform: scale(0.95);
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-footer {
        display: none;
    }
}

/* Animation for showing/hiding */
@keyframes footerSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes footerSlideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.mobile-footer.show {
    animation: footerSlideUp 0.3s ease forwards;
}

.mobile-footer.hide {
    animation: footerSlideDown 0.3s ease forwards;
}