.mobile-footer-nav {
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.footer-nav-item {
    color: #AC9458;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-nav-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFF;
}

.footer-nav-item.active {
    color: #AC9458;
    background: none;
}

.footer-nav-item:hover {
    color: #AC9458;
    transform: scale(1.05);
}