.user-action a {
    text-decoration: none;
    color: #000;
    transition: all .2s;
}

.user-action a:hover {
    color: #3167eb;
}

.user-action {
    cursor:pointer;
}

.cart {
    position: relative;
    display: flex;
    width: 40px;
    height: 40px;
    border: 1px solid #ced4da;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}



.cart span {
    position: absolute;
    top: -7px;
    right: -5px;
    color: #ffefef;
    background-color: red;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    background-color: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);


}



.hedder {
    display: flex;
    height: 60px;
    padding: 16px 15px;
    align-items: center;
    justify-content: center;


}

.home-icon {
    flex: .2;
    margin-top: 5px;
    min-width: 160px;

}

.main-search-box {
    flex: 1;
    display: flex;
}

.search-with-result {
    flex: 1;
}

.search-box {
    width: 90%;
    height: 40px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding-left: 12px;
    font-size: 15px;
    transition: border-color 0.5s;

}

.search-box:focus {
    outline: 1px solid #ffffff;
    outline-offset: -2px;
    border-color: rgb(0, 0, 0);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);

}

.search-button {
    height: 42px;
    width: 50px;
    margin-left: -6px;
    border: 1px solid #ced4da;
    border-radius: 0 7px 7px 0;

    background-color: #2c2c2c;;
    /* background-color: #e6a800; */
    color: #000000;
    cursor: pointer;

}

.account-section {
    width: 240px;
    display: flex;
    justify-content: right;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 650px) {
    .search-box {
        display: none;
    }

    .search-button {
        display: none;
    }

    .main-search-box {
        flex: .1;
    }

    .account-section {
        flex: .8;
    }

    body {
        margin-top: 0px;
    }


    .navbar {

        box-shadow: none;
    }

    .hedder {
        padding-bottom: 5px;
        padding-top: 5px;

    }

    .mobile-search {
        background-color: #f1f1f1;
        display: flex;
        padding-top: 5px;
        padding-bottom: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);

    }

    #phone-input {
        display: block;
        margin-left: 15px;

    }

    #search-button {
        display: block;
        margin-right: 12px;
        cursor: pointer;

    }

    .user-action{
        font-size: 16px;
        font-size: 2.5vw;
    }
}


.search-result-box {
    position: absolute;
    z-index: 99;
    background-color: rgb(255, 255, 255);
    border-radius: 2px 2px 4px 4px;
    top: auto;
    width: 91%;
    margin-left: 1px;
    padding-bottom: 5px;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.3);

    max-height: 450px;
    overflow-y: scroll;
}

.navli li {
    list-style-type: none;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 11px;
    font-size: 18px;
    color: #696e79;
    transition: background-color .1s;
}

.navli li:hover {
    background-color: rgb(233, 233, 233);
}

.hidden_class {
    display: none;
}

.search-result-box-phone {
    position: fixed;
    z-index: 99;
    background-color: rgb(255, 255, 255);
    border-radius: 2px 2px 4px 4px;
    top: 54px;
    width: 91%;
    margin-left: 16px;
    padding-bottom: 5px;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.3);

    max-height: 350px;
    overflow-y: scroll;
}

/* MENUUUU */


.side-box {
    /* width: fit-content; */
    width: 280px;
    height: 100vh;
    top: 0;
    background-color: #fff;
    position: absolute;
    text-align: left;
    z-index: 1;
    opacity: 0;
    left: -500px;
    pointer-events: none;
    transition: 0.3s;
}


.active.side-box {
    opacity: 1;
    left: 0px;
    pointer-events: fill;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}



.menu_icon_box {
    z-index: 2;
    position: relative;
    width: fit-content;
    height: auto;
    background-color: #fff;
    margin: 3px;
    border-radius: 4px;
    cursor: pointer;
}

.line1,
.line2,
.line3 {
    width: 30px;
    height: 4px;
    margin: 7px 8px;
    background-color: #000;
    border-radius: 50px;
    transition: 0.2s;

}

.active .line1 {
    transform: translate(0px, 8px)rotate(45deg);
}

.active .line2 {
    opacity: 0;
}

.active .line3 {
    transform: translate(0px, -15px)rotate(-45deg);
}

.side-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.side-box nav {
    padding-top: 100px;
}

.side-box ul {
    margin: 0px 30px;
}


.side-box ul li {
    list-style: none;
    margin-bottom: 15px;
    transition: 0.2s;
    cursor: pointer;

}

.side-box ul li:hover {
    background-color: #c6c6c66f;
    border-radius: 8px;
}

.side-box ul li a {
    color: #000;
    font-size: 20px;
    padding: 5px 5px;
    display: block;
    text-decoration: none;
}


/* SUBB */

.side-box ul ul {
    margin-top: 5px;
    margin-left: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.side-box ul ul li a {
    font-size: 17px;
}

.side-box ul ul.show {
    max-height: 1000px;
    /* Adjust this value based on your content */
    opacity: 1;
    animation: fadein 0.3s ease;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.side-box ul ul li a {
    padding-left: 10px;
}

.side-box ul .log {
    position: absolute;
    bottom: 10px;
}

.fa-search {
    color: white;
}