File size: 10,106 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
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
<html>
<head>
<meta charset="UTF-8">
<title>Amazon Compare - Nike Shoes</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: #ffffff;
    border-radius: 0;
  }

  /* Top gradient header */
  .top-gradient {
    width: 100%;
    height: 210px;
    background: linear-gradient(180deg, #bde7df 0%, #a2e1d9 60%, #a8e1d7 100%);
    padding-top: 28px;
    box-sizing: border-box;
  }

  /* Status row (time and icons simplified) */
  .status-row {
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 28px;
    color: #2b2b2b;
    font-size: 28px;
    justify-content: space-between;
  }

  /* Search bar */
  .search-wrap {
    padding: 10px 24px 16px 24px;
  }
  .search-bar {
    height: 76px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04) inset;
  }
  .search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 30px;
    color: #222;
  }
  .icon {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #555;
  }
  .icon svg { width: 34px; height: 34px; fill: #333; }

  /* Tabs */
  .tabs {
    height: 84px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #eee;
    background: #fff;
  }
  .tab {
    margin-right: 48px;
    font-size: 32px;
    color: #666;
    position: relative;
  }
  .tab.active { color: #e47911; font-weight: 700; }
  .tab.active::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -20px;
    height: 6px; background: #e47911; border-radius: 3px;
  }
  .tabs .right-icon { margin-left: auto; }

  /* Content area */
  .content {
    padding: 24px;
  }
  .section-title {
    font-size: 44px;
    font-weight: 800;
    color: #111;
    margin: 12px 0 24px 0;
  }

  /* Product compare strip */
  .product-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .prod {
    text-align: left;
  }
  .img {
    width: 100%;
    height: 200px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 26px;
    border-radius: 8px;
  }
  .prod .label-small {
    font-size: 26px; color: #111; line-height: 1.2; margin-top: 12px;
    font-weight: 700;
  }
  .prod .sub {
    font-size: 26px; color: #2a2a2a;
  }

  /* Comparison table */
  .compare-table {
    margin-top: 18px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
  }
  .row {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    border-top: 1px solid #f0f0f0;
    background: #fff;
  }
  .row:first-child { border-top: none; }
  .cell {
    padding: 22px;
    font-size: 28px;
    color: #222;
    border-left: 1px solid #f0f0f0;
  }
  .cell:first-child { border-left: none; background:#fafafa; color:#555; font-weight:700; }
  .rating-stars { color: #f5a623; font-size: 28px; }
  .muted { color: #6b6b6b; font-size: 26px; }

  .badge-line {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  }
  .badge {
    background: #232f3e; color: #fff; font-size: 22px; padding: 6px 10px; border-radius: 8px;
  }
  .badge.light { background: #eaf5ff; color: #0077cc; }
  .seller { color: #333; font-size: 26px; }

  /* See more details */
  .see-more {
    margin-top: 18px;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    padding: 28px;
    display: flex; align-items: center; justify-content: center;
    color: #333; font-size: 36px; gap: 12px;
  }

  /* Customers also bought */
  .also-title {
    font-size: 46px; font-weight: 800; margin: 40px 0 16px 0; color: #111;
  }
  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .tile {
    height: 440px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    border-radius: 10px;
    display:flex; align-items:center; justify-content:center; color:#777; font-size:28px;
  }

  /* Bottom navigation */
  .bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 140px;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: #111;
    font-size: 26px;
  }
  .nav-item .ni {
    width: 44px; height: 44px;
  }
  .gesture-line {
    position: absolute;
    bottom: 150px; left: 50%;
    transform: translateX(-50%);
    width: 520px; height: 10px; background: #c6c6c6; border-radius: 6px;
    opacity: .7;
  }
</style>
</head>
<body>
<div id="render-target">

  <div class="top-gradient">
    <div class="status-row">
      <div>11:51</div>
      <div style="display:flex; gap:16px; align-items:center; color:#333;">
        <span>15Β°</span>
        <span>β€’</span>
        <span style="width:16px; height:16px; background:#333; border-radius:50%; display:inline-block;"></span>
      </div>
    </div>

    <div class="search-wrap">
      <div class="search-bar">
        <div class="icon">
          <svg viewBox="0 0 24 24"><path d="M4 12l4-4v3h7v2H8v3z"/></svg>
        </div>
        <div class="icon">
          <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 105.3 14L22 22l-2 2-6.7-6A8 8 0 0010 2zm0 2a6 6 0 110 12A6 6 0 0110 4z"/></svg>
        </div>
        <input value="nike shoes for men" />
        <div class="icon">
          <svg viewBox="0 0 24 24"><path d="M5 7h2V5h2V3H7a2 2 0 00-2 2v2zm12 0h2V5a2 2 0 00-2-2h-2v2h2v2zM5 17v2a2 2 0 002 2h2v-2H7v-2H5zm12 0h2v2a2 2 0 01-2 2h-2v-2h2v-2z"/></svg>
        </div>
      </div>
    </div>
  </div>

  <div class="tabs">
    <div class="tab">Details</div>
    <div class="tab active">Compare</div>
    <div class="tab">Reviews</div>
    <div class="right-icon icon">
      <svg viewBox="0 0 24 24"><path d="M7 14l5-5 5 5z"/></svg>
    </div>
  </div>

  <div class="content">
    <div class="section-title">Compare with similar items</div>

    <div class="product-strip">
      <div class="prod">
        <div class="img">[IMG: Black Nike Shoe]</div>
        <div class="label-small">This item Nike Mens Air Zoom Vomero 16 R...</div>
      </div>
      <div class="prod">
        <div class="img">[IMG: Blue Nike Shoe]</div>
        <div class="label-small">Nike Mens Air Zoom Rival Fly 3...</div>
      </div>
      <div class="prod">
        <div class="img">[IMG: Black Nike Shoe]</div>
        <div class="label-small">Nike Mens Air Zoom Pegasus 4...</div>
      </div>
    </div>

    <div class="compare-table">
      <div class="row">
        <div class="cell">RATING</div>
        <div class="cell">
          <div class="rating-stars">β˜…β˜…β˜…β˜…β˜…</div>
          <div class="muted">289 reviews</div>
        </div>
        <div class="cell">
          <div class="rating-stars">β˜…β˜…β˜…β˜…β˜…</div>
          <div class="muted">33 reviews</div>
        </div>
        <div class="cell">
          <div class="rating-stars">β˜…β˜…β˜…β˜…β˜†</div>
          <div class="muted">49 reviews</div>
        </div>
      </div>

      <div class="row">
        <div class="cell">PRICE</div>
        <div class="cell"><strong>β‚Ή10,154.30</strong></div>
        <div class="cell"><strong>β‚Ή7,284.00</strong></div>
        <div class="cell"><strong>β‚Ή8,327.00</strong></div>
      </div>

      <div class="row">
        <div class="cell">SHIPPING</div>
        <div class="cell">
          <div class="badge-line">
            <span class="badge">Fulfilled</span>
            <span class="badge light">FREE Delivery</span>
          </div>
        </div>
        <div class="cell">
          <div class="badge-line">
            <span class="badge">Fulfilled</span>
            <span class="badge light">FREE Delivery</span>
          </div>
        </div>
        <div class="cell">
          <div class="badge-line">
            <span class="badge">Fulfilled</span>
            <span class="badge light">FREE Delivery</span>
          </div>
        </div>
      </div>

      <div class="row">
        <div class="cell">SOLD BY</div>
        <div class="cell"><div class="seller">Sri Sai Enterprises Store</div></div>
        <div class="cell"><div class="seller">Cocoblu Retail</div></div>
        <div class="cell"><div class="seller">Cocoblu Retail</div></div>
      </div>
    </div>

    <div class="see-more">
      <span class="icon"><svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg></span>
      See more details
    </div>

    <div class="also-title">Customers who bought this item also bought</div>

    <div class="gallery">
      <div class="tile">[IMG: White Nike Shoe]</div>
      <div class="tile">[IMG: Grey Nike Shoe]</div>
    </div>
  </div>

  <div class="gesture-line"></div>

  <div class="bottom-nav">
    <div class="nav-item">
      <div class="ni icon"><svg viewBox="0 0 24 24"><path d="M12 3l9 8h-3v9H6v-9H3z"/></svg></div>
      <div>Home</div>
    </div>
    <div class="nav-item">
      <div class="ni icon"><svg viewBox="0 0 24 24"><path d="M12 12a5 5 0 100-10 5 5 0 000 10zm-7 9v-2a7 7 0 0114 0v2z"/></svg></div>
      <div>You</div>
    </div>
    <div class="nav-item">
      <div class="ni icon"><svg viewBox="0 0 24 24"><path d="M12 6v4l3 3-1.4 1.4L10 11V6zM6 12a6 6 0 1111.7 2h-2.2A4 4 0 1010 12z"/></svg></div>
      <div>More</div>
    </div>
    <div class="nav-item">
      <div class="ni icon"><svg viewBox="0 0 24 24"><path d="M7 6h14l-2 9H9L7 6zm-2 0H2V4h3l3.6 9.6L8 16a2 2 0 102 2 2 2 0 00-2-2h8a2 2 0 102 2 2 2 0 00-2-2"/></svg></div>
      <div>Cart</div>
    </div>
    <div class="nav-item">
      <div class="ni icon"><svg viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg></div>
      <div>Menu</div>
    </div>
  </div>

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