/*
Theme Name: Welcart Basic Child
Template: welcart_basic
*/

.top-2col-wrap{
  display:flex;
  gap:30px;
}

.top-sidebar{
  width:25%;
}

.top-products{
  width:75%;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr); /* 3×3の場合 */
  gap:20px;
}

/* 4×4にしたい場合はここを4に変更 */
/* grid-template-columns:repeat(4, 1fr); */

.product-item img{
  width:100%;
  height:auto;
  display:block;
}

.product-title{
  text-align:center;
  margin-top:8px;
  font-size:14px;
}

@media (max-width:768px){
  .top-2col-wrap{
    flex-direction:column;
  }
  .top-sidebar,
  .top-products{
    width:100%;
  }
  .product-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}