File size: 8,302 Bytes
ff1f000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Product Page - Cleats</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
  * { box-sizing: border-box; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }

  /* Top hero area */
  .hero {
    position: relative;
    width: 100%;
    height: 980px;
    background: #EDF2F4;
    border-bottom: 1px solid #DADFE3;
  }

  .status-bar {
    position: absolute;
    top: 24px;
    left: 32px;
    color: #9AA0A6;
    font-size: 36px;
    letter-spacing: 1px;
  }
  .status-icons {
    position: absolute;
    top: 24px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #9AA0A6;
    font-size: 24px;
  }
  .wifi {
    width: 34px; height: 24px; border: 2px solid #9AA0A6; border-radius: 12px;
  }
  .battery {
    width: 44px; height: 24px; border: 2px solid #9AA0A6; position: relative; border-radius: 4px;
  }
  .battery::after {
    content: "";
    position: absolute;
    right: -8px; top: 6px;
    width: 6px; height: 12px; background: #9AA0A6; border-radius: 2px;
  }

  .close-btn {
    position: absolute;
    top: 230px;
    right: 40px;
    font-size: 96px;
    line-height: 1;
    color: #000000;
  }

  .product-visual {
    position: absolute;
    left: 60px;
    right: 60px;
    top: 160px;
  }
  .img-placeholder {
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    color: #757575;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .shoe-top {
    width: 960px; height: 360px;
    margin: 0 auto 30px auto;
  }
  .shoe-sole {
    width: 960px; height: 360px;
    margin: 0 auto;
  }

  .new-tag {
    position: absolute;
    bottom: 210px;
    left: 60px;
    background: #ffffff;
    color: #000000;
    font-size: 32px;
    letter-spacing: 3px;
    padding: 14px 22px;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  }

  .thumbs-area {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 190px;
    background: #ECECEC;
    border-top: 1px solid #DADADA;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px 0 40px 0;
  }
  .thumb {
    width: 220px; height: 120px;
    position: relative;
  }
  .thumb.focus {
    outline: 2px dashed #CFCFCF;
  }
  .slider-indicator {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px; height: 16px;
    background: #D0D0D0;
    border-radius: 8px;
  }

  /* Content section */
  .content {
    position: relative;
    background: #ffffff;
    padding: 56px 60px 0 60px;
  }
  .title-row {
    position: relative;
    padding-right: 120px;
  }
  h1.title {
    margin: 0 0 28px 0;
    font-size: 58px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.18;
    text-transform: uppercase;
    color: #111111;
  }
  .favorite {
    position: absolute;
    right: 0;
    top: 6px;
  }
  .favorite svg {
    width: 72px; height: 72px;
    stroke: #111; fill: none; stroke-width: 8px;
  }

  .meta {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 36px;
  }
  .price {
    font-size: 34px; font-weight: 700; color: #000;
    letter-spacing: 2px;
  }
  .category {
    font-size: 30px; color: #666; letter-spacing: 4px; text-transform: uppercase;
  }

  .divider {
    height: 1px; background: #E5E5E5; margin: 36px 0;
  }

  .size-header {
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 24px;
  }
  .size-header .label {
    font-size: 30px; letter-spacing: 4px; color: #333; text-transform: uppercase; font-weight: 700;
  }
  .ruler {
    border: 2px solid #1a1a1a; width: 84px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
  }
  .ruler div {
    width: 60px; height: 20px; border-top: 2px solid #1a1a1a; border-bottom: 2px solid #1a1a1a;
    position: relative;
  }
  .ruler div::before, .ruler div::after {
    content: ""; position: absolute; top: -10px; width: 2px; height: 40px; background: #1a1a1a;
  }
  .ruler div::before { left: 8px; } .ruler div::after { right: 8px; }

  .sizes {
    display: flex; gap: 60px; padding: 20px 0 40px 0; color: #333;
    font-size: 30px; letter-spacing: 3px;
    white-space: nowrap;
  }

  /* CTA buttons */
  .cta {
    padding: 10px 0 0 0;
  }
  .btn {
    width: 960px; height: 120px;
    font-size: 34px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 36px;
    margin: 22px 0;
    cursor: pointer;
  }
  .btn.outline {
    border: 3px solid #111; background: #fff; color: #111;
  }
  .btn.solid {
    background: #111; color: #fff; border: 3px solid #111;
  }
  .icon-bag svg { width: 48px; height: 48px; stroke: #111; fill: none; stroke-width: 6px; }
  .btn.solid .arrow svg { stroke: #fff; }
  .arrow svg { width: 48px; height: 48px; stroke: #111; fill: none; stroke-width: 8px; }

  /* Payment logos */
  .payments {
    display: flex; gap: 32px; padding: 40px 0;
  }
  .pay-img {
    width: 240px; height: 110px; background: #E0E0E0; border: 1px solid #BDBDBD;
    color: #757575; display: flex; align-items: center; justify-content: center; font-weight: 600; letter-spacing: 1px;
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 24px; left: 50%; transform: translateX(-50%);
    width: 360px; height: 18px; background: #CFCFCF; border-radius: 9px;
  }
</style>
</head>
<body>
<div id="render-target">

  <div class="hero">
    <div class="status-bar">3:18</div>
    <div class="status-icons">
      <div class="wifi"></div>
      <div class="battery"></div>
    </div>

    <div class="close-btn">×</div>

    <div class="product-visual">
      <div class="img-placeholder shoe-top">[IMG: Cleat - Side View]</div>
      <div class="img-placeholder shoe-sole">[IMG: Cleat - Sole View]</div>
    </div>

    <div class="new-tag">NEW</div>

    <div class="thumbs-area">
      <div class="img-placeholder thumb">[IMG: Pink Cleat]</div>
      <div class="img-placeholder thumb focus">[IMG: Lime Cleat]</div>
      <div class="img-placeholder thumb">[IMG: Detail]</div>
      <div class="slider-indicator"></div>
    </div>
  </div>

  <div class="content">
    <div class="title-row">
      <h1 class="title">PREDATOR ACCURACY+<br>ARTIFICIAL GRASS CLEATS</h1>
      <div class="favorite">
        <svg viewBox="0 0 24 24">
          <path d="M12 21s-7-4.4-9.5-8.2C0 9.6 2.2 6 5.9 6c2 0 3.5 1.1 4.1 2.5C10.6 7.1 12 6 14.1 6c3.7 0 5.9 3.6 3.4 6.8C19 16.6 12 21 12 21z"/>
        </svg>
      </div>
    </div>

    <div class="meta">
      <div class="price">$300.00</div>
      <div class="category">PERFORMANCE</div>
    </div>

    <div class="divider"></div>

    <div class="size-header">
      <div class="label">SIZE</div>
      <div class="ruler"><div></div></div>
    </div>

    <div class="sizes">
      <div>M6 / W8.5</div>
      <div>M8 / W9</div>
      <div>M8.5 / W9.5</div>
      <div>M9 / W10</div>
      <div>M9.5 / W10.5</div>
      <div>M10 / W11</div>
    </div>

    <div class="cta">
      <div class="btn outline">
        <div>ADD TO BAG</div>
        <div class="icon-bag">
          <svg viewBox="0 0 24 24">
            <rect x="5" y="7" width="14" height="14"></rect>
            <path d="M9 7V5c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2v2"></path>
            <path d="M12 12v6M9 15h6"></path>
          </svg>
        </div>
      </div>

      <div class="btn solid">
        <div>BUY IT NOW</div>
        <div class="arrow">
          <svg viewBox="0 0 24 24">
            <path d="M5 12h14"></path>
            <path d="M13 5l7 7-7 7"></path>
          </svg>
        </div>
      </div>
    </div>

    <div class="payments">
      <div class="pay-img">[IMG: Google Pay]</div>
      <div class="pay-img">[IMG: PayPal]</div>
      <div class="pay-img">[IMG: Klarna]</div>
    </div>
  </div>

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

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