.filter-panel {
        flex: 0 0 280px;
      }

      .content {
        flex: 1;
      }

      .mobile-filter-header {
        display: none;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        padding: 12px 16px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      }

      .mobile-filter-title {
        font-weight: 600;
        font-size: 18px;
      }

      .toggle-filters-btn {
        background: none;
        border: none;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f1f3f4;
        transition: background-color 0.2s;
      }

      .toggle-filters-btn:hover {
        background-color: #e2e8f0;
      }

      .filter-card {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        padding: 20px;
        position: sticky;
        top: 24px;
      }

      .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
      }

      .filter-title {
        font-weight: 600;
        font-size: 18px;
        color: #2d3748;
      }

      .close-btn {
        display: none;
        cursor: pointer;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #f1f3f4;
        align-items: center;
        justify-content: center;
      }

      .filter-section {
        margin-bottom: 24px;
      }

      .section-title {
        font-weight: 600;
        margin-bottom: 12px;
        color: #2d3748;
        font-size: 16px;
      }

      .category-btn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 14px;
        border-radius: 8px;
        border: none;
        background: none;
        cursor: pointer;
        margin-bottom: 6px;
        transition: all 0.2s ease;
        font-size: 14px;
      }

      .category-btn.active {
        background-color: #3b82f6;
        color: white;
      }

      .category-btn:not(.active):hover {
        background-color: #66a1ff;
      }

      .filter-option {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        cursor: pointer;
      }

      .checkbox {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        accent-color: #3b82f6;
        cursor: pointer;
      }

      .star-rating {
        display: flex;
        margin-right: 8px;
      }

      .star {
        color: #fbbf24;
        font-size: 14px;
        margin-right: 2px;
      }

      .filter-label {
        font-size: 14px;
        color: #4b5563;
      }

      .apply-filters {
        width: 100%;
        padding: 12px;
        background-color: #3b82f6;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-top: 10px;
      }

      .apply-filters:hover {
        background-color: #2563eb;
      }

      @media (max-width: 1024px) {
        .container {
          flex-direction: column;
        }

        .filter-panel {
          flex: 0 0 auto;
          margin-bottom: 20px;
          width: 100%;
        }

        .mobile-filter-header {
          display: flex;
        }

        .filter-card {
          display: none;
          position: relative;
          top: 0;
          width: 100%;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          z-index: 100;
        }

        .filter-card.active {
          display: block;
        }

        .close-btn {
          display: flex;
        }

        .mobile-only {
          display: block;
        }

        .desktop-only {
          display: none;
        }
      }