File size: 8,692 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Party Wear - Grid</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111;
  }

  /* Top OS status simulation */
  .status-bar {
    height: 96px;
    background: #fff;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .status-left {
    font-size: 34px;
    font-weight: 600;
    color: #222;
  }
  .status-right {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .status-dot {
    width: 18px;
    height: 18px;
    background: #333;
    border-radius: 50%;
    opacity: 0.85;
  }
  .status-icon {
    width: 40px;
    height: 24px;
    border: 3px solid #333;
    border-radius: 4px;
    position: relative;
  }
  .status-icon::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 6px;
    width: 6px;
    height: 12px;
    background: #333;
    border-radius: 1px;
  }

  /* Header */
  .header {
    height: 160px;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    background: #fff;
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .title {
    font-size: 48px;
    letter-spacing: 1px;
    font-weight: 700;
  }
  .header-actions {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .icon-btn {
    width: 56px;
    height: 56px;
  }
  .icon {
    width: 56px;
    height: 56px;
  }

  /* Content grid */
  .content {
    position: absolute;
    top: 256px; /* 96 + 160 */
    left: 0;
    right: 0;
    bottom: 96px; /* leave space for gesture bar */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 36px 40px 24px;
    box-sizing: border-box;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
    row-gap: 44px;
  }
  .card {
    width: 100%;
  }
  .img-box {
    width: 100%;
    height: 540px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 30px;
    text-align: center;
    position: relative;
  }
  .badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #3d3d3d;
    color: #fff;
    font-size: 28px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  .price-row {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .price {
    font-weight: 800;
    font-size: 42px;
  }
  .wish {
    width: 46px;
    height: 46px;
  }
  .desc {
    margin-top: 12px;
    font-size: 30px;
    line-height: 40px;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Bottom gesture bar */
  .gesture {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
    width: 200px;
    height: 14px;
    background: #CFCFCF;
    border-radius: 10px;
  }
</style>
</head>
<body>
<div id="render-target">
  <div class="status-bar">
    <div class="status-left">8:56</div>
    <div class="status-right">
      <div class="status-dot"></div>
      <div class="status-dot" style="opacity:0.5"></div>
      <div class="status-dot" style="opacity:0.3"></div>
      <div class="status-icon"></div>
    </div>
  </div>

  <div class="header">
    <div class="header-left">
      <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
        <path d="M15 18l-6-6 6-6"></path>
      </svg>
      <div class="title">PARTY WEAR</div>
    </div>
    <div class="header-actions">
      <svg class="icon-btn" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
        <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path>
      </svg>
      <svg class="icon-btn" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
        <circle cx="11" cy="11" r="7"></circle>
        <path d="M20 20l-3.5-3.5"></path>
      </svg>
    </div>
  </div>

  <div class="content">
    <div class="grid">
      <!-- Card 1 -->
      <div class="card">
        <div class="img-box">[IMG: Fashion outfit in dark scene]</div>
        <div class="price-row">
          <div class="price">£19.00</div>
          <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
            <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path>
          </svg>
        </div>
        <div class="desc">ASOS DESIGN hotfix bralet in black</div>
      </div>

      <!-- Card 2 -->
      <div class="card">
        <div class="img-box">[IMG: Silver metallic skirt]</div>
        <div class="price-row">
          <div class="price">£48.00</div>
          <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
            <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path>
          </svg>
        </div>
        <div class="desc">4th & Reckless metallic maxi skirt in silver</div>
      </div>

      <!-- Card 3 -->
      <div class="card">
        <div class="img-box">
          <div class="badge">SELLING FAST</div>
          [IMG: Black heels with flower corsage]
        </div>
        <div class="price-row">
          <div class="price">£30.00</div>
          <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
            <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path>
          </svg>
        </div>
        <div class="desc">ASOS DESIGN Nahlia corsage barely there heeled...</div>
      </div>

      <!-- Card 4 -->
      <div class="card">
        <div class="img-box">[IMG: Column maxi skirt with high split]</div>
        <div class="price-row">
          <div class="price">£26.00</div>
          <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
            <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path>
          </svg>
        </div>
        <div class="desc">ASOS DESIGN column maxi skirt with lace split detail in ...</div>
      </div>

      <!-- Card 5 -->
      <div class="card">
        <div class="img-box">[IMG: Silver short-sleeve top close-up]</div>
        <div class="price-row">
          <div class="price">£—</div>
          <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
            <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path>
          </svg>
        </div>
        <div class="desc">Metallic top with notch neckline</div>
      </div>

      <!-- Card 6 -->
      <div class="card">
        <div class="img-box">[IMG: Silver sparkle wrap top]</div>
        <div class="price-row">
          <div class="price">£—</div>
          <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
            <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path>
          </svg>
        </div>
        <div class="desc">ASOS DESIGN glitter wrap top</div>
      </div>
    </div>
  </div>

  <div class="gesture"></div>
</div>
</body>
</html>