.section-attribute-tags{
    padding-block: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
#attribute-tags-select{
    display: block;
    position: relative;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: .5rem 2rem .5rem .875rem;
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: .25rem;
    background-color: var(--color-white);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><path d="M0 3l5 5 5-5H0z" fill="black"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 10px;
    outline: none !important;
    &:focus-visible{
        border-color: var(--btn-dark-background-color-hover);
    }
}
#attribute-tags-select::-ms-expand{
    display: none;
}
.attribute-tags{
    display: none;
}
@media (min-width: 992px){
    .section-attribute-tags{
        padding-block: 2rem 0;
        align-items: start;
    }
    #attribute-tags-select{
        display: none;
    }
    .attribute-tags{
        display: flex;
        gap: .25rem;
        .attribute-tags-title{
            height: 2rem;
            line-height: 2rem;
            font-size: 14px;
            padding-right: .25rem;
            white-space: nowrap;
        }
    }
    .attribute-tags-list{
        display: flex;
        flex-wrap: wrap;
        gap: .25rem;
        margin: 0;
        padding: 0;
        list-style: none;
        li{
            margin: 0;
            padding-inline: 1rem;
            height: 2rem;
            background-color: var(--color-gray-200);
            border: 1px solid var(--color-gray-300);
            font-size: 12px;
            line-height: 2rem;
            white-space: nowrap;
            color: var(--color-black);
            cursor: pointer;
            transition: all .2s ease;
            &:hover{
                color: var(--color-gray-600);
                background-color: var(--color-gray-300);
                border-color: var(--color-gray-300);
            }
            &.active{
                color: var(--color-white);
                background-color: var(--color-black);
                border-color: var(--color-black);
            }
        }
    }
}
.btn-reset-filter{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
    height: 2rem;
    line-height: 2rem;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-black);
    transition: color .2s ease;
    &:hover{
        color: var(--color-gray-600);
    }
}
.grid-list{
    list-style: none;
    margin: 1rem -15px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    > li{
        margin: 0;
        padding: 15px;
        flex-basis: 100%;
        width: 100%;
    }
    @media (min-width: 576px){
        margin: 2.5rem -15px;
        > li{
            flex-basis: 50%;
            width: 50%;
        }
    }
    @media (min-width: 992px){
        > li{
            flex-basis: 33.333%;
            width: 33.333%;
        }
    }
    a{
        display: block;
    }
    img{
        display: block;
        width: 100%;
        max-width: 100%;
        transition: filter .2s ease;
    }
    a:hover img{
        filter: brightness(.9);
    }
    .title{
        display: block;
        margin-top: 1rem;
        font-size: 1rem;
        line-height: 1.25rem;
        strong{
            font-weight: var(--fw-semibold);
        }
    }
    .category-list .title{
        text-align: center;
        text-transform: uppercase;
    }
}
