File size: 12,158 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
<html>
<head>
<meta charset="UTF-8">
<title>Quechua Hiking Boots - UI</title>
<style>
  body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    position: relative;
    width: 1080px;
    height: 2400px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: #222;
  }

  /* Status bar */
  .status-bar {
    height: 80px;
    background: #f3f3f4;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-size: 28px;
    color: #666;
  }
  .status-right { margin-left:auto; display:flex; gap:18px; align-items:center; }

  /* App bar */
  .app-bar {
    height: 120px;
    display:flex;
    align-items:center;
    padding: 0 24px;
    border-bottom: 1px solid #e3e3e3;
    background:#fff;
  }
  .app-title {
    font-size: 44px;
    font-weight: 600;
    margin-left: 16px;
  }
  .app-actions {
    margin-left:auto;
    display:flex;
    gap:34px;
    align-items:center;
  }
  .icon-btn {
    width: 56px; height:56px; display:flex; align-items:center; justify-content:center;
  }
  .icon { width: 40px; height: 40px; fill:#222; }

  /* Grid */
  .content {
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    bottom: 160px;
    overflow:hidden;
  }
  .grid {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .card {
    width: 510px;
    background:#fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    box-shadow: inset 0 1px 0 #eaeaea;
  }
  .img-wrap {
    position: relative;
    height: 320px;
    background:#E0E0E0;
    border: 1px solid #BDBDBD;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#757575;
    font-size: 26px;
    text-align:center;
  }
  .heart-circle {
    position:absolute;
    right: 16px; top: 16px;
    width: 60px; height: 60px;
    background:#fff;
    border-radius:50%;
    border: 2px solid #d9d9d9;
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  }
  .bestseller {
    position:absolute; left: 16px; top: -20px;
    background:#3b82f6; color:#fff; font-weight:700; font-size:24px;
    padding: 6px 12px; border-radius: 6px;
  }
  .info {
    padding: 16px;
  }
  .rating {
    display:inline-flex; align-items:center; gap:10px;
    padding: 8px 12px;
    border:1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 26px; color:#333;
    background:#fff;
  }
  .rating .star { width:26px; height:26px; fill:#f4b400; }
  .brand { margin-top: 16px; font-size: 28px; font-weight: 700; letter-spacing: 0.5px; }
  .title { margin-top: 6px; font-size: 28px; color:#444; line-height: 1.3; }
  .price-row { margin-top: 16px; display:flex; align-items:center; gap:16px; }
  .price-tag {
    background:#ffe04d; padding: 10px 14px; border-radius: 6px;
    font-size: 32px; font-weight: 800; color:#222;
  }
  .old-price {
    font-size: 26px; color:#777; text-decoration: line-through;
  }
  .right-badge {
    position:absolute; right: 16px; top: 344px;
  }

  .umbrella {
    width: 58px; height: 58px; background:#fff; border:2px dashed #b2d7ea; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .umbrella svg { width:32px; height:32px; fill:#61b3d5; }

  .eco-pill {
    display:inline-flex; align-items:center; gap:10px;
    background:#e5f8e5; color:#2b7d2f; border:1px solid #98cc9a;
    border-radius: 24px; padding: 8px 12px; font-size: 24px; margin-top: 8px;
  }
  .eco-dot { width:16px; height:16px; background:#2b7d2f; border-radius:50%; }

  .square-badge {
    width: 42px; height: 42px; border-radius:8px; border:2px solid #999; background:#fff;
    display:inline-block; margin-left: 8px;
  }

  /* Bottom action bar */
  .bottom-bar {
    position:absolute; left:0; right:0; bottom:0;
    height: 160px; background:#fff; border-top:1px solid #e4e4e4;
    display:flex; align-items:center; justify-content:space-around;
    font-size: 34px; color:#333;
  }
  .bottom-item { display:flex; align-items:center; gap:18px; }
  .sort-dot {
    width:16px; height:16px; background:#e64a45; border-radius:50%;
    margin-right: 4px;
  }
  .filter-icon, .gender-icon, .sort-icon { width: 40px; height: 40px; fill:#333; }

  /* Small helpers */
  .muted { color:#777; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>10:36</div>
    <div style="margin-left:18px;">14°</div>
    <div class="status-right">
      <span>◦◦</span>
      <span>🔔</span>
      <span>📶</span>
      <span>🔋</span>
    </div>
  </div>

  <!-- App bar -->
  <div class="app-bar">
    <div class="icon-btn" title="Back">
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M15.5 4l-8 8 8 8 1.4-1.4L10.3 12l6.6-6.6z"/>
      </svg>
    </div>
    <div class="app-title">Quechua Hiking Boot...</div>
    <div class="app-actions">
      <div class="icon-btn" title="Search">
        <svg class="icon" viewBox="0 0 24 24">
          <path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 10-.9.9l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0a4.5 4.5 0 110-9 4.5 4.5 0 010 9z"/>
        </svg>
      </div>
      <div class="icon-btn" title="Wishlist">
        <svg class="icon" viewBox="0 0 24 24">
          <path d="M12 21s-6.7-4.5-9.2-7.1C-.4 11.4 1 7 4.9 6.2c2-.4 3.7.4 5.1 1.8 1.4-1.4 3.1-2.2 5.1-1.8 3.9.8 5.3 5.2 2.1 7.7C18.7 16.5 12 21 12 21z" fill="none" stroke="#222" stroke-width="1.6"/>
        </svg>
      </div>
      <div class="icon-btn" title="Cart">
        <svg class="icon" viewBox="0 0 24 24">
          <path d="M7 4h-2l-1 2v2h2l3 9h9l2-8H9l-1-5zM7 21a1.7 1.7 0 100-3.4 1.7 1.7 0 000 3.4zm9 0a1.7 1.7 0 100-3.4 1.7 1.7 0 000 3.4z"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Content Grid -->
  <div class="content">
    <div class="grid">

      <!-- Card 1 -->
      <div class="card">
        <div class="img-wrap">
          [IMG: Men's Hiking boots - NH100]
          <div class="heart-circle">
            <svg viewBox="0 0 24 24" width="28" height="28">
              <path d="M12 21s-6.7-4.5-9.2-7.1C-.4 11.4 1 7 4.9 6.2c2-.4 3.7.4 5.1 1.8 1.4-1.4 3.1-2.2 5.1-1.8 3.9.8 5.3 5.2 2.1 7.7C18.7 16.5 12 21 12 21z" fill="none" stroke="#777" stroke-width="1.4"/>
            </svg>
          </div>
        </div>
        <div class="info">
          <div class="rating">
            <svg class="star" viewBox="0 0 24 24"><path d="M12 17.3l6.2 3.7-1.6-6.9 5.4-4.7-7.1-.6L12 2 9.1 8.8 2 9.4l5.4 4.7-1.6 6.9z"/></svg>
            <span>4.3</span>
          </div>
          <div class="brand">QUECHUA</div>
          <div class="title">Men's Hiking boots - NH100</div>
          <div class="price-row">
            <div class="price-tag">₹999</div>
            <div class="old-price">₹1,699</div>
          </div>
        </div>
      </div>

      <!-- Card 2 -->
      <div class="card">
        <div class="img-wrap">
          <div class="bestseller">BESTSELLER</div>
          [IMG: Women Hiking Boots NH100 Mid Grey]
          <div class="heart-circle">
            <svg viewBox="0 0 24 24" width="28" height="28">
              <path d="M12 21s-6.7-4.5-9.2-7.1C-.4 11.4 1 7 4.9 6.2c2-.4 3.7.4 5.1 1.8 1.4-1.4 3.1-2.2 5.1-1.8 3.9.8 5.3 5.2 2.1 7.7C18.7 16.5 12 21 12 21z" fill="none" stroke="#777" stroke-width="1.4"/>
            </svg>
          </div>
        </div>
        <div class="info">
          <div class="rating">
            <svg class="star" viewBox="0 0 24 24"><path d="M12 17.3l6.2 3.7-1.6-6.9 5.4-4.7-7.1-.6L12 2 9.1 8.8 2 9.4l5.4 4.7-1.6 6.9z"/></svg>
            <span>4.5</span>
          </div>
          <div class="brand">QUECHUA</div>
          <div class="title">Women Hiking Boots NH100 Mid Grey</div>
          <div class="price-row">
            <div class="price-tag">₹1,499</div>
            <div class="old-price">₹2,499</div>
          </div>
        </div>
      </div>

      <!-- Card 3 -->
      <div class="card">
        <div class="img-wrap">
          [IMG: Men Snow Hiking Warm and Waterproof Boots]
          <div class="heart-circle">
            <svg viewBox="0 0 24 24" width="28" height="28">
              <path d="M12 21s-6.7-4.5-9.2-7.1C-.4 11.4 1 7 4.9 6.2c2-.4 3.7.4 5.1 1.8 1.4-1.4 3.1-2.2 5.1-1.8 3.9.8 5.3 5.2 2.1 7.7C18.7 16.5 12 21 12 21z" fill="none" stroke="#777" stroke-width="1.4"/>
            </svg>
          </div>
        </div>
        <div class="info">
          <div class="rating">
            <svg class="star" viewBox="0 0 24 24"><path d="M12 17.3l6.2 3.7-1.6-6.9 5.4-4.7-7.1-.6L12 2 9.1 8.8 2 9.4l5.4 4.7-1.6 6.9z"/></svg>
            <span>4.5</span>
          </div>
          <div class="brand">QUECHUA</div>
          <div class="title">Men Snow Hiking Warm and Waterproof B...</div>
          <div class="price-row">
            <div class="price-tag">₹2,999</div>
            <div class="old-price">₹3,499</div>
          </div>
          <div class="eco-pill"><span class="eco-dot"></span> ECO DESIGN</div>
        </div>
      </div>

      <!-- Card 4 -->
      <div class="card">
        <div class="img-wrap">
          [IMG: Women's Waterproof Hiking Boots - NH150 Blue]
          <div class="heart-circle">
            <svg viewBox="0 0 24 24" width="28" height="28">
              <path d="M12 21s-6.7-4.5-9.2-7.1C-.4 11.4 1 7 4.9 6.2c2-.4 3.7.4 5.1 1.8 1.4-1.4 3.1-2.2 5.1-1.8 3.9.8 5.3 5.2 2.1 7.7C18.7 16.5 12 21 12 21z" fill="none" stroke="#777" stroke-width="1.4"/>
            </svg>
          </div>
          <div class="right-badge">
            <div class="umbrella">
              <svg viewBox="0 0 24 24">
                <path d="M12 2C7 2 3 6 3 11h18C21 6 17 2 12 2zm1 9v6a2 2 0 01-4 0v-1h2v1a1 1 0 002 0V11h0z"/>
              </svg>
            </div>
          </div>
        </div>
        <div class="info">
          <div class="rating">
            <svg class="star" viewBox="0 0 24 24"><path d="M12 17.3l6.2 3.7-1.6-6.9 5.4-4.7-7.1-.6L12 2 9.1 8.8 2 9.4l5.4 4.7-1.6 6.9z"/></svg>
            <span>4.5</span>
          </div>
          <div class="brand">QUECHUA</div>
          <div class="title">Women's Waterproof Hiking Boots - NH150...</div>
          <div class="price-row">
            <div class="price-tag">₹2,999</div>
            <div class="old-price">₹3,499</div>
          </div>
        </div>
      </div>

      <!-- Card 5 -->
      <div class="card">
        <div class="img-wrap">
          [IMG: High Ankle Blue & Tan Hiking Boots]
        </div>
        <div class="info">
          <div class="brand">QUECHUA</div>
          <div class="title">Men's High Warm Hiking Boots</div>
          <div class="price-row">
            <div class="price-tag">₹2,999</div>
            <div class="old-price">₹3,499</div>
          </div>
        </div>
      </div>

      <!-- Card 6 -->
      <div class="card">
        <div class="img-wrap">
          <div class="bestseller">BESTSELLER</div>
          [IMG: Low Cut Hiking Shoe - Black with Red]
        </div>
        <div class="info">
          <div class="brand">QUECHUA</div>
          <div class="title">Men's Hiking Shoes - NH100 Low</div>
          <div class="price-row">
            <div class="price-tag">₹2,999</div>
            <div class="old-price">₹3,499</div>
            <span class="square-badge"></span>
            <span class="square-badge"></span>
          </div>
        </div>
      </div>

    </div>
  </div>

  <!-- Bottom bar -->
  <div class="bottom-bar">
    <div class="bottom-item">
      <svg class="gender-icon" viewBox="0 0 24 24"><path d="M9 12a4 4 0 118 0 4 4 0 01-8 0zm-4 8h6v-2H7v-2H5v4zm12-12h2V4h-4v2h2v2z"/></svg>
      <div>GENDER</div>
    </div>
    <div class="bottom-item">
      <span class="sort-dot"></span>
      <svg class="sort-icon" viewBox="0 0 24 24"><path d="M6 9h12V7H6v2zm0 4h8v-2H6v2zm0 4h4v-2H6v2z"/></svg>
      <div>SORT</div>
    </div>
    <div class="bottom-item">
      <svg class="filter-icon" viewBox="0 0 24 24"><path d="M3 5h18l-7 8v5l-4 2v-7L3 5z"/></svg>
      <div>FILTER</div>
    </div>
  </div>

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