.popup {
            display: none;
            position: absolute;
            z-index: 1000;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-top: 0.5rem;
            /* width: 16rem; */
        }

        .filter-button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 12rem;
            padding: 0.5rem 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
            cursor: pointer;
        }

        .filter-button:hover {
            background: #f9fafb;
        }

        .filter-option {
            display: block;
            width: 100%;
            text-align: left;
            padding: 0.5rem;
            cursor: pointer;
        }

        .filter-option:hover {
            background: #f3f4f6;
        }

        .chevron-down {
            width: 1rem;
            height: 1rem;
            transition: transform 0.2s;
        }

        .show {
            display: block;
        }

        .active .chevron-down {
            transform: rotate(180deg);
        }


          .popup-container {
            background: white;
            max-width: 900px;
            max-height: 500px;
            margin: 0 auto;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

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

        .reset-button {
            color: #666;
            background: none;
            border: none;
            cursor: pointer;
            text-decoration: underline;
        }

        .popular-makes {
            margin-bottom: 24px;
        }

        .makes-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .make-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 16px;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .make-card:hover {
            border-color: #0066cc;
        }

        .make-logo {
            width: 48px;
            height: 48px;
            margin-bottom: 8px;
        }

        .make-name {
            font-size: 14px;
        }

        .all-makes-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .make-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .make-count {
            color: #666;
            font-size: 14px;
        }

        .car-title {
            font-size: 26px;
        }