/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2b2b2b;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-bottom-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.mobile-bottom-nav ul li {
    margin: 0;
    padding: 0;
}

.mobile-bottom-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    padding: 5px 15px;
}

.mobile-bottom-nav ul li a i {
    font-size: 28px;
    margin-bottom: 2px;
    color: #d41d36;
}

.mobile-bottom-nav ul li a span {
    font-size: 10px;
    color: #ffffff;
    text-transform: capitalize;
}

/* Mobile Header Account Icon */
.mobile-account-icon {
    display: none;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.mobile-account-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
}

.mobile-account-icon a i {
    font-size: 24px;
    color: #d41d36;
    text-shadow: 0 0 2px whitesmoke;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    .mobile-account-icon {
        display: block;
    }
    
    /* Center the logo on mobile */
    header.header-1 .header-section {
        position: relative;
    }
    
    header.header-1 .brand-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Adjust navbar toggle position */
    header.header-1 .navbar {
        margin-left: auto;
    }
    
    /* Add padding to body to prevent content from being hidden behind the bottom nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Adjust WhatsApp button position to avoid overlap */
    .whatsapp-icon {
        bottom: 80px !important;
    }
    
    /* Adjust tap-top button position */
    .tap-top {
        bottom: 80px !important;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
    
    .mobile-account-icon {
        display: none !important;
    }
}
