/* Extracted from includes/footer.php - FIXED FOR MOBILE FIT */
.floating-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wa-btn {
    background: #25D366;
    color: white;
    bottom: 85px;
}

.btt-btn {
    background: var(--accent);
    color: #000;
    bottom: 85px;
    border: none;
    cursor: pointer;
}

.floating-btn.right {
    right: 20px;
}

.floating-btn.left {
    left: 20px;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 65px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 200000 !important;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        align-items: center;
    }
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #94a3b8;
    transition: all 0.3s;
    height: 100%;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.mobile-bottom-nav .nav-item .icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
    display: block;
}

.mobile-bottom-nav .nav-item .label {
    font-size: 8px !important;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.03);
}

.mobile-bottom-nav .nav-item.active .icon {
    transform: translateY(-2px);
}

.nav-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent);
    color: #000;
    font-size: 9px;
    font-weight: 900;
    padding: 1px 5px;
    border-radius: 8px;
    border: 2px solid #1e293b;
}