.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.navLogo {
    width: fit-content;
    height: fit-content;
}

.navLogo>img {
    width: 100px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.15));
}

.navLinks {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navLinks>ul {
    display: flex;
    align-items: center;
    gap: 27px;
    list-style: none;
}


.navLinks>ul>li>a {
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: black;
    text-decoration: none;
}

.navAccButtons {
    display: flex;
    align-items: center;
    gap: 23px;
}

.navAccButtons>button, .navAccButtons>a {
    height: 100%;
    width: auto;
    border: none;
    justify-content: center;
    align-items: center;
    border-radius: var(--borderRadiusInside1);
    cursor: pointer;
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-decoration: none;
}

.navSearchButton,
.navAccountButton {
    padding: 10px 0;
    background-color: transparent;
    color: black;
    display: flex;
}

.navSearchButton>svg,
.navAccountButton>svg {
    width: 27px;
    height: 27px;
    display: block;
    stroke-width: 1.5;
}

.navCartButton,
.navMenuButton {
    padding: 10px 15px;
    background-color: var(--primClr1);
    color: white;
    display: flex;
}

.navCartButton>svg {
    width: 23px;
    height: 23px;
    display: block;
    stroke-width: 1.5;
}

.navMenuButton>svg {
    width: 23px;
    height: 23px;
    display: block;
    stroke-width: 0.5;
}

.navMenuButton {
    display: none;
}

@media only screen and (max-width: 992px) {
    .navLinks {
        display: none;
    }

    .navMenuButton {
        display: flex;
        margin-left: -15px;
    }
}

@media only screen and (max-width: 576px) {
    .navbar {
        width: 95%;
        padding: 17px 0;
    }

    .navLogo>img {
        width: 80px;
    }

    .navAccButtons{
        gap: 9px;
    }

    .navAccButtons>.navCartButton {
        padding: 0 13px;
        font-size: 13px;
        height: 35px;
    }

    .navCartButton>svg {
        width: 19px;
        height: 19px;
        display: block;
        stroke-width: 1.5;
    }

    .navSearchButton>svg,
    .navAccountButton>svg {
        width: 23px;
        height: 23px;
    }

    .navAccButtons>.navMenuButton {
        margin-left: 0px;
        padding: 0 7px;
        height: 35px;
    }
}