#cocorico-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
    z-index: 9999;
}

#cocorico-bottom-nav a {
    text-align: center;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 10px;
    background: red;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

#cocorico-category-panel {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    z-index: 10000;
    padding: 20px;
}

#cocorico-category-panel.active {
    left: 0;
}
