File size: 10,217 Bytes
c32f9a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Party Wear Formal Shoes - 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: linear-gradient(180deg, #b7e5df 0%, #a6e0d1 40%, #9fd9cc 100%);
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    color: #303030;
    font-weight: 600;
    font-size: 34px;
  }
  .status-icons {
    display: flex; gap: 18px; align-items: center;
  }
  .icon-dot, .icon-pill {
    width: 28px; height: 28px; border-radius: 6px; background: #2f2f2f;
  }
  /* Search section */
  .search-row {
    position: absolute;
    top: 90px;
    left: 0; right: 0;
    padding: 18px 24px;
    display: flex; align-items: center; gap: 22px;
  }
  .back-btn {
    width: 72px; height: 72px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.6);
  }
  .search-box {
    flex: 1;
    height: 92px;
    background: #ffffff;
    border-radius: 22px;
    display: flex; align-items: center;
    padding: 0 24px;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.06);
  }
  .search-box svg { width: 38px; height: 38px; fill: #3b3b3b; }
  .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 34px;
    color: #222;
    background: transparent;
    margin: 0 16px;
  }
  .scan-btn {
    width: 68px; height: 68px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: #edf6f4; border: 1px solid #cfd9d6;
  }
  /* Location row */
  .location-row {
    position: absolute; top: 200px; left: 0; right: 0;
    padding: 10px 32px 6px 32px;
    display: flex; align-items: center; gap: 16px;
    color: #2d2d2d; font-size: 32px;
  }
  .location-row .caret { margin-left: 8px; font-weight: 700; }
  /* Filter chips row */
  .chips-row {
    position: absolute; top: 270px; left: 0; right: 0;
    padding: 10px 24px;
    display: flex; align-items: center; gap: 18px;
  }
  .chip {
    background: #ffffff;
    color: #2d2d2d;
    padding: 20px 26px;
    border-radius: 20px;
    font-size: 30px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    display: flex; align-items: center; gap: 12px;
  }
  .prime-toggle {
    width: 72px; height: 38px; border-radius: 20px;
    background: #ebf3ff; border: 1px solid #cfd6e6; position: relative;
  }
  .prime-toggle::after {
    content: ""; position: absolute; top: 4px; left: 4px;
    width: 30px; height: 30px; border-radius: 50%; background: #ffffff; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }
  .right-label { margin-left: auto; }
  /* Card area */
  .card {
    position: absolute; left: 24px; right: 24px;
    top: 350px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
  }
  .card-header {
    padding: 24px 24px 6px 24px;
    color: #222;
  }
  .brand-title { font-weight: 800; font-size: 42px; letter-spacing: 1px; }
  .card-sub { font-size: 36px; margin-top: 6px; }
  .image {
    width: 100%; height: 620px;
    background: #E0E0E0;
    border-top: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
    color: #757575;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
  }
  .thumbs {
    display: flex; gap: 18px; padding: 18px 18px 24px 18px;
  }
  .thumb {
    flex: 1; background: #fafafa; border-radius: 16px; display: flex; align-items: center; gap: 16px;
    padding: 16px; border: 1px solid #e4e4e4;
  }
  .thumb .img {
    width: 120px; height: 100px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: #757575; font-size: 24px;
  }
  .thumb .meta { font-size: 28px; color: #333; }
  .link-row {
    position: absolute; top: 1160px; left: 24px; right: 24px;
    display: flex; align-items: center; justify-content: space-between;
    color: #1a73e8; font-size: 34px;
  }
  .sponsored {
    position: absolute; top: 1215px; right: 28px;
    display: flex; align-items: center; gap: 12px; color: #606060; font-size: 28px;
  }
  .info-dot { width: 28px; height: 28px; border-radius: 50%; background: #b0b0b0; display: inline-block; }
  /* Section title */
  .section-title {
    position: absolute; top: 1268px; left: 24px; right: 24px;
    font-size: 34px; color: #333; padding: 24px 0;
  }
  /* Product grid */
  .grid {
    position: absolute; top: 1350px; left: 24px; right: 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  }
  .product {
    background: #ffffff; border-radius: 20px; padding: 24px; box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  }
  .product .product-img {
    width: 100%; height: 380px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px;
  }
  .product .name { margin-top: 18px; font-size: 30px; color: #222; }
  /* Bottom navigation */
  .bottom-nav {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 150px; background: #ffffff; border-top-left-radius: 24px; border-top-right-radius: 24px;
    box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: space-around;
  }
  .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #222; font-size: 28px; }
  .nav-item svg { width: 54px; height: 54px; fill: none; stroke: #222; stroke-width: 3; }
  .cart-count {
    position: absolute; top: -8px; right: -16px; background: #0a7; color: #fff; font-size: 24px;
    border-radius: 14px; padding: 2px 8px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div>11:04</div>
    <div class="status-icons">
      <div class="icon-dot"></div>
      <div class="icon-dot"></div>
      <div class="icon-pill" style="width:36px;"></div>
    </div>
  </div>

  <!-- Search Row -->
  <div class="search-row">
    <div class="back-btn" aria-label="Back">
      <svg viewBox="0 0 24 24">
        <path d="M15 5 L7 12 L15 19" stroke="#1f1f1f" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="search-box">
      <svg viewBox="0 0 24 24">
        <circle cx="10" cy="10" r="6"></circle>
        <line x1="14" y1="14" x2="21" y2="21" stroke="#3b3b3b" stroke-width="2"></line>
      </svg>
      <input class="search-input" value="party wear formal shoes for men" />
      <div class="scan-btn" aria-label="Scan">
        <svg viewBox="0 0 24 24" stroke="#2f6b5e" stroke-width="2">
          <rect x="4" y="4" width="16" height="16" rx="3" fill="none"></rect>
          <path d="M4 9 h3 M17 9 h3 M4 15 h3 M17 15 h3" />
        </svg>
      </div>
    </div>
  </div>

  <!-- Location -->
  <div class="location-row">
    <svg width="34" height="34" viewBox="0 0 24 24" fill="#333">
      <path d="M12 2 C8 2 5 5 5 9 c0 6 7 13 7 13 s7-7 7-13 c0-4-3-7-7-7z"></path>
    </svg>
    <span>Choose location for most accurate options</span>
    <span class="caret">⌄</span>
  </div>

  <!-- Chips -->
  <div class="chips-row">
    <div class="prime-toggle"></div>
    <div class="chip">Liberty</div>
    <div class="chip">★★★★☆ &amp; Up</div>
    <div class="chip right-label">Filters â–¼</div>
  </div>

  <!-- Sponsored Card -->
  <div class="card">
    <div class="card-header">
      <div class="brand-title">FAUSTO • LUCKY★STAR</div>
      <div class="card-sub">Men's Classic Office Dress Shoes</div>
    </div>
    <div class="image">[IMG: Man lounging in suit wearing brown formal shoes]</div>
    <div class="thumbs">
      <div class="thumb">
        <div class="img">[IMG: Brown Derby]</div>
        <div class="meta">★★★★☆ 85 • Prime</div>
      </div>
      <div class="thumb">
        <div class="img">[IMG: Brown Casual Dress]</div>
        <div class="meta">★★★★☆ 21 • Prime</div>
      </div>
    </div>
  </div>

  <!-- Link & Sponsored -->
  <div class="link-row">
    <div>Shop FAUSTO ›</div>
  </div>
  <div class="sponsored">
    <span>Sponsored</span>
    <span class="info-dot"></span>
  </div>

  <!-- Section Title -->
  <div class="section-title">
    Price and other details may vary based on product size and colour.
  </div>

  <!-- Products Grid -->
  <div class="grid">
    <div class="product">
      <div class="product-img">[IMG: Black Slip-on Formal Shoe]</div>
      <div class="name">Black Slip-on Classic</div>
    </div>
    <div class="product">
      <div class="product-img">[IMG: Brown Lace-up Formal Shoe]</div>
      <div class="name">Brown Lace-up Comfort</div>
    </div>
  </div>

  <!-- Bottom Navigation -->
  <div class="bottom-nav">
    <div class="nav-item">
      <svg viewBox="0 0 24 24">
        <path d="M3 11 L12 3 L21 11"></path>
        <rect x="6" y="11" width="12" height="9"></rect>
      </svg>
      <div>Home</div>
    </div>
    <div class="nav-item">
      <svg viewBox="0 0 24 24">
        <circle cx="12" cy="8" r="4"></circle>
        <path d="M4 21 c0-5 16-5 16 0"></path>
      </svg>
      <div>Account</div>
    </div>
    <div class="nav-item">
      <svg viewBox="0 0 24 24">
        <path d="M4 12 a8 8 0 1 1 3 6"></path>
        <path d="M4 12 h4"></path>
      </svg>
      <div>Refresh</div>
    </div>
    <div class="nav-item" style="position: relative;">
      <svg viewBox="0 0 24 24">
        <path d="M4 6 h16 l-2 12 H6 L4 6z"></path>
        <circle cx="9" cy="20" r="2"></circle>
        <circle cx="17" cy="20" r="2"></circle>
      </svg>
      <div class="cart-count">0</div>
      <div>Cart</div>
    </div>
    <div class="nav-item">
      <svg viewBox="0 0 24 24">
        <path d="M3 5 h18 M3 12 h18 M3 19 h18"></path>
      </svg>
      <div>Menu</div>
    </div>
  </div>

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