File size: 6,685 Bytes
0e1717f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html>
<head>
<meta charset="UTF-8">
<title>Refine Results Drawer</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  #render-target {
    width: 1440px;
    height: 3120px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #111;
  }

  /* Status bar */
  .status-bar {
    height: 120px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 46px;
    color: #222;
  }
  .status-left {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .dot { width: 22px; height: 22px; background:#000; border-radius:50%; display:inline-block; }
  .wifi-icon, .battery-icon {
    width: 64px; height: 40px;
  }

  /* Header */
  .header {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    border-bottom: 1px solid #eee;
  }
  .clear-all {
    font-size: 52px;
    letter-spacing: 3px;
    font-weight: 700;
  }
  .title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
  }
  .close-btn {
    width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
  }
  .close-btn svg { width: 72px; height: 72px; }

  .content {
    padding: 40px 60px 300px 60px;
  }

  /* Section headings */
  .section-title {
    font-size: 56px;
    font-weight: 700;
    margin: 60px 0 30px 0;
  }

  /* Radio list */
  .radio-list { display: grid; grid-template-columns: 1fr; gap: 32px; }
  .radio-row {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 54px;
  }
  .radio {
    width: 58px; height: 58px; border-radius: 50%;
    border: 4px solid #bbb; box-sizing: border-box;
  }

  /* Collection tags */
  .collection-head {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .count-badge {
    background: #000; color: #fff; font-size: 40px; font-weight: 700;
    padding: 10px 18px; border-radius: 10px;
  }
  .tag-grid {
    display: flex; flex-wrap: wrap; gap: 26px; margin-top: 24px;
  }
  .pill {
    padding: 28px 36px;
    border: 4px solid #d9d9d9;
    border-radius: 16px;
    font-size: 48px;
    color: #555;
    background: #fff;
  }
  .pill.selected {
    background: #111;
    color: #fff;
    border-color: #111;
  }

  /* Bottom CTA */
  .cta-bar {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 40px;
    height: 180px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  }
  .cta-text { font-size: 56px; letter-spacing: 2px; }
  .arrow {
    width: 80px; height: 80px;
  }

  /* Sale section */
  .sale-pill {
    width: 220px;
    padding: 26px 36px;
    border: 4px solid #d9d9d9;
    border-radius: 16px;
    font-size: 46px;
    color: #666;
    display: inline-block;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>2:20</div>
      <div class="dot"></div>
      <div class="dot"></div>
    </div>
    <div class="status-icons">
      <svg class="wifi-icon" viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
        <path d="M2 8c5-4 15-4 20 0" />
        <path d="M6 12c3-2 9-2 12 0" />
        <path d="M10.5 16.5c1.5-1 3.5-1 5 0" />
        <circle cx="12" cy="20" r="1.8" fill="#444"></circle>
      </svg>
      <svg class="battery-icon" viewBox="0 0 28 16" fill="none" stroke="#444" stroke-width="2">
        <rect x="1" y="2" width="22" height="12" rx="2"></rect>
        <rect x="3" y="4" width="16" height="8" fill="#444"></rect>
        <rect x="24" y="6" width="3" height="4" rx="1" fill="#444"></rect>
      </svg>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="clear-all">CLEAR ALL</div>
    <div class="title">REFINE RESULTS</div>
    <div class="close-btn">
      <svg viewBox="0 0 24 24" stroke="#111" stroke-width="2" fill="none">
        <path d="M5 5 L19 19"></path>
        <path d="M19 5 L5 19"></path>
      </svg>
    </div>
  </div>

  <div class="content">

    <!-- Sort by -->
    <div class="section-title">Sort by</div>
    <div class="radio-list">
      <div class="radio-row"><div class="radio"></div><div>Price (low/high)</div></div>
      <div class="radio-row"><div class="radio"></div><div>Newest first</div></div>
      <div class="radio-row"><div class="radio"></div><div>Top Sellers</div></div>
      <div class="radio-row"><div class="radio"></div><div>Price (high/low)</div></div>
      <div class="radio-row"><div class="radio"></div><div>Customer Top Rated</div></div>
    </div>

    <!-- Collection -->
    <div class="section-title collection-head">
      <span>Collection</span>
      <span class="count-badge">1</span>
    </div>

    <div class="tag-grid">
      <div class="pill">ULTRABOOST</div>
      <div class="pill">ADIZERO</div>
      <div class="pill">ADILETTE</div>
      <div class="pill selected">NMD</div>

      <div class="pill">SUPERSTAR</div>
      <div class="pill">FORUM</div>
      <div class="pill">STAN SMITH</div>
      <div class="pill">PREDATOR</div>
      <div class="pill">X</div>

      <div class="pill">SAMBA</div>
      <div class="pill">GAZELLE</div>
      <div class="pill">RIVALRY</div>
      <div class="pill">OZ</div>
      <div class="pill">CAMPUS</div>

      <div class="pill">COPA</div>
      <div class="pill">ADIFOM</div>
      <div class="pill">FREE HIKER</div>
      <div class="pill">XPLR</div>
      <div class="pill">ICON</div>

      <div class="pill">LITE RACER</div>
      <div class="pill">NIZZA</div>
      <div class="pill">4DFWD</div>
      <div class="pill">DURAMO</div>

      <div class="pill">ADVENTURE</div>
      <div class="pill">RETROPY</div>
      <div class="pill">AVRYN</div>
      <div class="pill">SWIFT</div>
      <div class="pill">RDY</div>

      <div class="pill">TRAE</div>
      <div class="pill">AFTERBURNER</div>
    </div>

    <!-- Sale -->
    <div class="section-title" style="margin-top: 80px;">Sale</div>
    <span class="sale-pill">SALE</span>

  </div>

  <!-- CTA bottom bar -->
  <div class="cta-bar">
    <div class="cta-text">100 RESULTS</div>
    <svg class="arrow" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
      <path d="M5 12h12"></path>
      <path d="M12 5l7 7-7 7"></path>
    </svg>
  </div>

</div>
</body>
</html>