File size: 6,997 Bytes
5501681
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Product Suggestions UI</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: #0A0A0A;
    color: #FFFFFF;
  }

  /* Status bar */
  .status-bar {
    height: 80px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #EDEDED;
    font-size: 32px;
    letter-spacing: .5px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .icon {
    width: 36px; height: 36px;
  }
  .battery {
    width: 52px; height: 24px;
  }

  /* Accordion section */
  .accordion {
    margin-top: 6px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
  }
  .accordion-item {
    height: 140px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #222;
  }
  .accordion-item:last-child { border-bottom: none; }
  .accordion-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .plus {
    position: relative;
    width: 46px; height: 46px;
  }
  .plus:before, .plus:after {
    content: "";
    position: absolute;
    background: #FFFFFF;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .plus:before { width: 34px; height: 6px; border-radius: 3px; }
  .plus:after { width: 6px; height: 34px; border-radius: 3px; }

  /* Section headers */
  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 36px;
    margin-top: 16px;
  }
  .section-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 2px;
  }
  .section-count {
    font-size: 34px;
    color: #9E9E9E;
  }

  /* Cards grid */
  .grid {
    display: flex;
    gap: 30px;
    padding: 0 30px;
  }
  .card {
    width: 500px;
    background: #111;
    border-radius: 8px;
  }
  .img {
    width: 500px;
    height: 620px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 28px;
    text-align: center;
  }
  .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 22px 6px 22px;
  }
  .price {
    font-size: 44px;
    font-weight: 800;
  }
  .heart {
    width: 48px; height: 48px;
  }
  .card-text {
    padding: 12px 24px 28px 24px;
    color: #CFCFCF;
    font-size: 34px;
    line-height: 1.3;
  }
  .pill {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    color: #111;
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: .5px;
  }
  .relative { position: relative; }

  /* People also bought */
  .people-grid {
    display: flex;
    gap: 30px;
    padding: 0 30px;
    margin-top: 22px;
  }
  .person-card {
    width: 500px;
    background: #111;
    border-radius: 8px;
    padding-bottom: 24px;
  }
  .person-img {
    width: 500px;
    height: 540px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 28px;
    text-align: center;
  }

  /* Bottom home indicator */
  .home-indicator {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 12px;
    border-radius: 6px;
    background: #3A3A3A;
    opacity: .9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>7:49</div>
    <div class="status-icons">
      <!-- Wi-Fi icon -->
      <svg class="icon" viewBox="0 0 24 24">
        <path fill="#EDEDED" d="M12 18c.8 0 1.5.7 1.5 1.5S12.8 21 12 21s-1.5-.7-1.5-1.5S11.2 18 12 18zm-5-4c3.9-3.1 8.1-3.1 12 0l-1.4 1.4c-2.9-2.3-6.3-2.3-9.2 0L7 14zM2 10c6.6-5.2 13.4-5.2 20 0l-1.4 1.4C15 7 9 7 3.4 11.4L2 10z"/>
      </svg>
      <!-- Signal icon -->
      <svg class="icon" viewBox="0 0 24 24">
        <path fill="#EDEDED" d="M4 20h2V8H4v12zm4 0h2V4H8v16zm4 0h2V12h-2v8zm4 0h2V16h-2v4z"/>
      </svg>
      <!-- Battery icon -->
      <svg class="battery" viewBox="0 0 26 14">
        <rect x="1" y="2" width="22" height="10" rx="2" fill="none" stroke="#EDEDED" stroke-width="2"/>
        <rect x="3" y="4" width="14" height="6" fill="#EDEDED"/>
        <rect x="23" y="5" width="3" height="4" rx="1" fill="#EDEDED"/>
      </svg>
      <div style="font-size:28px;">72%</div>
    </div>
  </div>

  <!-- Accordion (collapsed sections) -->
  <div class="accordion">
    <div class="accordion-item">
      <div class="accordion-title">Brand</div>
      <div class="plus"></div>
    </div>
    <div class="accordion-item">
      <div class="accordion-title">Look after me</div>
      <div class="plus"></div>
    </div>
    <div class="accordion-item">
      <div class="accordion-title">About me</div>
      <div class="plus"></div>
    </div>
  </div>

  <!-- You might also like -->
  <div class="section-header">
    <div class="section-title">YOU MIGHT ALSO LIKE</div>
    <div class="section-count">16 items</div>
  </div>

  <div class="grid">
    <!-- Left product card -->
    <div class="card">
      <div class="img">[IMG: Brown leather lace-up boot being tied]</div>
      <div class="price-row">
        <div class="price">£180.00</div>
        <svg class="heart" viewBox="0 0 24 24">
          <path fill="none" stroke="#FFFFFF" stroke-width="2" d="M12 21s-6.5-4.6-8.7-7.1C1.3 11.7 2 8.8 4.3 7.5c2-1.2 4.1-.6 5.7 1.1 1.6-1.7 3.7-2.3 5.7-1.1 2.3 1.3 3 4.2 1 6.4C18.5 16.4 12 21 12 21z"/>
        </svg>
      </div>
      <div class="card-text">
        Tommy Hilfiger american<br/>
        warm leather boots in winte...
      </div>
    </div>

    <!-- Right product card -->
    <div class="card">
      <div class="img relative">[IMG: Black chunky studded shoes]
        <div class="pill">WIDE FIT AVAILABLE</div>
      </div>
      <div class="price-row">
        <div class="price">£59.00</div>
        <div style="width:48px; height:48px;"></div>
      </div>
      <div class="card-text">
        ASOS DESIGN chunky lace-up shoes in black with studs
      </div>
    </div>
  </div>

  <!-- People also bought -->
  <div class="section-header" style="margin-top: 34px;">
    <div class="section-title">PEOPLE ALSO BOUGHT</div>
    <div class="section-count">7 items</div>
  </div>

  <div class="people-grid">
    <div class="person-card">
      <div class="person-img">[IMG: Person in a bold blue suit with black tie]</div>
    </div>
    <div class="person-card">
      <div class="person-img">[IMG: Person wearing black fleece vest over white tee]</div>
    </div>
  </div>

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