/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 26 2026 | 14:46:00 */
/* fixed category page grid *//* Product card reset */
.tax-product_cat #main-content ul.products li.product {
    margin: 0;
    height: auto;
    width: auto !important;
}

/* Grid layout */
.tax-product_cat ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
    width: auto !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .tax-product_cat ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tax-product_cat ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* Product layout */
.tax-product_cat ul.products li.product {
    display: flex;
    flex-direction: column;
    gap: 20px;
    float: none !important; /* important for WooCommerce */
}

/* Anchor fix */
.tax-product_cat ul.products li.product a,
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    display: inline !important;
    height: 100%;
}
.woocommerce ul.products li.product a {
    display: inline !important;
    height: 100%;
    align-items: end;
}
/* Remove clearfix */
.tax-product_cat .products ul::after,
.tax-product_cat .products ul::before,
.tax-product_cat ul.products::after,
.tax-product_cat ul.products::before {
    content: none;
    display: block;
}
/* fixed category page grid */
