File size: 7,931 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1080, initial-scale=1.0" />
<title>Party Wear Listing</title>
<style>
  body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }

  /* Status bar */
  .status-bar {
    height: 90px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-size: 34px;
    letter-spacing: 0.2px;
  }
  .sb-left, .sb-right, .sb-mid {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .sb-dot {
    width: 24px;
    height: 24px;
    background: #cfcfcf;
    border-radius: 50%;
  }
  .sb-dot.dark {
    background: #111;
  }
  .sb-dot.mid {
    background: #666;
  }

  /* Header */
  .header {
    height: 130px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
  }
  .header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .title {
    font-weight: 700;
    font-size: 44px;
    letter-spacing: 0.5px;
    color: #333;
  }
  .icon-btn {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .icon {
    width: 44px;
    height: 44px;
    stroke: #222;
    fill: none;
    stroke-width: 2.5;
  }

  /* Content */
  .content {
    padding: 24px 36px 120px 36px;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
  }
  .product-card {
    width: 468px;
  }
  .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
  }
  .price {
    font-size: 46px;
    font-weight: 800;
    color: #333;
  }
  .card-heart .icon {
    width: 40px;
    height: 40px;
  }
  .product-title {
    margin-top: 10px;
    font-size: 32px;
    line-height: 42px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .image-box {
    width: 100%;
    height: 600px;
    margin-top: 28px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 28px;
    text-align: center;
    border-radius: 6px;
  }

  /* Bottom home indicator */
  .home-indicator {
    position: absolute;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    width: 420px;
    height: 18px;
    background: #bfbfbf;
    border-radius: 9px;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status bar -->
  <div class="status-bar">
    <div class="sb-left">
      <div>8:57</div>
      <div class="sb-dot"></div>
      <div class="sb-dot mid"></div>
      <div class="sb-dot dark"></div>
      <div class="sb-dot dark"></div>
      <div>oyo</div>
      <div class="sb-dot"></div>
    </div>
    <div class="sb-right">
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M2 16h20M4 12h16M6 8h12M8 4h8" />
      </svg>
      <svg class="icon" viewBox="0 0 24 24">
        <rect x="2" y="3" width="20" height="18" rx="3" ry="3"></rect>
        <rect x="18" y="1" width="4" height="2" rx="1"></rect>
      </svg>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="header-left">
      <div class="icon-btn" aria-label="Back">
        <svg class="icon" viewBox="0 0 24 24">
          <path d="M15 5L8 12l7 7" />
        </svg>
      </div>
      <div class="title">PARTY WEAR</div>
    </div>
    <div class="header-right">
      <div class="icon-btn" aria-label="Wishlist">
        <svg class="icon" viewBox="0 0 24 24">
          <path d="M12 21c-4.5-3.5-8-7-8-11a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4-3.5 7.5-8 11z" />
        </svg>
      </div>
      <div class="icon-btn" aria-label="Search">
        <svg class="icon" viewBox="0 0 24 24">
          <circle cx="11" cy="11" r="7"></circle>
          <path d="M20 20l-4.5-4.5"></path>
        </svg>
      </div>
    </div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="product-grid">
      <!-- Card 1 -->
      <div class="product-card">
        <div class="price-row">
          <div class="price">£48.00</div>
          <div class="card-heart">
            <svg class="icon" viewBox="0 0 24 24">
              <path d="M12 21c-4.5-3.5-8-7-8-11a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4-3.5 7.5-8 11z" />
            </svg>
          </div>
        </div>
        <div class="product-title">Extro & Vert high waisted leather look trousers co‑ord set</div>
        <div class="image-box">[IMG: Full-length white off-shoulder dress on white background]</div>
      </div>

      <!-- Card 2 -->
      <div class="product-card">
        <div class="price-row">
          <div class="price">£72.00</div>
          <div class="card-heart">
            <svg class="icon" viewBox="0 0 24 24">
              <path d="M12 21c-4.5-3.5-8-7-8-11a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4-3.5 7.5-8 11z" />
            </svg>
          </div>
        </div>
        <div class="product-title">ASOS DESIGN diamante fringe mesh mini dress in black</div>
        <div class="image-box">[IMG: Full-length brown satin halter dress on studio background]</div>
      </div>

      <!-- Card 3 -->
      <div class="product-card">
        <div class="price-row">
          <div class="price">£38.00</div>
          <div class="card-heart">
            <svg class="icon" viewBox="0 0 24 24">
              <path d="M12 21c-4.5-3.5-8-7-8-11a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4-3.5 7.5-8 11z" />
            </svg>
          </div>
        </div>
        <div class="product-title">ASOS DESIGN coated metallic one shoulder ruched midi dress</div>
        <div class="image-box">[IMG: Studio shot of silver off-shoulder floor-length dress]</div>
      </div>

      <!-- Card 4 -->
      <div class="product-card">
        <div class="price-row">
          <div class="price">£55.00</div>
          <div class="card-heart">
            <svg class="icon" viewBox="0 0 24 24">
              <path d="M12 21c-4.5-3.5-8-7-8-11a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4-3.5 7.5-8 11z" />
            </svg>
          </div>
        </div>
        <div class="product-title">River Island halter satin midi dress in brown</div>
        <div class="image-box">[IMG: Full-length chocolate brown satin dress, studio shot]</div>
      </div>

      <!-- Card 5 -->
      <div class="product-card">
        <div class="price-row">
          <div class="price">£69.00</div>
          <div class="card-heart">
            <svg class="icon" viewBox="0 0 24 24">
              <path d="M12 21c-4.5-3.5-8-7-8-11a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4-3.5 7.5-8 11z" />
            </svg>
          </div>
        </div>
        <div class="product-title">Jaded Rose long sleeve sequin mini dress in olive</div>
        <div class="image-box">[IMG: Green sequin long-sleeve mini dress, studio shot]</div>
      </div>

      <!-- Card 6 -->
      <div class="product-card">
        <div class="price-row">
          <div class="price">£32.00</div>
          <div class="card-heart">
            <svg class="icon" viewBox="0 0 24 24">
              <path d="M12 21c-4.5-3.5-8-7-8-11a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4-3.5 7.5-8 11z" />
            </svg>
          </div>
        </div>
        <div class="product-title">ASOS DESIGN scoop velvet mini dress with pearl strap detail</div>
        <div class="image-box">[IMG: Dark green velvet mini dress with front cut-out]</div>
      </div>
    </div>
  </div>

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