.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;
}

.vv-filter-btn {
    appearance: none;
    border: 1px solid #11B1BD;
    border-radius: 0;
    background: transparent;
    color: #11B1BD;
    padding: 11px 22px;
    min-height: 44px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 50px;
}

.vv-product-filter .vv-filter-btn.active {
          background: #11B1BD;
    border-color: #11B1BD;
    color: #ffffff;
  }
.vv-product-filter .vv-filter-btn:hover {
        background: #11B1BD;
    border-color: #11B1BD;
    color: #ffffff;
 }

.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;
    }

}

.products-card .trx-addons-woo-products-product-thumbnail img {
    width: 100%;
    border-radius: 20px;
    display: block;
	background: #11B1BD24;
}
.products-card .custom-product-ctas {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    width: 100%;
}
.products-card .custom-product-ctas .button {
    flex: 1;
    width: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.2;
    margin: 0;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
}

.products-card .learn-more-btn {
    background: transparent !important;
    border: 1px solid #11B1BD !important;
    color: #11B1BD !important;
}

.products-card .learn-more-btn:hover {
    background: #11B1BD !important;
    border-color: #11B1BD !important;
    color: #fff !important;
}

.products-card .get-started-btn {
    background: #11B1BD !important;
    border: 1px solid #11B1BD !important;
    color: #fff !important;
}
.products-card .get-started-btn:hover {
    background: transparent !important;
    border-color: #11B1BD !important;
    color: #11B1BD !important;
}
@media (max-width: 767px) {

    .products-card .custom-product-ctas {
        gap: 6px;
    }

    .products-card .custom-product-ctas .button {
        padding: 8px;
        font-size: 11px;
    }
}
@media (max-width: 380px) {

    .products-card .custom-product-ctas {
        gap: 4px;
    }

    .products-card .custom-product-ctas .button {
        padding: 7px 5px;
        font-size: 10px;
    }
}
/* hide the theme AJAX search dropdown on the products-page search (see product-filter.js) */
.pf-no-ajax .search_results{display:none !important}
.vv-product-filter-empty{text-align:center;padding:32px 0;opacity:.75}

/* --- Category archive (ShopEngine) CTA buttons ---------------------------------
   Archive cards render .custom-product-ctas WITHOUT the .products-card wrapper the
   rules above are scoped to, so the buttons came out unstyled. Scoped to the archive
   so the /peptides/ grid keeps its own sizing. */
.shopengine-archive-products .custom-product-ctas{
    display:flex !important;
    align-items:center !important;
    gap:8px;
    flex-wrap:wrap;
    margin-top:14px;
    visibility:visible !important;
    opacity:1 !important;
    height:auto !important;
}
.shopengine-archive-products .custom-product-ctas a.button.learn-more-btn,
.shopengine-archive-products .custom-product-ctas a.button.get-started-btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    border-radius:50px !important;
    padding:11px 24px !important;
    font-weight:600 !important;
    transition:background .3s ease,color .3s ease,border-color .3s ease !important;
}
.shopengine-archive-products .custom-product-ctas a.button.learn-more-btn{
    background:transparent !important;
    border:1px solid #11B1BD !important;
    color:#11B1BD !important;
}
.shopengine-archive-products .custom-product-ctas a.button.learn-more-btn:hover{
    background:#11B1BD !important;
    border-color:#11B1BD !important;
    color:#fff !important;
}
.shopengine-archive-products .custom-product-ctas a.button.get-started-btn{
    background:#11B1BD !important;
    border:1px solid #11B1BD !important;
    color:#fff !important;
}
.shopengine-archive-products .custom-product-ctas a.button.get-started-btn:hover{
    background:transparent !important;
    border-color:#11B1BD !important;
    color:#11B1BD !important;
}
