.bottom-menu .bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 70px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(150%);
    transition: transform 0.25s ease;
    will-change: transform;
}
.bottom-menu.visible .bottom-navbar {
  transform: translateY(0);
}
.bottom-menu .nav-item {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.bottom-menu .nav-item a {
    font-size: 14px;
    color: #444;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-menu .nav-item a.active {
    color: #5638FF;
}

.bottom-menu .nav-item i {
    font-size: 28px;
    margin-bottom: 2px;
}

.bottom-menu .cart-wrapper {
    top: -35px;
    width: 40%;
    display: flex;
    justify-content: center;
    position: relative;
}

.bottom-menu .cart-wrapper.active i {
    color: #5638FF;
}

.bottom-menu .cart-wrapper.active .cart-button {
    background-color: #F0F1F9;
    border-color: #5638FF;
}

.bottom-menu .cart-button {
    position: absolute;
    top: -35px;
    width: 70px;
    height: 70px;
    background-color: #161A33;
    border-radius: 50%;
    border: 4px solid #F0F1F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    z-index: 1001;
}

.bottom-menu .cart-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #8a6cff;
    color: white;
    font-size: 12px;
    padding: 0 6px;
    border-radius: 10px;
}