  /* Sidebar */
    .sidebar {
      flex: 1 1 250px;
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      min-width: 250px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      overflow-y: auto;
      border: 1px solid #c8a882;
    }

    .sidebar h2 {
      font-size: 18px;
      margin-bottom: 15px;
    }

    .filter-group {
      margin-bottom: 20px;
      width: 50%;
      padding: 0 10px;
    }

    .filter-group h3 {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .brands label {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      cursor: pointer;
    }

    /* Price Range */
    .price-range {
      width: 100%;
    }

    .price-values {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin-top: 5px;
    }

    .clear-btn {
      display: inline-block;
      padding: 5px 10px;
      background: #e74c3c;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      /* width: 45%; */
    }
    .search-btn {
      background: #b8976f;
    }

    /* Main Content */
    .main {
      flex: 3 1 700px;
      display: flex;
      flex-direction: column;
    }

    .controls {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 15px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .controls select {
      padding: 5px 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
      cursor: pointer;
    }

    .filter-group select, .filter-group input[type="text"] {
      padding: 5px 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
      cursor: pointer;
      width: -webkit-fill-available;
    }

    #priceValue{
        font-weight: bold;
        font-size: 16px;
    }

    .btn-group{
        align-content: center; 
    }

    /* Responsive */
@media (max-width: 760px) {
    .filter-group{
        width: 100% !important;
    }
    .sidebar{
        display:block !important;
    }
}


