.sajawat-shop-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:40px;
    align-items:start;
    margin-top:40px;
}

.sajawat-filters-wrapper{
    position:sticky;
    top:120px;
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

/* FILTER TITLES */

.sajawat-filters-wrapper h3{
    font-size:22px;
    margin:0;
}

/* SEARCH + PRICE INPUTS */

.sajawat-filters-wrapper input[type="text"],
.sajawat-filters-wrapper input[type="number"]{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:15px;
    font-size:15px;
    transition:0.3s ease;
}

.sajawat-filters-wrapper input:focus{
    border-color:#c89b5d;
    outline:none;
}

/* FILTER HEADER */

.sajawat-filter-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    margin-top:25px;
    margin-bottom:18px;
}

.sajawat-toggle{
    font-size:22px;
    transition:0.3s ease;
}

.sajawat-toggle.rotate{
    transform:rotate(180deg);
}

/* COLOR LIST */

.sajawat-color-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    max-height:500px;
    overflow:hidden;
    transition:0.4s ease;
}

.sajawat-color-list.closed{
    max-height:0;
    overflow:hidden;
}

/* COLOR ITEM */

.sajawat-color-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s ease;
    background:#fff;
}

.sajawat-color-item:hover{
    border-color:#c89b5d;
    background:#faf5ed;
}

.sajawat-color-item input{
    width:16px;
    height:16px;
}

/* PRODUCT GRID */

#sajawat-products ul.products{
    display:grid !important;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* PRODUCT CARD */

#sajawat-products ul.products li.product{
    width:100% !important;
    margin:0 !important;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    transition:0.35s ease;
}

#sajawat-products ul.products li.product:hover{
    transform:translateY(-6px);
}

/* PRODUCT IMAGE */

#sajawat-products ul.products li.product img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:18px;
    transition:0.5s ease;
}

#sajawat-products ul.products li.product:hover img{
    transform:scale(1.05);
}

/* PRODUCT TITLE */

#sajawat-products ul.products li.product h2{
    font-size:17px !important;
    margin-top:16px;
    line-height:1.4;
}

/* PRICE */

.woocommerce ul.products li.product .price{
    font-size:18px;
    font-weight:600;
    color:#c89b5d !important;
}

/* BUTTON */

.woocommerce ul.products li.product .button{
    width:100%;
    border-radius:999px;
    background:#c89b5d !important;
    color:#fff !important;
    padding:14px;
    font-weight:600;
    text-align:center;
    transition:0.3s ease;
}

.woocommerce ul.products li.product .button:hover{
    opacity:0.9;
}

/* RESPONSIVE */

@media(max-width:1024px){

    .sajawat-shop-layout{
        grid-template-columns:1fr;
    }

    .sajawat-filters-wrapper{
        position:relative;
        top:0;
    }

    #sajawat-products ul.products{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    #sajawat-products ul.products{
        grid-template-columns:1fr;
    }

    #sajawat-products ul.products li.product img{
        height:320px;
    }
}
.sajawat-search-box{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

#sajawat-search{
    flex:1;
}

#sajawat-search-btn{
    background:#c89b5d;
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s ease;
}

#sajawat-search-btn:hover{
    opacity:0.9;
}