/* Main Layout */

.xsquare-wrapper{
    display:flex;
    gap:30px;
    margin-top:20px;
    align-items:flex-start;
}


/* Sidebar */

.xsquare-sidebar{
    width:280px;
    flex-shrink:0;

    padding:25px;
    border-radius:12px;
    border:1px solid #e5e5e5;

    box-sizing:border-box;
}


.xsquare-sidebar h3{
    color:#000;
    font-size:16px;
    font-weight:600;

    margin-bottom:15px;
    margin-top:25px;
}

.xsquare-sidebar h3:first-child{
    margin-top:0;
}


.xsquare-sidebar label{
    color:#333;
    font-size:14px;
    display:block;
    margin-bottom:15px;
    cursor:pointer;
}

.xsquare-sidebar input[type="radio"]{
    margin-right:8px;
}


.xsquare-sidebar input[type="number"]{
    width:100%;
    padding:12px;

    border:1px solid #ddd;
    border-radius:8px;

    color:#333;
    background:#fff;

    box-sizing:border-box;
}


/* Button */

#xsquare-filter-btn{

    width:100%;

    background:#17305B;
    color:#fff;

    border:none;
    border-radius:8px;

    padding:14px;

    margin-top:20px;

    cursor:pointer;

    font-size:14px;
    font-weight:600;

    transition:.3s;
}

#xsquare-filter-btn:hover{
    opacity:.9;
}

#xsquare-clear-btn{

width:100%;

background:#fff;
color:#333;

border:1px solid #ddd;

padding:14px;

border-radius:8px;

margin-top:10px;

cursor:pointer;

font-size:14px;
font-weight:600;

transition:.3s;
}

#xsquare-clear-btn:hover{

background:#f5f5f5;

}
/* Products area */

#xsquare-products{
    flex:1;
    width:auto;
    min-width:0;
}


/* Product Grid */

#xsquare-products ul.products{

    display:grid !important;

    grid-template-columns:
    repeat(4,minmax(0,1fr)) !important;

    gap:25px !important;

    margin:0 !important;
    padding:0 !important;

    list-style:none !important;

}


/* Kill WooCommerce floats */

#xsquare-products ul.products li.product,
#xsquare-products ul.products li.product.first,
#xsquare-products ul.products li.product.last{

    float:none !important;
    clear:none !important;

    width:auto !important;

    margin:0 !important;
    margin-left:0 !important;
    margin-right:0 !important;

    padding:15px;

    border:1px solid #eee;
    border-radius:12px;

    background:#fff;

    box-sizing:border-box;

    transition:.3s;
}


/* Remove WooCommerce clearfix */

#xsquare-products ul.products:before,
#xsquare-products ul.products:after,
#xsquare-products ul.products li.product:before,
#xsquare-products ul.products li.product:after{

    display:none !important;
    content:none !important;
}


/* Hover */

#xsquare-products li.product:hover{
    transform:translateY(-4px);
}


/* Images */

#xsquare-products li.product img{
    width:100% !important;
    height:auto !important;
}


/* Title */

#xsquare-products .woocommerce-loop-product__title{

    color:#000 !important;
    font-size:15px !important;
    font-weight:600 !important;
}


/* Price */

#xsquare-products .price{

    color:#333 !important;
    font-size:16px !important;
    font-weight:500;
}


/* Button */

#xsquare-products .button{

    width:100%;

    background:#17305B !important;
    color:#fff !important;

    border:none !important;
    border-radius:8px !important;

    padding:12px !important;

    text-align:center;
}


/* Loading Skeleton */

.loading-products{

    display:grid !important;

    grid-template-columns:
    repeat(4,minmax(0,1fr));

    gap:25px;

    margin:0;
    padding:0;

    list-style:none;
}

.skeleton-card{

    min-height:360px;

    padding:15px;

    border:1px solid #eee;
    border-radius:12px;

    background:#fff;

    box-sizing:border-box;
}


.skeleton-image{

    width:100%;
    height:220px;

    border-radius:8px;

    background:#eee;

    margin-bottom:15px;

    animation:pulse 1.5s infinite;
}

.skeleton-title{

    width:80%;
    height:20px;

    margin-bottom:10px;

    border-radius:4px;

    background:#eee;

    animation:pulse 1.5s infinite;
}

.skeleton-price{

    width:50%;
    height:20px;

    margin-bottom:15px;

    border-radius:4px;

    background:#eee;

    animation:pulse 1.5s infinite;
}

.skeleton-button{

    width:100%;
    height:40px;

    border-radius:8px;

    background:#eee;

    animation:pulse 1.5s infinite;
}


@keyframes pulse{

0%{
opacity:.5;
}

50%{
opacity:1;
}

100%{
opacity:.5;
}

}


/* Mobile */

@media(max-width:768px){

.xsquare-wrapper{
    flex-direction:column;
}

.xsquare-sidebar{
    width:100%;
}

#xsquare-products{
    width:100%;
}

#xsquare-products ul.products,
.loading-products{

    grid-template-columns:
    repeat(2,minmax(0,1fr)) !important;

    gap:15px !important;
}

}
/* Product image wrapper */

.product-image{
    position:relative;
}

/* Badge */

.xsquare-badge{

    position:absolute;

    top:10px;
    left:10px;

    z-index:10;

    padding:6px 12px;

    border-radius:50px;

    font-size:12px;
    font-weight:700;

    color:#fff;
}


/* Out of stock */

.out-stock{
    background:#e53935;
}


/* Sale */

.sale-badge{
    background:#2e7d32;
}