.container-navbar{
    padding-top:1em;
    height: 4em;
    background: #fdbcbc;
    transition:500ms;
    position: fixed;
    width:100%;
    margin-bottom: 10em;
    z-index: 1999;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(0, 0, 0,.2);
}


.section-barre-recherche{
    display: flex;
    justify-content: center
}
.barre-recherche{
    padding: 0.2em;
    min-width: fit-content;
    background-color: #f5f5f7;
    border-radius: 0.2em;
    width: 80%;
    display: flex;
    justify-content: flex-end;
    height: fit-content;
}
.barre-recherche input, .barre-recherche button{
    border: none;
    background: none;
    font-weight: bold;
    color: #999999;
}
.barre-recherche input{
    width: 100%;
}
.barre-recherche input:focus-visible{
    outline: none;
}

.section-compte {
    padding-right: 1em;
    display: flex;
    justify-content: flex-end;
}

.section-compte svg{
    width: 2em;
    margin: 0.2em;
    transition-duration: 100ms;
}
.section-compte svg:hover{
    transform: scale(1.1);
    transition-duration: 200ms;
}


.panier-icone {
    position: relative;
    display: inline-block;
}

.badge-panier {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #eb5a5f;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}




#margenavbar{
    height:4em;
    transition:500ms;
}


.btn {
    padding: 0.6em 1.2em;
    border: none;
    background: #ffffff;
    color: black;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}
.btn:hover{
    color: rgb(255, 79, 79);
}



@media (max-width: 991px) {
    .container-navbar{
        height: 7em;
    }
    
    #margenavbar{
        height: 7em;
        transition:500ms;
    }
    .section-compte{
        margin-top: 0.5em;
    }
}
