        .sidebar img {
    display: none;
}
.sidebar {
        background: #f9f9f9;
    border: 1px solid #aaa;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    display: block;
    margin-bottom: 1em;
    height: fit-content;
    padding: 10px 20px 10px 10px;
    position: relative;
    width: auto;
}
.sidebar .bp_category_option li h3 {
    color: #121212;
}
.sidebar > p {
    color: gray;
}
.product-list .bp_category_option {
  display: grid;
  gap: 20px;
}
.product-list .bp_category_option_item img {
    border: 1px solid #ccc;
}
.product-list .bp_name_category_option {
    background-color: rgb(8, 171, 200);
    padding: 10px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    min-height: 55px;
}
@media (min-width: 992px) {
  .product-list .bp_category_option {
    grid-template-columns: repeat(4, 1fr); 
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-list .bp_category_option {
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .product-list .bp_category_option {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 575px) {
  .product-list .bp_category_option {
    grid-template-columns: repeat(2, 1fr); 
  }
}

