
    /* Sidebar Filter Panel */
    #filterSidebar {
        width: 260px;
        height: 100%;
        background: #fff;
        position: fixed;
        top: 0;
        left: -260px;
        z-index: 9999;
        transition: 0.3s;
        padding: 20px;
        border-right: 1px solid #ddd;
    }
    #filterSidebar.active {
        left: 0;
    }
    /* Product Grid */
    .product-card {
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 10px;
        background: #fff;
        transition: 0.3s;
    }
    .product-card:hover {
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    .product-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 6px;
    }

    button.orderCloseBtn {
    background: none;
    border: none;
    font-size: 39px;
    position: absolute;
    top: 0;
    cursor: pointer;
    right: 12px;
  }

  ul#companyFilter li {
      list-style: none;
      padding: 5px 0 5px 15px;
      cursor: pointer;
      margin-bottom: 7px;
      transition: all;
  }
  ul#companyFilter {
      margin: 0;
      padding: 0;
  }
  ul#companyFilter li:hover {
      background: #f2f3fa;
      transform: .5s;
  }

  ul#categoryFilter li {
      list-style: none;
      padding: 5px 0 5px 15px;
      cursor: pointer;
      margin-bottom: 7px;
      transition: all;
  }
  ul#categoryFilter {
      margin: 0;
      padding: 0;
  }
  ul#categoryFilter li:hover {
      background: #f2f3fa;
      transform: .5s;
  }

/* Preloader */
#preloader {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #3498db;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Filter Sidebar Active */
#filterSidebar { transition: 0.3s; left: -260px; }
#filterSidebar.active { left: 0; }

a.cart_ankor {
    font-size: 30px;
    color: #333;
}

.cart_section {
    position: relative;
    text-align: center;
}

.cart_count {
    position: absolute;
}
.filter-item {
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.filter-item.active {
    background: #007bff;
    color: #fff;
    font-weight: bold;
}
