File size: 9,440 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<html>
<head>
<meta charset="UTF-8">
<title>Chalsea boots - UI Mock</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #222;
  }

  /* Status bar */
  .status-bar {
    height: 150px;
    background: #D3D3D3;
    display: flex;
    align-items: center;
    padding: 0 40px;
    font-size: 36px;
    color: #2b2b2b;
  }
  .status-left { flex: 1; }
  .status-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .battery {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .pill-signal {
    width: 28px; height: 18px; border: 2px solid #2b2b2b; border-radius: 3px; position: relative;
  }
  .pill-signal::after {
    content: ""; position: absolute; right: -7px; top: 5px; width: 5px; height: 8px; background: #2b2b2b;
  }

  /* Header */
  .header {
    height: 130px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    border-bottom: 1px solid #eee;
  }
  .header .left,
  .header .right {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .header .title {
    flex: 1;
    text-align: left;
    font-size: 54px;
    font-weight: 700;
  }
  .icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
  }
  .icon svg { width: 100%; height: 100%; }

  /* Filter row */
  .filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 36px;
    height: 100px;
  }
  .filter-item {
    display: flex;
    align-items: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .filter-item .sub {
    font-weight: 700;
    margin-right: 18px;
  }
  .chev {
    width: 28px;
    height: 28px;
    margin-left: 16px;
  }

  /* Search result title */
  .search-title {
    padding: 24px 36px 12px 36px;
    font-size: 42px;
    font-weight: 800;
  }
  .search-desc {
    padding: 0 36px;
    font-size: 32px;
    color: #444;
    line-height: 1.5;
  }

  /* Suggestions */
  .suggestions {
    margin-top: 20px;
  }
  .suggestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 36px;
    font-size: 40px;
    border-bottom: 1px solid #eee;
  }
  .suggestion .arrow {
    width: 42px; height: 42px;
  }

  /* Tabs and items count */
  .tabs-row {
    display: flex;
    align-items: center;
    padding: 22px 36px;
    gap: 40px;
  }
  .tabs {
    display: flex;
    gap: 30px;
    font-size: 36px;
  }
  .tab {
    padding-bottom: 10px;
    color: #666;
  }
  .tab.active {
    color: #7A1C20;
    border-bottom: 4px solid #7A1C20;
  }
  .items-tools {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 34px;
    color: #333;
  }
  .small-icon {
    width: 46px; height: 46px; border: 2px solid #666; display: inline-block;
  }
  .grid-icon {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
    width: 46px; height: 46px; border: 2px solid #666; padding: 4px;
  }
  .grid-icon span { background: #666; }

  /* Product grid */
  .products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 24px 24px 140px 24px;
  }
  .card {
    background: #fff;
    border: 1px solid #eee;
    padding-bottom: 18px;
  }
  .img-box {
    height: 780px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 36px;
    position: relative;
  }
  .heart-float {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 70px; height: 70px;
    border-radius: 36px;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }
  .card .title {
    font-size: 40px;
    padding: 24px;
  }
  .card .price {
    font-size: 38px;
    padding: 0 24px;
    font-weight: 700;
  }
  .color-dots {
    display: flex; gap: 18px; padding: 18px 24px;
  }
  .dot {
    width: 24px; height: 24px; border-radius: 50%;
    border: 2px solid #999;
  }
  .dot.black { background: #111; }
  .dot.grey { background: #706f6f; }

  /* Bottom home bar */
  .home-bar {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 16px;
    background: #222;
    border-radius: 8px;
    opacity: 0.8;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">1:45</div>
    <div class="status-right">
      <span></span>
      <span>✉️</span>
      <span>🔔</span>
      <div class="battery">
        <span>100%</span>
        <div class="pill-signal"></div>
      </div>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="left">
      <div class="icon">
        <svg viewBox="0 0 24 24">
          <path d="M3 5h18M3 12h18M3 19h18" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
    <div class="title">Chalsea boots</div>
    <div class="right">
      <div class="icon">
        <svg viewBox="0 0 24 24">
          <circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2" fill="none"/>
          <path d="M20 20l-4-4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="icon">
        <svg viewBox="0 0 24 24">
          <circle cx="12" cy="8" r="4" stroke="#111" stroke-width="2" fill="none"/>
          <path d="M4 22c0-4 4-7 8-7s8 3 8 7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="icon">
        <svg viewBox="0 0 24 24">
          <path d="M12 5c2.5-3 6.5-1 6.5 2.5C18.5 11 12 15 12 15S5.5 11 5.5 7.5C5.5 4 9.5 2 12 5z" stroke="#111" stroke-width="2" fill="none" />
        </svg>
      </div>
      <div class="icon">
        <svg viewBox="0 0 24 24">
          <path d="M7 7h10l-1 12H8L7 7z" stroke="#111" stroke-width="2" fill="none"/>
          <path d="M9 7V5c0-1.7 6 0 6 0v2" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Filter row -->
  <div class="filter-row">
    <div class="filter-item">
      <span class="sub">DEPARTMENT</span>
      <svg class="chev" viewBox="0 0 24 24">
        <path d="M5 9l7 7 7-7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="filter-item">
      <span class="sub">FILTER &amp; SORT</span>
      <svg class="chev" viewBox="0 0 24 24">
        <path d="M4 6h16M7 12h10M10 18h4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
  </div>

  <!-- Search result section -->
  <div class="search-title">Search result for "chelsea boots"</div>
  <div class="search-desc">
    Your search "Chalsea boots" did not match any results. <br>
    Did you mean:
  </div>

  <div class="suggestions">
    <div class="suggestion">
      <span>chelsea boots</span>
      <svg class="arrow" viewBox="0 0 24 24">
        <path d="M8 5l8 7-8 7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="suggestion">
      <span>chelsea boot</span>
      <svg class="arrow" viewBox="0 0 24 24">
        <path d="M8 5l8 7-8 7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
  </div>

  <!-- Tabs and tools -->
  <div class="tabs-row">
    <div class="tabs">
      <div class="tab">Model</div>
      <div class="tab active">Product</div>
    </div>
    <div class="items-tools">
      <span>51 Items</span>
      <span class="small-icon"></span>
      <div class="grid-icon">
        <span></span><span></span><span></span>
        <span></span><span></span><span></span>
        <span></span><span></span><span></span>
      </div>
    </div>
  </div>

  <!-- Products grid -->
  <div class="products">
    <!-- Card 1 -->
    <div class="card">
      <div class="img-box">
        [IMG: Chunky Chelsea Boot]
        <div class="heart-float">
          <svg viewBox="0 0 24 24">
            <path d="M12 6c2-3 6-1 6 2.3 0 4.2-6 8.2-6 8.2S6 12.5 6 8.3C6 5 10 3 12 6z" stroke="#111" stroke-width="2" fill="none"/>
          </svg>
        </div>
      </div>
      <div class="title">Chunky Chelsea Boots</div>
      <div class="price">$54.99</div>
      <div class="color-dots">
        <span class="dot black"></span>
        <span class="dot grey"></span>
      </div>
    </div>

    <!-- Card 2 -->
    <div class="card">
      <div class="img-box">
        [IMG: Chunky Chelsea Boot]
        <div class="heart-float">
          <svg viewBox="0 0 24 24">
            <path d="M12 6c2-3 6-1 6 2.3 0 4.2-6 8.2-6 8.2S6 12.5 6 8.3C6 5 10 3 12 6z" stroke="#111" stroke-width="2" fill="none"/>
          </svg>
        </div>
      </div>
      <div class="title">Chunky Chelsea Boots</div>
      <div class="price">$49.99</div>
      <div class="color-dots">
        <span class="dot black"></span>
        <span class="dot grey"></span>
      </div>
    </div>
  </div>

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