.input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* position: relative; */
    position: absolute;
    right: 10%;
}

.cart-count {
    position: absolute;
    right: 10%;
    top: 10px;
    font-size: 12px;
    background: black;
    color: white;
    padding: 0px 5px;
    border-radius: 50%;
}

.input {
    border-style: none;
    height: 50px;
    width: 50px;
    padding: 10px;
    outline: none;
    transition: 0.5s ease-in-out;
    padding-right: 40px;
    color: #333333;
    width: 250px;
    padding: 0 10px;
    opacity: 1;
    border-bottom: 1px solid black;
}

.input::placeholder,
.input {
    font-size: 17px;
}

.input::placeholder {
    color: #8f8f8f;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0px;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 50px;
    outline: none;
    border-style: none;
    border-radius: 50%;
    pointer-events: painted;
    background-color: transparent;
    transition: 0.2s linear;
    color: #000;
}




.navbar-links {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.2px);
    -webkit-backdrop-filter: blur(0.2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #E3DECE;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.logo-icon {
    transition: filter 0.5s ease;
}



.nav-link:hover::after {
    width: 100%;

    left: 0;

    transform: translateX(0);

}

.search-mobile {
    position: relative;
}



@media screen and (max-width:1199px) {
    #mobile-responsive {
        width: 100% !important;

    }

    #mobile-responsive-sub {
        justify-content: space-between;
        flex-direction: row-reverse;
    }
}

@media screen and (max-width:480px) {
    .input {
        border-style: none;
        height: 50px;
        width: 50px;
        padding: 10px;
        outline: none;
        transition: 0.5s ease-in-out;
        padding-right: 40px;
        color: #333333;
        width: 180px;
        padding: 0 10px;
        opacity: 1;
        border-bottom: 1px solid black;
    }
}
@media screen and (max-width:425px) {
    .input {
        border-style: none;
        height: 50px;
        width: 50px;
        padding: 10px;
        outline: none;
        transition: 0.5s ease-in-out;
        padding-right: 40px;
        color: #333333;
        width: 165px;
        padding: 0 10px;
        opacity: 1;
        border-bottom: 1px solid black;
    }
}
@media screen and (max-width:375px) {
    .input {
        border-style: none;
        height: 50px;
        width: 50px;
        padding: 10px;
        outline: none;
        transition: 0.5s ease-in-out;
        padding-right: 40px;
        color: #333333;
        width: 100px;
        padding: 0 10px;
        opacity: 1;
        border-bottom: 1px solid black;
    }
}