.headerContainer{
   background-color:white;
    height: 70px;
    min-width: 1276px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:fixed;
    top: 0;
    z-index: 2;
    padding: 0 40px 0 20px;
}
.navbar{
    display: flex;
    /* justify-content:space-evenly; */
    justify-content: flex-end;
    gap:30px;
    align-items: center;
    width: 50%;
    
}
.cart{
    position: relative;
    color: black;
    cursor: pointer;
}
/* .navbarList{
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
} */
.headerSearchContainer{
    position: relative;
}
.headerSearch{
    width: 350px;
    padding: 12px;
    outline: none;
    background-color: rgb(200, 200, 196);
    border: none;
    border-radius: 1px;
    height: 40px;
}
.headerNavigation{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.headernav{
    color: black;
}

.fa-search{
    position: absolute;
    top: 12px;
    right: 10px;
    cursor: pointer;
}
.headerSection{
    display: flex;
    align-items: center;
    gap: 25px;
}


.cart_notification{
    position: absolute; 
    background-color: rgb(207, 207, 181);
    height: 15px;
    width: 17px;
    text-align: center;
    border-radius: 15px;
    bottom: 16px;
    left: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
}

.cart__bounce {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%   { transform: scale(1);   }
    50%  { transform: scale(1.6); }
    100% { transform: scale(1);   }
}