#banner {
    height: 325px;
}

.glide-produtos-item {
    height: 325px; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}

#banner .glide__slides {
    display: flex;
}

.banner-title {
    font-size: 40px;
    color: var(--green-primary);
    max-width: 230px;
}

#banner, #busca {
    position: relative;
    z-index: 2;
}

#busca {
    background-color: #F7F7F7;
}

.busca-inputs {
    justify-content: space-between;
    position: relative;
    bottom: 28px;
}

.busca-inputs input {
     flex-basis: 100%;
    border-radius: 5px;
}

.busca-inputs select[name="categoria"] {
    flex-basis: 393px;
    background-color: var(--white);
    border-radius: 5px;
}

.busca-inputs .btn-default {
    position: absolute;
    right: 0;
    height: 57px;

    width: 158px;
    font-size: 20px;
    line-height: 24px;
    border-radius: 5px;
}

#destaques {
    background-color: #F7F7F7;
    position: relative;
    z-index: 1;
}

.destaques-container {
    padding: 30px 0 100px 0;
}

.destaques-title {
    margin-bottom: 56px;
}

.destaques-title h3 {
    color: var(--green-primary);
    margin-bottom: 8px;
}

.destaques-title-line {
    height: 7px;
    border-radius: 5px;
    background-color: var(--orange-hover);
    width: 100px;
}

.destaques-list {
    justify-content: space-between;
}

#listagem {
    padding: 100px 0;
}

.listagem-categorias {
    margin-right: 32px;
}

.listagem-produtos {
    flex-grow: 1;
}

.listagem-categorias-title {
    margin-bottom: 32px;
}

.listagem-categorias-title h3 {
    color: var(--green-primary);
    margin-bottom: 4px;
}

.listagem-categorias-title-line {
    width: 100px;
    height: 5px;
    background-color: var(--orange-hover);
    border-radius: 5px;
}

.listagem-categorias-items {
    background-color: var(--white);
    border: 1px solid #E5EBE8;
    box-shadow: -8px 8px 32px rgba(39, 56, 45, 0.05);
    border-radius: 10px;

    width: 269px;
}

.listagem-categorias-items .toggle{
    transform: scaleY(1);
}
.listagem-categorias-items .toggle.active{
    transform: scaleY(-1);
}
.listagem-categorias-items,
.categoria-level-1,
.categoria-level-2,
.categoria-level-3
{
    transition: ease all 0.5s;
    overflow:hidden;
}
.listagem-categorias-items .title{
    z-index: 10;   
}

.categoria-level-1.title, .categoria-level-2.title, .categoria-level-3.title {
    display: flex;
    justify-content: space-between;
}

.categoria-level-1 .toggle:hover, .categoria-level-2 .toggle:hover, .categoria-level-3 .toggle:hover {
    cursor: pointer;
}

.categoria-level-1.title {
    padding: 24px;
}

.categoria-level-2 {
    background-color: #FBFBFB;
}

.categoria-level-2.title, .categoria-level-3.title {
    padding: 24px 0;
    margin: 0 24px 0 30px;
    border-bottom: 1px solid #E6E6E6;
}

.categoria-level-3.title {
    margin: 0 24px 0 40px;
}

.categoria-level-3 {
    background-color: #F5F5F5;
}

.categoria-level-1.title
{
    background-color: #FFF;
    z-index: 9;
}
.categoria-level-2 .title
{
    z-index: 8;
}
.categoria-level-3 .title
{
    z-index: 7;
}

.listagem-produtos-head {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.listagem-produtos-sort-title, .listagem-produtos-pages-title{
    margin-right: 16px;
}

.listagem-produtos-sort select, .listagem-produtos-pages select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    background-image: url("../../../images/svgs/select-arrow-2.svg");
    background-repeat: no-repeat;
    background-position-x: 87%;
    background-position-y: 50%;

    border: 1px solid #B1B9B5;
    border-radius: 2px;
    box-sizing: border-box;

    padding: 6px 16px;
}

.listagem-produtos-sort select {
    width: 158px;
}

.listagem-produtos-pages select {
    width: 66px;
}

.paginacao-buttons-item {
    color: var(--gray-medium);
    padding: 7px 16px;
    border: 1px solid var(--gray-medium);
    border-radius: 2px;
    background-color: transparent;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.paginacao-buttons-item.active{
    color: var(--green-primary);
    border: 1px solid var(--green-primary);
}


.listagem-produtos-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 52px;
}

.listagem-produtos-complete .listagem-produtos-main {
    grid-template-columns: repeat(4, 1fr);
}

.listagem-produtos-foot {
    justify-content: space-between;
    align-items: center;
}
.listagem-categorias-items span{
    transition: 0.3s padding ease;
    cursor: pointer;
}
.listagem-categorias-items div.active span{
    font-weight: bold;
    color: var(--green-primary);
    padding-left: 5px;
    transition: 0.3s padding ease;
    border-left: 2px solid #5EA881;
}

#main #filters-mobile {
    z-index: 3;
    position: fixed;
    top: 0;
    width: 95%;
}

#filters-mobile .listagem-categorias-items {
    border: none;
    top: 0;
    box-shadow: none;
}