

/* 컨텐츠 스타일 */
.lsp_category_content {
  flex: 1;
  padding: 20px;
}

/* 각 메뉴에 대한 컨텐츠 숨김 */
.lsp_category_content .lsp-category-products {
  display: none;
}

.lsp-category-products.grid1 .loop-products {
    grid-template-columns: repeat(1, 1fr) !important;
}    
.lsp-category-products.grid2 .loop-products {
    grid-template-columns: repeat(2, 2fr) !important;
}   
.lsp-category-products.grid3 .loop-products {
    grid-template-columns: repeat(3, 3fr) !important;
}    
.lsp-category-products.grid4 .loop-products {
    grid-template-columns: repeat(4, 4fr) !important;
}    
.lsp-category-products.grid5 .loop-products {
    grid-template-columns: repeat(5, 5fr) !important;
}    
.lsp-category-products.grid6 .loop-products {
    grid-template-columns: repeat(6, 6fr) !important;
}    

/* 현재 선택된 메뉴에 대한 컨텐츠 표시 */
.lsp_category_content div.active {
  display: block;
}

/* 현재 선택된 메뉴에 대한 컨텐츠 표시 */
.lsp_category_menu ul li a{
  color: #231916;;
}