
/* Modern Mobile Bottom Nav Styles - Integrated and Fixed */

.nav-mobile__sticky-wrapper {
    position: fixed;
    right: 20px;
    bottom: 25px;
    left: 20px;
    z-index: 10000; /* Higher z-index */
    display: none;
}

@media (max-width: 991px) {
    .nav-mobile__sticky-wrapper {
        display: block !important;
    }
}

.nav-mobile__sticky-headings {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 8px 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-mobile__sticky-headings ul {
    display: flex !important;
    align-items: center;
    justify-content: space-around;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-mobile__sticky-headings ul li {
    flex: 1;
    text-align: center;
    position: relative;
    list-style: none !important;
}

.nav-mobile__sticky-headings ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    height: 50px;
    transition: all 0.3s ease;
}

.nav-mobile__sticky-headings ul li a .icon {
    font-size: 20px;
    color: #5e788f;
    margin-bottom: 4px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-mobile__sticky-headings ul li a .heading {
    font-size: 10px;
    font-weight: 700;
    color: #2c3e50;
    opacity: 1;
    letter-spacing: -0.2px;
    text-transform: capitalize;
}

/* Center Button (WhatsApp Overlay) */
.nav-mobile__sticky-headings ul li.center-nav-item {
    flex: 0 0 70px;
    margin-top: -30px;
    z-index: 10001;
}

.nav-mobile__sticky-headings ul li button.ui-item-search {
    width: 60px;
    height: 60px;
    background: #25d366 !important;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
    padding: 0;
}

.nav-mobile__sticky-headings ul li button.ui-item-search .icon {
    color: #fff !important;
    font-size: 28px;
    margin: 0;
    opacity: 1;
}

.nav-mobile__sticky-headings ul li button.ui-item-search:active {
    transform: scale(0.9);
}

/* Hide the old floating button on mobile */
@media (max-width: 767px) {
    .whatsapp-fixed-btn {
        display: none !important;
    }
}
