/* ===================================================
                NAVIGATION.CSS
      Floating Cart & Bottom Navigation
=================================================== */


/* ===================================================
                  FLOATING CART
=================================================== */

.floating-cart{
    position:fixed;
    right:20px;
    bottom:90px;
    width:65px;
    height:65px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:none;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(22,163,74,.35);
    z-index:1000;
}

.floating-cart span{
    position:absolute;
    top:-5px;
    right:-5px;
    width:24px;
    height:24px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#ef4444;
    color:#fff;
    font-size:12px;
    font-weight:700;
}


/* ===================================================
                BOTTOM NAVIGATION
=================================================== */

.bottom-nav{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    height:70px;
    display:flex;
    justify-content:space-around;
    align-items:center;
    background:#fff;
    border-top:1px solid #ececec;
    box-shadow:0 -5px 20px rgba(0,0,0,.08);
    z-index:1000;
}

.bottom-nav a{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:4px;
    color:#7a7a7a;
    text-decoration:none;
    font-size:12px;
    font-weight:500;
    transition:.3s;
}

.bottom-nav a i{
    font-size:24px;
}

.bottom-nav a:hover,
.bottom-nav a.active{
    color:#16a34a;
}


/* ===================================================
                 DESKTOP LAYOUT
=================================================== */

@media (min-width:992px){

    .bottom-nav{
        left:50%;
        max-width:450px;
        transform:translateX(-50%);
        border-radius:20px 20px 0 0;
    }

}