.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.mobile-sticky-bar a {
    text-align: center;
    color: #333;
    text-decoration: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.mobile-sticky-bar i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-sticky-bar .cart-count {
    position: relative;
}

.mobile-sticky-bar .cart-count .cart-count-value {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #b68530;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    line-height: 1;
}

/* Sakrij na desktopu */
@media (min-width: 992px) {
    .mobile-sticky-bar {
        display: none;
    }
}

/* Dodaj padding na dno stranice da sticky bar ne prekriva sadržaj */
body {
    padding-bottom: 60px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}
