/**
* Theme Name: Axtra Child
* Description: This is a child theme of Axtra
* Author: Crowdyflow
* Template: axtra
* Version: 3.0.6
*/

/* ==============================
   WOODIANS SHOP LAYOUT
============================== */

.woodians-shop-wrapper{
    display:flex;
    gap:40px;
    max-width:1400px;
    margin:60px auto;
    padding:0 20px;
}

.woodians-sidebar{
    width:280px;
    flex-shrink:0;
}

.woodians-products{
    flex:1;
}

@media(max-width:991px){

.woodians-shop-wrapper{
display:block;
}

.woodians-sidebar{
width:100%;
margin-bottom:30px;
}

}

/* ======================================
   PRODUCT GRID (PASTE BELOW THIS LINE)
====================================== */

.woocommerce ul.products{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
margin:0;
padding:0;
}

/* ...rest of the CSS... */