@media screen and (max-width: 1199px) {
  .product-container {
    flex-wrap: wrap;
  }

  .product-container .col-lg-9 {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .filter {
    background: #fff;
    padding: 16px;
    border-radius: 0px;
    max-width: 100%;
    position: fixed;
    z-index: 1000;
    width: 0px;
    height: 0px;
    top: 0px;
    left: -100px;
    opacity: 0;
    transition: ease all 0.5s;
  }

  .filter.active {
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 1;
  }

  .pagination {
    justify-content: space-between;
    border: none;
    height: auto;
  }

  .btn-filter {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #b1010b;
    color: var(--color-primary);
    font-weight: 700;
  }


  .pagination select.order {
    border-left: none;

  }
}

@media screen and (max-width: 767px) {
  .product-list {
    flex-wrap: wrap;
    justify-content: center;
  }


 
}

@media screen and (max-width: 654px) {
  .product-list{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-card{
    width: auto;
    max-width: 97%;
  }
}


@media screen and (max-width: 444px) {
  .product-list{
    display: grid;
    justify-content: center;
    grid-template-columns: auto;
    gap: 10px;
  }

}