.wcpf{display:grid;grid-template-columns:260px 1fr;gap:2rem;margin:1.5rem 0;}
.wcpf__sidebar{border:1px solid #ddd;border-radius:10px;padding:1rem;overflow-y:auto;max-height:80vh;}
.wcpf__heading{font-weight:bold;margin-bottom:.5rem;}
.wcpf__cat-vertical{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.5rem;}
.wcpf__cat-btn{display:block;width:100%;text-align:left;border:0;background:#f9f9f9;padding:.4rem .6rem;border-radius:6px;cursor:pointer;}
.wcpf__cat-btn.is-active{background:#f25a2b;color:#fff;}
.wcpf__cat-products{list-style:disc;margin:.25rem 0 .5rem 1.25rem;}
.wcpf__cat-products a{font-size:13px;color:#333;text-decoration:none;}
.wcpf__cat-products a:hover{text-decoration:underline;}

.wcpf__chips{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1rem;}
.wcpf__chip{border:1px solid #f25a2b;background:#fff;border-radius:999px;padding:.3rem .8rem;cursor:pointer;}
.wcpf__chip.is-active{background:#f25a2b;color:#fff;}

.wcpf__results ul.products{display:grid !important;grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:1rem !important;list-style:none;padding:0;margin:0;}
.wcpf__results li.product{border:1px solid #eee;border-radius:8px;padding:1rem;background:#fff;}
/* === Product Grid Styling === */
.wcpf__results ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 25px !important;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wcpf__results ul.products li.product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.wcpf__results ul.products li.product:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.wcpf__results ul.products li.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.wcpf__results .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
}

.wcpf__results .price {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin: 5px 0 10px;
    color: #e74c3c;
}

/* === Buttons === */
.wcpf-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

/* Learn More button (outline) */
.wcpf-btn-learn {
    border: 2px solid #e74c3c;
    color: #e74c3c;
    background: #fff;
}
.wcpf-btn-learn:hover {
    background: #e74c3c;
    color: #fff;
}

/* Add to Cart button (solid) */
.wcpf-btn-cart {
    background: #e74c3c;
    color: #fff;
    border: 2px solid #e74c3c;
}
.wcpf-btn-cart:hover {
    background: #c0392b;
    border-color: #c0392b;
    color: #fff;
}
