.mbnp-bottom-navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #ffffff, #f9f9f9);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 9999;
    border-top: 1px solid #ccc;
}

.mbnp-bottom-navbar a {
    text-decoration: none;
    color: #555;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.2s ease;
    position: relative;
}

.mbnp-bottom-navbar a i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mbnp-bottom-navbar .mbnp-cart-count {
    position: absolute;
    top: -2px;
    right: 10px;
    background: #e53935;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

.mbnp-bottom-navbar a:hover i,
.mbnp-bottom-navbar a:hover span {
    color: #2e8b57;
}

@media (min-width: 768px) {
    .mbnp-bottom-navbar, .mbnp-search-drawer {
        display: none;
    }
}

.mbnp-search-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.mbnp-search-box {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.mbnp-close-search {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
