.elementor-411 .elementor-element.elementor-element-08e4bad{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-42f9c4c */.jacobs-shop{
    display:flex;
    gap:40px;
    align-items:flex-start;
    max-width:1400px;
    margin:auto;
    padding:60px 20px;
}

/* SIDEBAR */

.shop-sidebar{
    width:30%;
    position:sticky;
    top:100px;
    align-self:flex-start;
}

.filter-box{
    background:#fff;
    padding:25px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:1px solid rgba(0,0,0,.05);
    max-height:calc(100vh - 140px);
    overflow-y:auto;
}

.filter-box h3{
    font-size:18px;
    color:#254F22;
    margin:0 0 15px;
}

.filter-box h3:not(:first-child){
    margin-top:25px;
}

#productSearch{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    margin-bottom:15px;
    box-sizing:border-box;
}

/* BUTTONS */

.filter-btn{
    width:100%;
    text-align:left;
    padding:12px 15px;
    border:none;
    color:white;
    background:#254F22;
    margin-bottom:8px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
    background:#EEDCC1;
    color:black;
}

.filter-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.tag-btn{
    border:none;
    background:#F8F5EF;
    color:black;
    padding:10px 14px;
    border-radius:30px;
    cursor:pointer;
    transition:.3s;
}

.tag-btn:hover,
.tag-btn.active{
    background:#254F22;
    color:#fff;
}

/* PRODUCTS */

.shop-products{
    width:70%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.product-card{
    position:relative;
    overflow:hidden;
    background:rgba(238,220,193,.35);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.4);
    border-radius:24px;
    box-shadow:0 15px 35px rgba(37,79,34,.08);
    transition:.35s ease;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-badge{
    position:absolute;
    top:12px;
    left:12px;
    z-index:5;
    background:#254F22;
    color:#fff;
    padding:6px 12px;
    border-radius:50px;
    font-size:11px;
}

.product-image{
    height:240px;
    background:#fff;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-content{
    padding:15px;
    text-align:center;
}

.product-content h3{
    font-size:18px;
    color:#254F22;
    margin:0 0 12px;
}

.buy-btn{
    display:block;
    width:100%;
    background:#254F22;
    color:#fff !important;
    text-decoration:none;
    padding:12px;
    border-radius:12px;
    transition:.3s;
    box-sizing:border-box;
}

.buy-btn:hover{
    background:#000;
}

/* RESPONSIVE */

@media(max-width:1024px){

    .jacobs-shop{
        flex-direction:column;
    }

    .shop-sidebar,
    .shop-products{
        width:100%;
    }

    .shop-products{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .shop-products{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .product-image{
        height:160px;
    }

}/* End custom CSS */