/* .bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 65px;
    background-color: #000;  */
    /* initial black */
    /* display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
    transition: background 0.4s ease;
}

.bottom-nav.scrolled {
    background-color: #152127;
    background: linear-gradient(51deg, rgba(0,0,0,1) 0%, rgba(3,91,138,1) 50%);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    position: relative;
}

.icon svg { display: block; }

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

@media (min-width: 768px) {
    .bottom-nav { display: none; }
} */



.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 65px;
    background-color: #000; /* initial black */
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
    transition: background 0.4s ease;
    transform: none !important;
}

.bottom-nav.scrolled {
    background-color: #152127;
    background: linear-gradient(51deg, rgba(0,0,0,1) 0%, rgba(3,91,138,1) 50%);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    position: relative;
}

.icon svg {
    display: block;
}

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

@media (min-width: 768px) {
    .bottom-nav {
        display: none;
    }
}