File size: 7,264 Bytes
5501681
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Filter UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif; color: #223522; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
  }

  /* Status bar */
  .status-bar {
    height: 110px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #3c3c3c;
    font-size: 38px;
  }
  .status-icons { display: flex; gap: 28px; align-items: center; }

  /* App bar */
  .app-bar {
    height: 150px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    background: #fff;
  }
  .app-title {
    font-size: 56px;
    font-weight: 600;
    margin-left: 24px;
    color: #263C24;
  }
  .back-icon { width: 56px; height: 56px; }

  /* Content */
  .content {
    padding: 36px 48px 0 48px;
  }
  .link-row {
    font-size: 42px;
    color: #2E4A2A;
    font-weight: 600;
    margin: 12px 0 36px;
  }
  .divider {
    height: 2px;
    background: #E5E5E5;
    margin: 0 0 36px 0;
  }
  .section-title {
    font-size: 58px;
    font-weight: 700;
    color: #224222;
    margin: 20px 0 12px;
  }
  .option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
  }
  .option-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 46px;
    color: #243A24;
  }
  .info-icon { width: 40px; height: 40px; }
  .checkbox {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    border: 3px solid #C9C9C2;
    background: #fff;
  }
  .checkbox.checked {
    background: #204A17;
    border-color: #204A17;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .checkmark { width: 44px; height: 44px; }

  /* Range rows */
  .range-title {
    font-size: 58px;
    font-weight: 700;
    color: #224222;
    margin-top: 30px;
  }
  .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 40px;
    color: #2F3D2F;
    margin-top: 10px;
  }
  .slider {
    position: relative;
    height: 56px;
    margin: 20px 0 36px;
  }
  .track {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 10px;
    background: #234615;
    border-radius: 8px;
  }
  .thumb {
    position: absolute;
    top: 8px;
    width: 56px;
    height: 56px;
    background: #fff;
    border: 2px solid #CFCFCF;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  .thumb.left { left: -2px; }
  .thumb.right { right: -2px; }

  /* Bottom sheet */
  .bottom-sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 120px;
    height: 300px;
    background: #fff;
    box-shadow: 0 -10px 22px rgba(0,0,0,0.18);
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .clear-link {
    font-size: 46px;
    color: #2E4A2A;
    text-decoration: underline;
    font-weight: 600;
  }
  .cta {
    background: #224815;
    color: white;
    border: none;
    border-radius: 70px;
    padding: 34px 56px;
    font-size: 48px;
    font-weight: 700;
    width: 520px;
    text-align: center;
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 14px;
    background: #A6A6A6;
    border-radius: 10px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>8:28</div>
    <div class="status-icons">
      <!-- Tiny filled rectangle to mimic icons -->
      <svg width="42" height="42"><rect x="6" y="6" width="30" height="30" rx="4" fill="#7A7A7A"/></svg>
      <svg width="42" height="42"><polygon points="21,6 36,36 6,36" fill="#7A7A7A"/></svg>
    </div>
  </div>

  <!-- App bar -->
  <div class="app-bar">
    <svg class="back-icon" viewBox="0 0 24 24">
      <path d="M15.5 5.5L8 12l7.5 6.5" fill="none" stroke="#2A3F28" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
    </svg>
    <div class="app-title">Filter</div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="link-row">Show more</div>
    <div class="divider"></div>

    <div class="section-title">Difficulty</div>

    <div class="option-row">
      <div class="option-left">
        <span>Easy</span>
        <svg class="info-icon" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="10" fill="none" stroke="#999" stroke-width="2"/>
          <line x1="12" y1="10" x2="12" y2="16" stroke="#999" stroke-width="2"/>
          <circle cx="12" cy="7" r="1.6" fill="#999"/>
        </svg>
      </div>
      <div class="checkbox"></div>
    </div>

    <div class="option-row">
      <div class="option-left">
        <span>Moderate</span>
        <svg class="info-icon" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="10" fill="none" stroke="#999" stroke-width="2"/>
          <line x1="12" y1="10" x2="12" y2="16" stroke="#999" stroke-width="2"/>
          <circle cx="12" cy="7" r="1.6" fill="#999"/>
        </svg>
      </div>
      <div class="checkbox"></div>
    </div>

    <div class="option-row">
      <div class="option-left">
        <span>Hard</span>
        <svg class="info-icon" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="10" fill="none" stroke="#999" stroke-width="2"/>
          <line x1="12" y1="10" x2="12" y2="16" stroke="#999" stroke-width="2"/>
          <circle cx="12" cy="7" r="1.6" fill="#999"/>
        </svg>
      </div>
      <div class="checkbox checked">
        <svg class="checkmark" viewBox="0 0 24 24">
          <path d="M5 12.5l5 5 9-11" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>

    <div class="divider"></div>

    <div class="range-title">Length</div>
    <div class="range-labels">
      <div>0 mi</div>
      <div>50+ mi</div>
    </div>
    <div class="slider">
      <div class="track"></div>
      <div class="thumb left"></div>
      <div class="thumb right"></div>
    </div>

    <div class="divider"></div>

    <div class="range-title">Elevation gain</div>
    <div class="range-labels">
      <div>0 ft</div>
      <div>5,000+ ft</div>
    </div>
    <div class="slider">
      <div class="track"></div>
      <div class="thumb left"></div>
      <div class="thumb right"></div>
    </div>

    <div class="divider" style="margin-top: 36px;"></div>

    <div class="section-title" style="margin-bottom: 24px;">Suitability</div>
    <!-- Content below is intentionally obscured by bottom sheet to mimic screenshot -->
  </div>

  <!-- Bottom sheet -->
  <div class="bottom-sheet">
    <div class="clear-link">Clear</div>
    <button class="cta">See 2 trails</button>
  </div>

  <!-- Home indicator -->
  <div class="home-indicator"></div>
</div>
</body>
</html>