/*---nav------*/
.outer-nav{
    width: 100%;
    justify-content: center;
    align-items: center;
}
.nav-top{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.cart-icon {
    position: relative;
    font-size: 1.8rem;
    color: #065f46;
    padding-right: 30px;
}
.cart-badge {
    position: absolute;
    top: 6px;
    right: 28px;
    background: #FBCE76;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 50%;
    height: 20px;
    width: 20px;
}
.nav-item{
    font-size: 15px!important;
    font-weight: 700;
    padding-left: 20px;
    position: relative;
    color: #222;
    font-family: "Inter", sans-serif;
}

.nav-item .active {
      color: #036937!important;
      font-weight: bold;
    }
.nav-item .active::after {
      content: "";
      position: absolute;
      left: 20px;
      bottom: 0;
      width: 90%;
      height: 2px;
      background-color: #036937; /* underline color */
    }    



@media only screen and (min-width: 992px) and (max-width: 1064px) {
    .nav-item{
        font-size: 14px!important;
        font-weight: 600;
        padding-left: 10px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 992px) {

    .navbar-toggler{
        border: 1px solid transparent !important;       
    }
    .navbar-toggler-icon{
        background-image: url(../images/toggle.png)!important;
    }
    .navbar-collapse{
        left: 15px;
        position: absolute;
        width: 80%;
        background: #fff;
    }
}

