
/*cabeçalho e categoria */
#header {
    background-color: #0077b5;

    #desktop-menu-header {
        height: 45px;
        background: transparent;
    }
}

.desktop-header {
    display: flex;
    align-items: center;
    gap: 25px;
}
.nav-cart {
    .iconcart svg {
        width: 28px;
        height: 28px;
    }

    .desktop-header-action-link {
        position: relative;
    }
}

.items-cart {
    background-color: #f7941d;
    color: rgb(250, 250, 250);
    width: 20px;
    height: 18px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -10px;
}

.desktop-header-logo img {
    max-width: 196px;
    display: block;
}


/* barra de buscar*/
.desktop-header-search {
    flex-grow: 1;
}

.form-search-header {
    display: flex;
    width: 100%;

    .form-search-header-input {
        width: 100%;
        height: 45px;
        border: none;
        padding: 10px 15px;
        outline: none;
        color: #333;
        box-sizing: border-box;
        font-size: 14px;
    }

    .form-search-header-button {
        background-color: #f7941d;
        border: none;
        width: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;

        .iconsearch svg {
            fill: white;
            height: 20px;
            width: 20px;
        }
    }
}

.desktop-header-actions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.desktop-header-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 470;
    white-space: nowrap;
    text-decoration: none;
    color: white;

    &.btn-header {
        background-color: white;
        color: #333;
        height: 39px;
        padding: 0 20px;
    }

    .fav-icon svg {
        height: 24px;
        width: 24px;
    }
}                          
.desktop-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 15px;
    padding-bottom: 6px;
    width: 100%;
}

.desktop-menu-location {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;

    a {
        color: white;
        text-decoration: none;
        font-weight: bold;
    }
}

.desktop-menu-nav {
    flex-grow: 1;

    ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 25px;
        flex-wrap: nowrap;
    }
}

.desktop-menu-zipcode {
        background-color: white;
        padding: 5px;
        margin: 0px -14px -1px 0px;
    }
    button {
        background-color: transparent;
        color: rgb(99, 9, 9);
        span{
            font-size: 13px;
            font-weight: 490;

        }
        padding: 8px 17px;
        border: 1px solid white;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;

        &::before {
            font-size: 16px;
        }
    }


.icontest svg {
    height: 17px;
    width:17px;
    stroke: #FFF;

}



#desktop-menu-header > ul > li > a {
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    
}

#desktop-menu-header > ul > li > a.categorias {
  color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;

}
li.categorias {
 display: flex;
    align-items: center;
    gap: 8px;
    background-color: #0077b5; 
    padding: 0 15px;           
    height: 38px;              
    border-radius: 4px;    
}


.header-user-container {
    position: relative; /
}

.header-user-container .dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%; 
    right: 0; 
    z-index: 1000;

}

.header-user-container .dropdown-menu.active {
    display: block; 
}