.vv-product-filter-wrapper {
    width: 100%;
    margin-bottom: 35px;
}

.vv-product-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
        border-radius: 10px;

}

.vv-filter-btn {
    appearance: none;
    border: 1px solid #222;
    border-radius: 0;
    background: transparent;
    color: #222;
    padding: 11px 22px;
    min-height: 44px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
      border-color: #ffffff;
    color: #ffffff;
    border-radius: 10px;
}

.vv-product-filter .vv-filter-btn.active {
       background: #ffffff;
    border-color: #ffffff;
    color: #000000;
  }
.vv-product-filter .vv-filter-btn:hover {
      background: #ffffff;
    border-color: #ffffff;
    color: #000000;
 }

.trx-addons-woo-products li.product.vv-filter-hidden {
    display: none !important;
}

.trx-addons-woo-products li.product.vv-filter-visible {
    display: block !important;
    animation: vvProductFadeIn .35s ease both;
}

@keyframes vvProductFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vv-product-filter-empty {
    width: 100%;
    padding: 30px 15px;
    text-align: center;
}

@media (max-width: 767px) {

    .vv-product-filter-wrapper {
        width: 100%;
        margin-bottom: 25px;
    }

    .vv-product-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px 8px;
        width: 100%;
        overflow: visible;
        padding: 0 8px;
    }

    .vv-product-filter .vv-filter-btn {
        flex: 0 0 auto;
        width: auto;
        min-height: 40px;
        padding: 9px 20px;

        border-radius: 30px;

        font-size: 14px;
        line-height: 1.2;
        white-space: nowrap;

        box-sizing: border-box;
    }


}