yhzheng1031 commited on
Commit
6c73790
·
verified ·
1 Parent(s): 8561c5c

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. code/3466/3466_0.html +287 -0
  2. code/3467/3467_0.html +261 -0
  3. code/3470/3470_1.html +160 -0
  4. code/3470/3470_2.html +313 -0
  5. code/3470/3470_5.html +329 -0
  6. code/3470/3470_6.html +321 -0
  7. code/3471/3471_0.html +466 -0
  8. code/3471/3471_1.html +245 -0
  9. code/3471/3471_2.html +260 -0
  10. code/3471/3471_4.html +326 -0
  11. code/3473/3473_0.html +328 -0
  12. code/3473/3473_1.html +308 -0
  13. code/3473/3473_2.html +256 -0
  14. code/3473/3473_3.html +291 -0
  15. code/3473/3473_4.html +203 -0
  16. code/3477/3477_0.html +321 -0
  17. code/3477/3477_1.html +380 -0
  18. code/3477/3477_2.html +381 -0
  19. code/3479/3479_0.html +412 -0
  20. code/3479/3479_1.html +285 -0
  21. code/3479/3479_2.html +273 -0
  22. code/3479/3479_3.html +268 -0
  23. code/3479/3479_4.html +118 -0
  24. code/3480/3480_0.html +339 -0
  25. code/3480/3480_1.html +414 -0
  26. code/3480/3480_3.html +390 -0
  27. code/3480/3480_4.html +238 -0
  28. code/3480/3480_5.html +324 -0
  29. code/3485/3485_0.html +202 -0
  30. code/3485/3485_1.html +506 -0
  31. code/3485/3485_2.html +237 -0
  32. code/3485/3485_3.html +311 -0
  33. code/3485/3485_4.html +332 -0
  34. code/3485/3485_5.html +369 -0
  35. code/3485/3485_6.html +201 -0
  36. code/3485/3485_7.html +221 -0
  37. code/3486/3486_0.html +273 -0
  38. code/3486/3486_1.html +247 -0
  39. code/3486/3486_2.html +326 -0
  40. code/3488/3488_0.html +445 -0
  41. code/3488/3488_1.html +320 -0
  42. code/349/349_0.html +336 -0
  43. code/349/349_1.html +334 -0
  44. code/349/349_10.html +209 -0
  45. code/349/349_11.html +165 -0
  46. code/349/349_12.html +267 -0
  47. code/349/349_2.html +320 -0
  48. code/349/349_3.html +219 -0
  49. code/349/349_4.html +276 -0
  50. code/349/349_5.html +203 -0
code/3466/3466_0.html ADDED
@@ -0,0 +1,287 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Survey Form UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Top app/header bar */
16
+ .top-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 150px;
22
+ background: #45A05A; /* survey green */
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 40px;
26
+ color: #fff;
27
+ box-sizing: border-box;
28
+ }
29
+ .status-left {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 22px;
33
+ font-size: 38px;
34
+ letter-spacing: 0.5px;
35
+ }
36
+ .status-right {
37
+ margin-left: auto;
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 26px;
41
+ }
42
+ .icon {
43
+ width: 40px;
44
+ height: 40px;
45
+ }
46
+
47
+ /* Main content */
48
+ .content {
49
+ position: absolute;
50
+ top: 150px;
51
+ left: 0;
52
+ width: 100%;
53
+ height: 2250px;
54
+ overflow: hidden;
55
+ background: #fff;
56
+ }
57
+ .form-area {
58
+ padding: 60px 75px 30px 75px;
59
+ }
60
+ .question-block {
61
+ margin-bottom: 30px;
62
+ }
63
+ .question-title {
64
+ font-size: 46px;
65
+ color: #333;
66
+ line-height: 64px;
67
+ margin: 10px 0 22px 0;
68
+ }
69
+
70
+ .option {
71
+ display: flex;
72
+ align-items: center;
73
+ gap: 30px;
74
+ margin: 28px 0;
75
+ }
76
+ .option label {
77
+ font-size: 40px;
78
+ color: #222;
79
+ line-height: 52px;
80
+ }
81
+ .chk {
82
+ appearance: none;
83
+ width: 60px;
84
+ height: 60px;
85
+ border: 3px solid #9E9E9E;
86
+ border-radius: 10px;
87
+ background: #fff;
88
+ position: relative;
89
+ }
90
+ .chk:checked::after {
91
+ content: "";
92
+ position: absolute;
93
+ left: 16px;
94
+ top: 8px;
95
+ width: 20px;
96
+ height: 34px;
97
+ border-right: 6px solid #2E7D32;
98
+ border-bottom: 6px solid #2E7D32;
99
+ transform: rotate(45deg);
100
+ }
101
+
102
+ .text-input {
103
+ width: 930px;
104
+ height: 110px;
105
+ border: 3px solid #7B7B7B;
106
+ border-radius: 6px;
107
+ font-size: 38px;
108
+ padding: 18px 24px;
109
+ box-sizing: border-box;
110
+ color: #333;
111
+ margin-left: 90px;
112
+ margin-top: 10px;
113
+ }
114
+
115
+ .sub-question {
116
+ margin-top: 60px;
117
+ margin-bottom: 16px;
118
+ font-size: 52px;
119
+ color: #333;
120
+ line-height: 72px;
121
+ }
122
+
123
+ .textarea {
124
+ width: 930px;
125
+ height: 200px;
126
+ border: 3px solid #7B7B7B;
127
+ border-radius: 6px;
128
+ font-size: 38px;
129
+ padding: 18px 24px;
130
+ box-sizing: border-box;
131
+ color: #333;
132
+ margin-top: 16px;
133
+ }
134
+
135
+ .btn {
136
+ margin: 60px auto 0 auto;
137
+ width: 930px;
138
+ height: 130px;
139
+ background: #2E7D32;
140
+ color: #fff;
141
+ font-size: 48px;
142
+ border-radius: 8px;
143
+ display: flex;
144
+ align-items: center;
145
+ justify-content: center;
146
+ }
147
+
148
+ .powered {
149
+ margin-top: 60px;
150
+ text-align: center;
151
+ color: #666;
152
+ font-size: 34px;
153
+ }
154
+ .monkey-row {
155
+ margin-top: 18px;
156
+ display: flex;
157
+ justify-content: center;
158
+ align-items: center;
159
+ gap: 26px;
160
+ color: #2E7D32;
161
+ font-weight: bold;
162
+ font-size: 42px;
163
+ }
164
+ .img-placeholder {
165
+ width: 70px;
166
+ height: 70px;
167
+ background: #E0E0E0;
168
+ border: 1px solid #BDBDBD;
169
+ display: flex;
170
+ justify-content: center;
171
+ align-items: center;
172
+ color: #757575;
173
+ border-radius: 50%;
174
+ font-size: 16px;
175
+ }
176
+ .link-row {
177
+ margin-top: 26px;
178
+ text-align: center;
179
+ color: #444;
180
+ font-size: 34px;
181
+ }
182
+ .link-row span {
183
+ text-decoration: underline;
184
+ color: #317F3E;
185
+ cursor: pointer;
186
+ }
187
+
188
+ .footer {
189
+ position: absolute;
190
+ bottom: 100px;
191
+ left: 0;
192
+ width: 100%;
193
+ text-align: center;
194
+ color: #555;
195
+ font-size: 36px;
196
+ }
197
+
198
+ .nav-pill {
199
+ position: absolute;
200
+ bottom: 38px;
201
+ left: 50%;
202
+ transform: translateX(-50%);
203
+ width: 300px;
204
+ height: 16px;
205
+ background: #DADADA;
206
+ border-radius: 10px;
207
+ }
208
+ </style>
209
+ </head>
210
+ <body>
211
+ <div id="render-target">
212
+
213
+ <!-- Top header/status bar -->
214
+ <div class="top-bar">
215
+ <div class="status-left">
216
+ <span>10:54</span>
217
+ <!-- Simple play triangle to mimic small app icon -->
218
+ <svg class="icon" viewBox="0 0 24 24">
219
+ <polygon points="6,4 20,12 6,20" fill="#ffffff"></polygon>
220
+ </svg>
221
+ </div>
222
+ <div class="status-right">
223
+ <!-- WiFi icon -->
224
+ <svg class="icon" viewBox="0 0 24 24">
225
+ <path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none"/>
226
+ <path d="M6 12c3-3 9-3 12 0" stroke="#fff" stroke-width="2" fill="none"/>
227
+ <circle cx="12" cy="16" r="2" fill="#fff"/>
228
+ </svg>
229
+ <!-- Battery icon -->
230
+ <svg class="icon" viewBox="0 0 28 24">
231
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" stroke="#fff" stroke-width="2" fill="none"/>
232
+ <rect x="4" y="8" width="16" height="8" fill="#fff"/>
233
+ <rect x="22" y="9" width="4" height="6" rx="1" fill="#fff"/>
234
+ </svg>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Main content -->
239
+ <div class="content">
240
+ <div class="form-area">
241
+ <!-- Dietary restrictions list -->
242
+ <div class="question-block">
243
+ <div class="option">
244
+ <input class="chk" type="checkbox" id="opt1">
245
+ <label for="opt1">Food Allergy (e.g. gluten free, peanut free)</label>
246
+ </div>
247
+ <div class="option">
248
+ <input class="chk" type="checkbox" id="opt2">
249
+ <label for="opt2">Intermittent Fasting</label>
250
+ </div>
251
+ <div class="option">
252
+ <input class="chk" type="checkbox" id="opt3">
253
+ <label for="opt3">I do not follow any of these dietary restrictions</label>
254
+ </div>
255
+ <div class="option">
256
+ <input class="chk" type="checkbox" id="opt4">
257
+ <label for="opt4">Prefer not to answer</label>
258
+ </div>
259
+ <div class="option">
260
+ <input class="chk" type="checkbox" id="opt5">
261
+ <label for="opt5">Other (please specify)</label>
262
+ </div>
263
+ <input class="text-input" type="text" placeholder="">
264
+ </div>
265
+
266
+ <!-- Question 9 -->
267
+ <div class="question-block">
268
+ <div class="sub-question">9. What food dishes or beverages will you bring? (optional)</div>
269
+ <textarea class="textarea"></textarea>
270
+ </div>
271
+
272
+ <div class="btn">Done</div>
273
+
274
+ <div class="powered">Powered by</div>
275
+ <div class="monkey-row">
276
+ <div class="img-placeholder">[IMG]</div>
277
+ <div>SurveyMonkey</div>
278
+ </div>
279
+ <div class="link-row">See how easy it is to <span>create a survey</span>.</div>
280
+ </div>
281
+ </div>
282
+
283
+ <div class="footer">Privacy &amp; Cookie Notice</div>
284
+ <div class="nav-pill"></div>
285
+ </div>
286
+ </body>
287
+ </html>
code/3467/3467_0.html ADDED
@@ -0,0 +1,261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Yogurt Results UI</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; color:#222; }
9
+ #render-target {
10
+ width:1080px; height:2400px; position:relative; overflow:hidden;
11
+ background:#ffffff; border-radius:24px; box-shadow:0 6px 24px rgba(0,0,0,0.08);
12
+ }
13
+
14
+ /* Top gradient area */
15
+ .top-area {
16
+ position:relative;
17
+ width:100%;
18
+ height:320px;
19
+ background:linear-gradient(180deg,#79d2d1 0%, #a6e7df 100%);
20
+ }
21
+ .status-bar {
22
+ height:56px; display:flex; align-items:center; justify-content:space-between;
23
+ padding:0 32px; color:#1a1a1a; font-size:30px; opacity:0.9;
24
+ }
25
+ .status-right { display:flex; align-items:center; gap:22px; }
26
+ .header-row {
27
+ display:flex; align-items:center; gap:24px;
28
+ padding:12px 24px;
29
+ }
30
+ .back-btn {
31
+ width:64px; height:64px; display:flex; align-items:center; justify-content:center;
32
+ border-radius:16px; color:#2b2b2b;
33
+ }
34
+ .search-pill {
35
+ flex:1; height:96px; background:#fff; border-radius:24px;
36
+ display:flex; align-items:center; padding:0 28px; box-shadow:0 6px 16px rgba(0,0,0,0.15);
37
+ gap:22px; font-size:40px; color:#444;
38
+ }
39
+ .search-pill .right-icon {
40
+ margin-left:auto; width:60px; height:60px; border-radius:16px;
41
+ display:flex; align-items:center; justify-content:center;
42
+ background:#f2f2f2; border:1px solid #d0d0d0;
43
+ }
44
+
45
+ /* Location bar */
46
+ .location-bar {
47
+ margin-top:8px; background:#9fe4dd; color:#1a2a2a;
48
+ display:flex; align-items:center; gap:18px; padding:24px 28px; font-size:36px;
49
+ border-bottom:1px solid rgba(0,0,0,0.06);
50
+ }
51
+ .chev-down { margin-left:auto; }
52
+
53
+ /* Main content */
54
+ .content { background:#fff; padding:28px; }
55
+ .page-title { font-size:52px; font-weight:700; margin:18px 0 8px; }
56
+ .sponsored-line { display:flex; align-items:center; gap:12px; color:#6b6b6b; font-size:32px; margin-bottom:18px; }
57
+
58
+ /* Promo row */
59
+ .promo-row {
60
+ display:flex; gap:24px; overflow-x:hidden; margin-bottom:12px;
61
+ }
62
+ .promo-card {
63
+ width:510px; background:#fff; border:1px solid #e6e6e6; border-radius:16px;
64
+ }
65
+ .promo-img {
66
+ width:100%; height:360px; background:#E0E0E0; border-bottom:1px solid #BDBDBD;
67
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:34px;
68
+ }
69
+ .promo-body { padding:20px; }
70
+ .deal-badge {
71
+ display:inline-block; background:#a13f14; color:#fff; padding:12px 16px; border-radius:8px; font-size:30px; margin-bottom:8px;
72
+ }
73
+ .price-line { display:flex; align-items:center; gap:16px; font-size:44px; }
74
+ .prime-tag { color:#1172e2; font-weight:700; font-size:40px; }
75
+ .strike { color:#888; text-decoration:line-through; }
76
+ .subdued { color:#7a7a7a; font-size:32px; }
77
+
78
+ .divider-tip {
79
+ margin:34px 0; background:#f7f7f7; border-radius:16px; padding:22px 24px; color:#666; font-size:36px;
80
+ box-shadow:0 10px 20px rgba(0,0,0,0.06);
81
+ }
82
+
83
+ /* Product list card */
84
+ .product-card {
85
+ display:flex; gap:24px; background:#fff; border:1px solid #e6e6e6; border-radius:22px; padding:24px; margin-bottom:24px;
86
+ }
87
+ .prod-img {
88
+ width:280px; height:280px; background:#E0E0E0; border:1px solid #BDBDBD; border-radius:12px;
89
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:30px;
90
+ }
91
+ .prod-info { flex:1; }
92
+ .prod-title { font-size:42px; font-weight:700; line-height:1.2; margin:8px 0 12px; }
93
+ .chip-row { display:flex; gap:12px; margin-bottom:12px; }
94
+ .chip {
95
+ display:inline-block; padding:10px 14px; border:1px solid #cfcfcf; border-radius:12px; font-size:30px; color:#444; background:#fafafa;
96
+ }
97
+ .rating-row { display:flex; align-items:center; gap:12px; font-size:34px; margin-bottom:8px; }
98
+ .stars { display:flex; gap:6px; }
99
+ .star { width:28px; height:28px; color:#f49d26; }
100
+ .big-price { font-size:54px; font-weight:700; }
101
+ .coupon { display:inline-block; background:#68c45e; color:#fff; padding:10px 14px; border-radius:10px; font-size:30px; margin:8px 0; }
102
+ .shipping { color:#1172e2; font-weight:700; font-size:36px; display:flex; align-items:center; gap:8px; }
103
+ .free-delivery { color:#6b6b6b; font-size:32px; }
104
+
105
+ /* Bottom nav */
106
+ .bottom-nav {
107
+ position:absolute; left:0; right:0; bottom:88px; height:128px; background:#fff;
108
+ border-top:1px solid #e5e5e5; display:flex; align-items:center; justify-content:space-around;
109
+ }
110
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:8px; color:#2b2b2b; font-size:30px; }
111
+ .nav-icon { width:48px; height:48px; color:#1f9fb1; }
112
+ .nav-item.inactive .nav-icon { color:#444; }
113
+ .gesture { position:absolute; left:50%; transform:translateX(-50%); bottom:24px; width:360px; height:16px; background:#cfcfcf; border-radius:10px; }
114
+
115
+ /* Small helpers */
116
+ .muted { color:#6b6b6b; }
117
+ </style>
118
+ </head>
119
+ <body>
120
+ <div id="render-target">
121
+ <div class="top-area">
122
+ <div class="status-bar">
123
+ <div>2:43</div>
124
+ <div class="status-right">
125
+ <svg width="36" height="36" viewBox="0 0 24 24"><path d="M4 12h10" stroke="#222" stroke-width="2" stroke-linecap="round"/></svg>
126
+ <svg width="36" height="36" viewBox="0 0 24 24"><path d="M3 12l7-7v14z" fill="#222"/></svg>
127
+ <div style="font-size:28px;">100%</div>
128
+ <svg width="36" height="36" viewBox="0 0 24 24"><rect x="2" y="6" width="16" height="12" rx="2" ry="2" stroke="#222" fill="none" stroke-width="2"/><rect x="4" y="8" width="12" height="8" fill="#222"/></svg>
129
+ </div>
130
+ </div>
131
+
132
+ <div class="header-row">
133
+ <div class="back-btn">
134
+ <svg width="40" height="40" viewBox="0 0 24 24"><path d="M15 19l-7-7 7-7" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
135
+ </div>
136
+ <div class="search-pill">
137
+ <svg width="40" height="40" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" stroke="#777" stroke-width="2" fill="none"/><path d="M20 20l-4-4" stroke="#777" stroke-width="2" stroke-linecap="round"/></svg>
138
+ <div>Yogurt</div>
139
+ <div class="right-icon">
140
+ <svg width="36" height="36" viewBox="0 0 24 24"><rect x="3" y="3" width="18" height="18" rx="4" ry="4" stroke="#999" fill="none" stroke-width="2"/><rect x="7" y="7" width="4" height="4" fill="#999"/><rect x="13" y="13" width="4" height="4" fill="#999"/></svg>
141
+ </div>
142
+ </div>
143
+ </div>
144
+
145
+ <div class="location-bar">
146
+ <svg width="36" height="36" viewBox="0 0 24 24"><path d="M12 21s7-7 7-11a7 7 0 1 0-14 0c0 4 7 11 7 11z" stroke="#1a2a2a" fill="none" stroke-width="2"/><circle cx="12" cy="10" r="3" fill="#1a2a2a"/></svg>
147
+ <div>Delivering to Meerut 250002 - Update location</div>
148
+ <div class="chev-down">
149
+ <svg width="36" height="36" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#1a2a2a" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
150
+ </div>
151
+ </div>
152
+ </div>
153
+
154
+ <div class="content">
155
+ <div class="page-title">Organic Kombucha, Milk Kefir and Yogurt</div>
156
+ <div class="sponsored-line">
157
+ <span>Sponsored</span>
158
+ <svg width="26" height="26" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" stroke="#777" fill="none"/><circle cx="12" cy="8" r="1.5" fill="#777"/><path d="M12 11v6" stroke="#777" stroke-width="2" stroke-linecap="round"/></svg>
159
+ </div>
160
+
161
+ <div class="promo-row">
162
+ <div class="promo-card">
163
+ <div class="promo-img">[IMG: Zoh brand logo]</div>
164
+ <div class="promo-body muted">Save up to 24% on Zoh Probiotics</div>
165
+ </div>
166
+
167
+ <div class="promo-card">
168
+ <div class="promo-img">[IMG: Kombucha bottle assortment]</div>
169
+ <div class="promo-body">
170
+ <div class="deal-badge">Deal of the Day</div>
171
+ <div class="price-line">
172
+ <span class="big-price">₹910</span>
173
+ <span class="prime-tag">prime</span>
174
+ </div>
175
+ <div class="subdued"><span class="strike">₹1,200</span> (24% off)</div>
176
+ </div>
177
+ </div>
178
+ </div>
179
+
180
+ <div class="divider-tip">Check each product page for other buying options.</div>
181
+
182
+ <div class="product-card">
183
+ <div class="prod-img">[IMG: Greek yogurt starter pack]</div>
184
+ <div class="prod-info">
185
+ <div class="muted">Sponsored</div>
186
+ <div class="prod-title">Zoh Probiotics Greek Yogurt Starter Culture - Creamy, Tangy, and Nutrient-Packed | Reusable...</div>
187
+ <div class="chip-row">
188
+ <div class="chip">Plain</div>
189
+ <div class="chip">2 Count (Pack of 1)</div>
190
+ </div>
191
+ <div class="rating-row">
192
+ <div>3.7</div>
193
+ <div class="stars">
194
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="currentColor"/></svg>
195
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="currentColor"/></svg>
196
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="currentColor"/></svg>
197
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="currentColor"/></svg>
198
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="#ddd"/></svg>
199
+ </div>
200
+ <div class="muted">(480)</div>
201
+ </div>
202
+
203
+ <div class="deal-badge">Deal of the Day</div>
204
+ <div class="big-price">₹527 <span class="subdued" style="font-size:36px;">(₹1,055.27/100 g) M.R.P. <span class="strike">₹600</span></span></div>
205
+ <div class="subdued">(12% off)</div>
206
+ <div class="coupon">Save 3%</div> <span class="subdued">with coupon</span>
207
+ <div class="shipping">
208
+ <svg width="28" height="28" viewBox="0 0 24 24"><path d="M5 13l4 4 10-10" stroke="#1172e2" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
209
+ prime Get it by Wednesday, 29 November
210
+ </div>
211
+ <div class="free-delivery">FREE Delivery by Amazon</div>
212
+ </div>
213
+ </div>
214
+
215
+ <div class="product-card">
216
+ <div class="prod-img">[IMG: Brown powder packet]</div>
217
+ <div class="prod-info">
218
+ <div class="muted">Sponsored</div>
219
+ <div class="prod-title">Alla's Posh Flavors Posh Flavors Bulgarian Yogurt Culture, New...</div>
220
+ <div class="rating-row">
221
+ <div>4.2</div>
222
+ <div class="stars">
223
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="currentColor"/></svg>
224
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="currentColor"/></svg>
225
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="currentColor"/></svg>
226
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="currentColor"/></svg>
227
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z" fill="#ddd"/></svg>
228
+ </div>
229
+ </div>
230
+ <div class="big-price">₹799 <span class="subdued" style="font-size:36px;">M.R.P. <span class="strike">₹950</span></span></div>
231
+ <div class="free-delivery">FREE Delivery</div>
232
+ </div>
233
+ </div>
234
+ </div>
235
+
236
+ <div class="bottom-nav">
237
+ <div class="nav-item">
238
+ <svg class="nav-icon" viewBox="0 0 24 24"><path d="M3 10l9-7 9 7v9a2 2 0 0 1-2 2h-14a2 2 0 0 1-2-2z" fill="currentColor"/></svg>
239
+ <div>Home</div>
240
+ </div>
241
+ <div class="nav-item inactive">
242
+ <svg class="nav-icon" viewBox="0 0 24 24"><circle cx="12" cy="8" r="4" fill="currentColor"/><path d="M4 20c0-4 4-6 8-6s8 2 8 6" fill="currentColor"/></svg>
243
+ <div>You</div>
244
+ </div>
245
+ <div class="nav-item inactive">
246
+ <svg class="nav-icon" viewBox="0 0 24 24"><path d="M4 15l8-8 8 8-8 8z" fill="currentColor"/></svg>
247
+ <div>More</div>
248
+ </div>
249
+ <div class="nav-item inactive">
250
+ <svg class="nav-icon" viewBox="0 0 24 24"><path d="M6 6h14l-2 9h-12l-2-9zM6 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm12 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" fill="currentColor"/></svg>
251
+ <div>Cart</div>
252
+ </div>
253
+ <div class="nav-item inactive">
254
+ <svg class="nav-icon" viewBox="0 0 24 24"><path d="M3 6h18v2H3zM3 11h18v2H3zM3 16h18v2H3z" fill="currentColor"/></svg>
255
+ <div>Menu</div>
256
+ </div>
257
+ </div>
258
+ <div class="gesture"></div>
259
+ </div>
260
+ </body>
261
+ </html>
code/3470/3470_1.html ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Currency Converter Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #1f2226;
12
+ border-radius: 0;
13
+ }
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 120px; background: #0c0c0d; color: #fff; display: flex; align-items: center; padding: 0 32px; box-sizing: border-box;
17
+ font-weight: 600; letter-spacing: 0.5px; font-size: 40px;
18
+ }
19
+ .status-left { flex: 1; }
20
+ .status-right { display: flex; align-items: center; gap: 26px; }
21
+ .icon { width: 44px; height: 44px; display: inline-block; }
22
+ /* Top promo pill */
23
+ .promo-pill {
24
+ position: absolute; left: 40px; right: 40px; top: 146px;
25
+ background: #ffffff; border-radius: 28px; height: 88px;
26
+ box-shadow: 0 2px 6px rgba(0,0,0,0.2);
27
+ display: flex; align-items: center; padding: 0 20px; gap: 20px; box-sizing: border-box;
28
+ }
29
+ .promo-icon {
30
+ width: 74px; height: 74px; border-radius: 16px; background:#E0E0E0; border:1px solid #BDBDBD; display:flex; align-items:center; justify-content:center; color:#757575; font-size:24px;
31
+ }
32
+ .promo-text { color: #222; font-size: 34px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
33
+ .promo-cta { color: #1775ff; font-size: 32px; font-weight: 600; display:flex; align-items:center; gap:10px; }
34
+ /* App header / toolbar */
35
+ .app-header {
36
+ position: absolute; top: 254px; left: 0; right: 0; height: 120px; display: flex; align-items: center; padding: 0 32px; box-sizing: border-box;
37
+ background: #262a2e;
38
+ }
39
+ .hamburger { width: 72px; height: 72px; display:flex; align-items:center; justify-content:center; margin-right: 16px; }
40
+ .updated-text {
41
+ position: absolute; top: 368px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.25); font-size: 34px;
42
+ }
43
+ /* Currency rows */
44
+ .rows { position: absolute; top: 430px; left: 0; right: 0; padding: 0 32px; box-sizing: border-box; }
45
+ .row {
46
+ height: 150px; display: flex; align-items: center; gap: 24px; padding: 0 10px; box-sizing: border-box;
47
+ border-bottom: 1px solid rgba(255,255,255,0.06);
48
+ }
49
+ .flag {
50
+ width: 150px; height: 100px; background:#E0E0E0; border:1px solid #BDBDBD; display:flex; align-items:center; justify-content:center; color:#757575; font-size:28px; border-radius: 10px;
51
+ }
52
+ .code { color: #c9d1d9; font-weight: 700; font-size: 56px; letter-spacing: 1px; display:flex; align-items:center; gap: 14px; }
53
+ .amount {
54
+ margin-left: auto; width: 200px; height: 100px; background:#2d3237; border-radius: 8px; display:flex; align-items:center; justify-content:center; color:#aeb6bf; font-size: 64px; font-weight: 700; border: 1px solid rgba(255,255,255,0.08);
55
+ }
56
+ /* Big Advertisement card */
57
+ .ad-card {
58
+ position: absolute; left: 24px; right: 24px; top: 720px; background: #ffffff; border-radius: 28px; box-shadow: 0 8px 20px rgba(0,0,0,0.35); overflow: hidden;
59
+ }
60
+ .ad-label {
61
+ position: absolute; top: -26px; left: 26px; background: #E0E0E0; color: #5a5a5a; font-weight: 700;
62
+ font-size: 34px; padding: 10px 24px; border-radius: 26px; border: 1px solid #BDBDBD;
63
+ }
64
+ .ad-body {
65
+ padding: 18px; box-sizing: border-box;
66
+ }
67
+ .ad-img {
68
+ width: 100%; height: 1050px; background:#E0E0E0; border:1px solid #BDBDBD; border-radius: 18px;
69
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size: 46px; text-align:center;
70
+ }
71
+ .ad-footer {
72
+ padding: 26px 20px 34px; color: #444; font-size: 38px;
73
+ }
74
+ /* Keypad preview area */
75
+ .keypad {
76
+ position: absolute; bottom: 230px; left: 0; right: 0; height: 260px; background: #111315; display:flex; align-items:center; justify-content:center; gap: 30px;
77
+ box-shadow: inset 0 8px 24px rgba(0,0,0,0.5);
78
+ }
79
+ .key {
80
+ width: 240px; height: 140px; background:#1e2226; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08);
81
+ display:flex; align-items:center; justify-content:center; color:#d7dde5; font-size: 60px; font-weight: 700;
82
+ }
83
+ /* Bottom banner ad */
84
+ .bottom-ad {
85
+ position: absolute; left: 0; right: 0; bottom: 120px; height: 120px; background: #22272b; display:flex; align-items:center; padding: 0 22px; gap: 22px; box-sizing: border-box; border-top: 1px solid rgba(255,255,255,0.06);
86
+ }
87
+ .bottom-ad .thumb { width: 120px; height: 90px; background:#E0E0E0; border:1px solid #BDBDBD; display:flex; align-items:center; justify-content:center; color:#757575; font-size: 24px; border-radius: 10px; }
88
+ .bottom-ad .meta { color:#d7dde5; font-size: 30px; line-height: 1.1; }
89
+ .bottom-ad .open-btn {
90
+ margin-left: auto; background:#22c55e; color:#fff; font-weight: 700; border-radius: 16px; padding: 16px 28px; font-size: 34px;
91
+ }
92
+ /* Home indicator */
93
+ .home-indicator {
94
+ position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
95
+ width: 320px; height: 12px; border-radius: 6px; background: rgba(255,255,255,0.85);
96
+ }
97
+ </style>
98
+ </head>
99
+ <body>
100
+ <div id="render-target">
101
+ <!-- Status bar -->
102
+ <div class="status-bar">
103
+ <div class="status-left">12:35</div>
104
+ <div class="status-right">
105
+ <!-- simple glyphs -->
106
+ <svg class="icon" viewBox="0 0 24 24" fill="#fff" opacity="0.9"><circle cx="12" cy="12" r="9" stroke="none"/></svg>
107
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2" opacity="0.9"><path d="M2 18l10-12 10 12"/></svg>
108
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2" opacity="0.9"><path d="M4 12h16"/><path d="M12 4v16"/></svg>
109
+ <!-- battery -->
110
+ <svg class="icon" viewBox="0 0 28 24">
111
+ <rect x="1" y="6" width="22" height="12" rx="2" fill="none" stroke="#fff" stroke-width="2"/>
112
+ <rect x="3" y="8" width="18" height="8" rx="1" fill="#fff"/>
113
+ <rect x="23" y="9" width="3" height="6" rx="1" fill="#fff"/>
114
+ </svg>
115
+ <div style="color:#fff; font-size:34px; font-weight:700;">100%</div>
116
+ </div>
117
+ </div>
118
+
119
+ <!-- Top promo / "Continue to app" -->
120
+ <div class="promo-pill">
121
+ <div class="promo-icon">[APP]</div>
122
+ <div class="promo-text">Currency Converter …</div>
123
+ <div class="promo-cta">Continue to app
124
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#1775ff"><path d="M8 5l8 7-8 7z"/></svg>
125
+ </div>
126
+ </div>
127
+
128
+ <!-- App header -->
129
+ <div class="app-header">
130
+ <div class="hamburger">
131
+ <svg width="56" height="56" viewBox="0 0 24 24" stroke="#cbd5e1" stroke-width="2" fill="none" stroke-linecap="round">
132
+ <path d="M3 6h18M3 12h18M3 18h18"/>
133
+ </svg>
134
+ </div>
135
+ </div>
136
+ <div class="updated-text">Updated: 12:26, PM Nov 10, 2023</div>
137
+
138
+ <!-- Currency rows -->
139
+ <div class="rows">
140
+ <div class="row">
141
+ <div class="flag">[IMG: EU Flag]</div>
142
+ <div class="code">EUR
143
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#9aa4ae"><path d="M7 10l5 5 5-5z"/></svg>
144
+ </div>
145
+ <div class="amount">0</div>
146
+ </div>
147
+ <div class="row">
148
+ <div class="flag">[IMG: US Flag]</div>
149
+ <div class="code">USD
150
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#9aa4ae"><path d="M7 10l5 5 5-5z"/></svg>
151
+ </div>
152
+ <div class="amount">0</div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Big Advertisement Card -->
157
+ <div class="ad-card">
158
+ <div class="ad-label">Advertisement</div>
159
+ <div class="ad-body">
160
+ <div class="ad-img">[IMG: Instagram-style Game Artwork]
code/3470/3470_2.html ADDED
@@ -0,0 +1,313 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Currency Plus - Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #111416; color: #EDEDED;
13
+ }
14
+
15
+ /* Top system/status spacer */
16
+ .status-bar { height: 110px; background: #191C1F; }
17
+
18
+ /* App bar */
19
+ .app-bar {
20
+ height: 148px; background: #1B1E22;
21
+ display: flex; align-items: center; justify-content: center;
22
+ position: relative; padding: 0 40px;
23
+ box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
24
+ }
25
+ .app-title { font-size: 44px; letter-spacing: 2px; color: #EDEDED; }
26
+ .app-title b { color: #DDE2E7; font-weight: 700; }
27
+ .icon-btn {
28
+ width: 96px; height: 96px; display: inline-flex; align-items: center; justify-content: center;
29
+ position: absolute; top: 26px; color: #C9CDD2;
30
+ }
31
+ .icon-left { left: 24px; }
32
+ .icon-right { right: 24px; }
33
+
34
+ .updated-bar {
35
+ height: 86px; background: #171A1D;
36
+ display: flex; align-items: center; justify-content: center;
37
+ color: #9AA3AA; font-size: 34px;
38
+ box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset;
39
+ }
40
+
41
+ /* Currency list */
42
+ .list {
43
+ padding: 16px 0 10px;
44
+ }
45
+ .row {
46
+ height: 148px;
47
+ display: grid;
48
+ grid-template-columns: 160px 1fr 220px;
49
+ align-items: center;
50
+ padding: 0 28px 0 24px;
51
+ border-bottom: 1px solid rgba(255,255,255,0.04);
52
+ background: #121518;
53
+ }
54
+ .row.active { background: #202A39; }
55
+ .flag {
56
+ width: 120px; height: 84px; border-radius: 10px;
57
+ background: #E0E0E0; border: 1px solid #BDBDBD;
58
+ display: flex; align-items: center; justify-content: center;
59
+ font-size: 26px; color: #757575;
60
+ }
61
+ .code {
62
+ display: flex; align-items: center; gap: 18px;
63
+ color: #C8CDD1; font-size: 50px; font-weight: 600;
64
+ }
65
+ .amount {
66
+ display: flex; align-items: center; justify-content: flex-end; gap: 20px;
67
+ }
68
+ .amount .val {
69
+ font-size: 56px; color: #BFC5CA; font-weight: 500;
70
+ padding: 10px 18px; border-radius: 8px;
71
+ }
72
+ .row.active .amount .val {
73
+ background: rgba(93, 114, 149, 0.35);
74
+ color: #EAF1F7;
75
+ }
76
+
77
+ /* Keypad */
78
+ .keypad-wrap { padding: 24px; }
79
+ .keypad {
80
+ display: grid;
81
+ grid-template-columns: repeat(4, 1fr);
82
+ gap: 24px;
83
+ }
84
+ .key {
85
+ height: 190px; border-radius: 28px;
86
+ background: #26292D; color: #E6EBEF;
87
+ display: flex; align-items: center; justify-content: center;
88
+ font-size: 64px; font-weight: 500;
89
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
90
+ }
91
+ .key.secondary { color: #F16A62; }
92
+ .key.muted { color: #8DA1B3; }
93
+ .key.ops { color: #D89462; font-size: 52px; line-height: 1.2; text-align: center; flex-direction: column; }
94
+ .key svg { width: 64px; height: 64px; }
95
+
96
+ /* Ad banner */
97
+ .ad {
98
+ position: absolute; left: 0; right: 0; bottom: 90px;
99
+ height: 180px; background: #FFFFFF; color: #0F1720;
100
+ display: grid; grid-template-columns: 240px 1fr 220px; align-items: center;
101
+ padding: 0 22px; gap: 22px; border-top: 1px solid #E5E7EB;
102
+ }
103
+ .ad .img {
104
+ width: 240px; height: 140px; background: #E0E0E0; border: 1px solid #BDBDBD;
105
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px;
106
+ }
107
+ .ad .text { font-size: 40px; color: #0F1720; }
108
+ .ad .open {
109
+ background: #0DB16F; color: #fff; height: 96px; border-radius: 48px;
110
+ display: flex; align-items: center; justify-content: center; font-size: 38px; font-weight: 600;
111
+ }
112
+
113
+ /* Home indicator */
114
+ .home-indicator {
115
+ position: absolute; left: 50%; transform: translateX(-50%);
116
+ bottom: 22px; width: 320px; height: 12px; border-radius: 8px; background: #3A3E43;
117
+ opacity: 0.9;
118
+ }
119
+
120
+ /* Small helpers */
121
+ .chev svg { width: 28px; height: 28px; opacity: 0.8; }
122
+ .chart svg { width: 58px; height: 58px; opacity: 0.6; }
123
+ </style>
124
+ </head>
125
+ <body>
126
+ <div id="render-target">
127
+
128
+ <div class="status-bar"></div>
129
+
130
+ <div class="app-bar">
131
+ <div class="icon-btn icon-left" aria-label="menu">
132
+ <svg viewBox="0 0 24 24" width="60" height="60" fill="#C9CDD2">
133
+ <path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/>
134
+ </svg>
135
+ </div>
136
+ <div class="app-title">CURRENCY <b>PLUS</b></div>
137
+ <div class="icon-btn icon-right" aria-label="search">
138
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="none" stroke="#C9CDD2" stroke-width="2">
139
+ <circle cx="11" cy="11" r="7"></circle>
140
+ <path d="M20 20l-4.2-4.2"></path>
141
+ </svg>
142
+ </div>
143
+ </div>
144
+
145
+ <div class="updated-bar">Updated: 12:26, PM Nov 10, 2023</div>
146
+
147
+ <div class="list">
148
+ <!-- Active EUR row -->
149
+ <div class="row active">
150
+ <div class="flag">[IMG: EU flag]</div>
151
+ <div class="code">EUR
152
+ <span class="chev">
153
+ <svg viewBox="0 0 24 24" fill="#C8CDD1"><path d="M7 9l5 5 5-5z"/></svg>
154
+ </span>
155
+ </div>
156
+ <div class="amount">
157
+ <span class="val">0</span>
158
+ <span class="chart">
159
+ <svg viewBox="0 0 24 24" stroke="#C8CDD1" fill="none" stroke-width="2">
160
+ <path d="M3 17l6-6 4 4 7-7"></path>
161
+ </svg>
162
+ </span>
163
+ </div>
164
+ </div>
165
+
166
+ <div class="row">
167
+ <div class="flag">[IMG: US flag]</div>
168
+ <div class="code">USD
169
+ <span class="chev">
170
+ <svg viewBox="0 0 24 24" fill="#C8CDD1"><path d="M7 9l5 5 5-5z"/></svg>
171
+ </span>
172
+ </div>
173
+ <div class="amount">
174
+ <span class="val">0</span>
175
+ <span class="chart">
176
+ <svg viewBox="0 0 24 24" stroke="#AEB5BA" fill="none" stroke-width="2">
177
+ <path d="M3 17l6-6 4 4 7-7"></path>
178
+ </svg>
179
+ </span>
180
+ </div>
181
+ </div>
182
+
183
+ <div class="row">
184
+ <div class="flag">[IMG: Mexico flag]</div>
185
+ <div class="code">MXN
186
+ <span class="chev">
187
+ <svg viewBox="0 0 24 24" fill="#C8CDD1"><path d="M7 9l5 5 5-5z"/></svg>
188
+ </span>
189
+ </div>
190
+ <div class="amount">
191
+ <span class="val">0</span>
192
+ <span class="chart">
193
+ <svg viewBox="0 0 24 24" stroke="#AEB5BA" fill="none" stroke-width="2">
194
+ <path d="M3 17l6-6 4 4 7-7"></path>
195
+ </svg>
196
+ </span>
197
+ </div>
198
+ </div>
199
+
200
+ <div class="row">
201
+ <div class="flag">[IMG: Canada flag]</div>
202
+ <div class="code">CAD
203
+ <span class="chev">
204
+ <svg viewBox="0 0 24 24" fill="#C8CDD1"><path d="M7 9l5 5 5-5z"/></svg>
205
+ </span>
206
+ </div>
207
+ <div class="amount">
208
+ <span class="val">0</span>
209
+ <span class="chart">
210
+ <svg viewBox="0 0 24 24" stroke="#AEB5BA" fill="none" stroke-width="2">
211
+ <path d="M3 17l6-6 4 4 7-7"></path>
212
+ </svg>
213
+ </span>
214
+ </div>
215
+ </div>
216
+
217
+ <div class="row">
218
+ <div class="flag">[IMG: Cuba flag]</div>
219
+ <div class="code">CUP
220
+ <span class="chev">
221
+ <svg viewBox="0 0 24 24" fill="#C8CDD1"><path d="M7 9l5 5 5-5z"/></svg>
222
+ </span>
223
+ </div>
224
+ <div class="amount">
225
+ <span class="val">0</span>
226
+ <span class="chart">
227
+ <svg viewBox="0 0 24 24" stroke="#AEB5BA" fill="none" stroke-width="2">
228
+ <path d="M3 17l6-6 4 4 7-7"></path>
229
+ </svg>
230
+ </span>
231
+ </div>
232
+ </div>
233
+
234
+ <div class="row">
235
+ <div class="flag">[IMG: Japan flag]</div>
236
+ <div class="code">JPY
237
+ <span class="chev">
238
+ <svg viewBox="0 0 24 24" fill="#C8CDD1"><path d="M7 9l5 5 5-5z"/></svg>
239
+ </span>
240
+ </div>
241
+ <div class="amount">
242
+ <span class="val">0</span>
243
+ <span class="chart">
244
+ <svg viewBox="0 0 24 24" stroke="#AEB5BA" fill="none" stroke-width="2">
245
+ <path d="M3 17l6-6 4 4 7-7"></path>
246
+ </svg>
247
+ </span>
248
+ </div>
249
+ </div>
250
+
251
+ <div class="row">
252
+ <div class="flag">[IMG: UK flag]</div>
253
+ <div class="code">GBP
254
+ <span class="chev">
255
+ <svg viewBox="0 0 24 24" fill="#C8CDD1"><path d="M7 9l5 5 5-5z"/></svg>
256
+ </span>
257
+ </div>
258
+ <div class="amount">
259
+ <span class="val">0</span>
260
+ <span class="chart">
261
+ <svg viewBox="0 0 24 24" stroke="#AEB5BA" fill="none" stroke-width="2">
262
+ <path d="M3 17l6-6 4 4 7-7"></path>
263
+ </svg>
264
+ </span>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Keypad -->
270
+ <div class="keypad-wrap">
271
+ <div class="keypad">
272
+ <div class="key secondary">C</div>
273
+ <div class="key">7</div>
274
+ <div class="key">8</div>
275
+ <div class="key">9</div>
276
+
277
+ <div class="key muted" title="refresh">
278
+ <svg viewBox="0 0 24 24" fill="none" stroke="#8DA1B3" stroke-width="2">
279
+ <path d="M20 12a8 8 0 1 1-2.34-5.66"/><path d="M20 4v6h-6"/>
280
+ </svg>
281
+ </div>
282
+ <div class="key">4</div>
283
+ <div class="key">5</div>
284
+ <div class="key">6</div>
285
+
286
+ <div class="key ops"><span>+</span><span>− × ÷</span></div>
287
+ <div class="key">1</div>
288
+ <div class="key">2</div>
289
+ <div class="key">3</div>
290
+
291
+ <div class="key" style="opacity:0.35;"></div>
292
+ <div class="key">0</div>
293
+ <div class="key">.</div>
294
+ <div class="key muted" title="backspace">
295
+ <svg viewBox="0 0 24 24" fill="none" stroke="#8DA1B3" stroke-width="2">
296
+ <path d="M3 12l5-6h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H8L3 12z"/>
297
+ <path d="M12 9l4 4m0-4l-4 4"/>
298
+ </svg>
299
+ </div>
300
+ </div>
301
+ </div>
302
+
303
+ <!-- Ad banner -->
304
+ <div class="ad">
305
+ <div class="img">[IMG: Ad banner]</div>
306
+ <div class="text">Omio • 4.6 ★ • FREE</div>
307
+ <div class="open">Open</div>
308
+ </div>
309
+
310
+ <div class="home-indicator"></div>
311
+ </div>
312
+ </body>
313
+ </html>
code/3470/3470_5.html ADDED
@@ -0,0 +1,329 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Currency Plus Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #121212;
15
+ color: #E0E0E0;
16
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, system-ui, sans-serif;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 110px;
22
+ background: #1b1b1b;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 40px;
26
+ color: #fff;
27
+ font-size: 40px;
28
+ letter-spacing: 0.5px;
29
+ }
30
+ .status-left { display: flex; align-items: center; gap: 24px; }
31
+ .status-right { margin-left: auto; display: flex; align-items: center; gap: 28px; }
32
+ .icon-wifi, .icon-battery {
33
+ width: 44px; height: 44px;
34
+ }
35
+ .icon-battery rect { stroke: #fff; }
36
+
37
+ /* Top app bar */
38
+ .app-bar {
39
+ height: 150px;
40
+ background: #1f1f1f;
41
+ display: flex;
42
+ align-items: center;
43
+ padding: 0 34px;
44
+ border-bottom: 1px solid #2a2a2a;
45
+ }
46
+ .app-title {
47
+ flex: 1;
48
+ text-align: center;
49
+ font-size: 52px;
50
+ font-weight: 700;
51
+ letter-spacing: 2px;
52
+ }
53
+ .app-title span { font-weight: 500; }
54
+ .app-icon {
55
+ width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center; color: #ddd;
56
+ }
57
+ .hamburger svg, .search svg { width: 56px; height: 56px; fill: none; stroke: #ddd; stroke-width: 8; stroke-linecap: round; }
58
+
59
+ /* Updated info */
60
+ .updated-bar {
61
+ background: #1a1a1a;
62
+ color: #9aa0a6;
63
+ font-size: 36px;
64
+ padding: 24px 40px;
65
+ border-bottom: 1px solid #252525;
66
+ }
67
+
68
+ /* Currency list */
69
+ .list {
70
+ padding-top: 8px;
71
+ }
72
+ .row {
73
+ display: flex;
74
+ align-items: center;
75
+ padding: 24px 30px;
76
+ height: 140px;
77
+ border-bottom: 1px solid #1e1e1e;
78
+ }
79
+ .row.primary { background: #243247; }
80
+ .flag {
81
+ width: 110px; height: 86px;
82
+ background: #E0E0E0; border: 1px solid #BDBDBD;
83
+ display: flex; align-items: center; justify-content: center;
84
+ color: #757575; font-size: 28px;
85
+ border-radius: 8px;
86
+ margin-right: 28px;
87
+ }
88
+ .code {
89
+ font-size: 56px; font-weight: 700; color: #d0d0d0; letter-spacing: 1px;
90
+ }
91
+ .dropdown {
92
+ margin-left: 18px; margin-right: auto;
93
+ width: 34px; height: 34px;
94
+ }
95
+ .dropdown svg { width: 34px; height: 34px; fill: none; stroke: #bdbdbd; stroke-width: 6; stroke-linecap: round; }
96
+ .value {
97
+ font-size: 52px; color: #bdbdbd;
98
+ margin-right: 16px;
99
+ }
100
+ .chart {
101
+ width: 48px; height: 48px; opacity: 0.6;
102
+ }
103
+ .chart svg { width: 48px; height: 48px; fill: none; stroke: #bdbdbd; stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
104
+
105
+ /* Keypad */
106
+ .keypad {
107
+ margin-top: 16px;
108
+ padding: 26px 34px 20px 34px;
109
+ }
110
+ .keys {
111
+ display: grid;
112
+ grid-template-columns: repeat(4, 1fr);
113
+ grid-gap: 26px;
114
+ }
115
+ .key {
116
+ height: 180px;
117
+ background: #222;
118
+ border: 1px solid #2e2e2e;
119
+ border-radius: 36px;
120
+ display: flex; align-items: center; justify-content: center;
121
+ font-size: 64px; color: #eaeaea;
122
+ box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
123
+ }
124
+ .key.secondary { color: #c94c40; font-weight: 700; }
125
+ .key.ops { color: #c4824b; font-weight: 700; letter-spacing: 6px; }
126
+ .key svg { width: 74px; height: 74px; fill: none; stroke: #9aa0a6; stroke-width: 8; stroke-linecap: round; }
127
+ .key.back svg { stroke: #e0e0e0; }
128
+
129
+ /* Ads row */
130
+ .ads {
131
+ margin-top: 30px;
132
+ background: #f7f7f7;
133
+ padding: 10px 12px;
134
+ display: flex; align-items: center; gap: 10px;
135
+ border-top: 1px solid #e0e0e0;
136
+ }
137
+ .ad-img {
138
+ width: 240px; height: 140px;
139
+ background: #E0E0E0; border: 1px solid #BDBDBD;
140
+ display: flex; align-items: center; justify-content: center;
141
+ color: #757575; font-size: 26px;
142
+ }
143
+
144
+ /* Home indicator */
145
+ .home-indicator {
146
+ position: absolute; bottom: 24px; left: 50%;
147
+ width: 340px; height: 14px;
148
+ transform: translateX(-50%);
149
+ background: #eaeaea; border-radius: 10px; opacity: 0.7;
150
+ }
151
+ </style>
152
+ </head>
153
+ <body>
154
+ <div id="render-target">
155
+
156
+ <!-- Status bar -->
157
+ <div class="status-bar">
158
+ <div class="status-left">
159
+ <div class="time">12:37</div>
160
+ <!-- minimal placeholder icons -->
161
+ <div style="font-size:34px; opacity:0.8;">✓</div>
162
+ <div style="font-size:34px; opacity:0.8;">Ⓜ</div>
163
+ <div style="font-size:34px; opacity:0.8;">!</div>
164
+ <div style="font-size:34px; opacity:0.8;">•</div>
165
+ </div>
166
+ <div class="status-right">
167
+ <svg class="icon-wifi" viewBox="0 0 24 24">
168
+ <path d="M2 8c5-4 15-4 20 0M5 12c3-3 11-3 14 0M9 16c2-2 4-2 6 0M12 19l0 0"/>
169
+ </svg>
170
+ <svg class="icon-battery" viewBox="0 0 28 16">
171
+ <rect x="1" y="2" width="22" height="12" rx="2" stroke-width="2" fill="none"/>
172
+ <rect x="4" y="5" width="16" height="6" fill="#fff"/>
173
+ <rect x="24" y="6" width="3" height="4" fill="#fff"/>
174
+ </svg>
175
+ <div style="font-size:38px;">100%</div>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- App bar -->
180
+ <div class="app-bar">
181
+ <div class="app-icon hamburger">
182
+ <svg viewBox="0 0 24 24">
183
+ <path d="M3 6h18M3 12h18M3 18h18"/>
184
+ </svg>
185
+ </div>
186
+ <div class="app-title"><span>CURRENCY</span> PLUS</div>
187
+ <div class="app-icon search">
188
+ <svg viewBox="0 0 24 24">
189
+ <circle cx="10" cy="10" r="6"></circle>
190
+ <path d="M15 15l6 6"></path>
191
+ </svg>
192
+ </div>
193
+ </div>
194
+
195
+ <!-- Updated info -->
196
+ <div class="updated-bar">Updated: 12:26, PM Nov 10, 2023</div>
197
+
198
+ <!-- Currency list -->
199
+ <div class="list">
200
+ <div class="row primary">
201
+ <div class="flag">[IMG: EU Flag]</div>
202
+ <div class="code">EUR</div>
203
+ <div class="dropdown">
204
+ <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7"/></svg>
205
+ </div>
206
+ <div class="value" style="color:#e0e0e0;">100</div>
207
+ <div class="chart">
208
+ <svg viewBox="0 0 24 24"><path d="M3 17l7-7 4 4 7-9"/></svg>
209
+ </div>
210
+ </div>
211
+
212
+ <div class="row">
213
+ <div class="flag">[IMG: US Flag]</div>
214
+ <div class="code">USD</div>
215
+ <div class="dropdown">
216
+ <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7"/></svg>
217
+ </div>
218
+ <div class="value">106.66</div>
219
+ <div class="chart">
220
+ <svg viewBox="0 0 24 24"><path d="M3 17l7-7 4 4 7-9"/></svg>
221
+ </div>
222
+ </div>
223
+
224
+ <div class="row">
225
+ <div class="flag">[IMG: Mexico Flag]</div>
226
+ <div class="code">MXN</div>
227
+ <div class="dropdown">
228
+ <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7"/></svg>
229
+ </div>
230
+ <div class="value">1,894.82</div>
231
+ <div class="chart">
232
+ <svg viewBox="0 0 24 24"><path d="M3 17l7-7 4 4 7-9"/></svg>
233
+ </div>
234
+ </div>
235
+
236
+ <div class="row">
237
+ <div class="flag">[IMG: Canada Flag]</div>
238
+ <div class="code">CAD</div>
239
+ <div class="dropdown">
240
+ <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7"/></svg>
241
+ </div>
242
+ <div class="value">147.19</div>
243
+ <div class="chart">
244
+ <svg viewBox="0 0 24 24"><path d="M3 17l7-7 4 4 7-9"/></svg>
245
+ </div>
246
+ </div>
247
+
248
+ <div class="row">
249
+ <div class="flag">[IMG: Cuba Flag]</div>
250
+ <div class="code">CUP</div>
251
+ <div class="dropdown">
252
+ <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7"/></svg>
253
+ </div>
254
+ <div class="value">2,746.39</div>
255
+ <div class="chart">
256
+ <svg viewBox="0 0 24 24"><path d="M3 17l7-7 4 4 7-9"/></svg>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="row">
261
+ <div class="flag">[IMG: Japan Flag]</div>
262
+ <div class="code">JPY</div>
263
+ <div class="dropdown">
264
+ <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7"/></svg>
265
+ </div>
266
+ <div class="value">16,145.84</div>
267
+ <div class="chart">
268
+ <svg viewBox="0 0 24 24"><path d="M3 17l7-7 4 4 7-9"/></svg>
269
+ </div>
270
+ </div>
271
+
272
+ <div class="row">
273
+ <div class="flag">[IMG: UK Flag]</div>
274
+ <div class="code">GBP</div>
275
+ <div class="dropdown">
276
+ <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7"/></svg>
277
+ </div>
278
+ <div class="value">87.24</div>
279
+ <div class="chart">
280
+ <svg viewBox="0 0 24 24"><path d="M3 17l7-7 4 4 7-9"/></svg>
281
+ </div>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Keypad -->
286
+ <div class="keypad">
287
+ <div class="keys">
288
+ <div class="key secondary">C</div>
289
+ <div class="key">7</div>
290
+ <div class="key">8</div>
291
+ <div class="key">9</div>
292
+
293
+ <div class="key">
294
+ <svg viewBox="0 0 24 24"><path d="M12 4a8 8 0 1 0 8 8"/><path d="M12 1v6"/></svg>
295
+ </div>
296
+ <div class="key">4</div>
297
+ <div class="key">5</div>
298
+ <div class="key">6</div>
299
+
300
+ <div class="key ops">+ − × ÷</div>
301
+ <div class="key">1</div>
302
+ <div class="key">2</div>
303
+ <div class="key">3</div>
304
+
305
+ <div class="key"></div>
306
+ <div class="key">0</div>
307
+ <div class="key">.</div>
308
+ <div class="key back">
309
+ <svg viewBox="0 0 24 24">
310
+ <path d="M18 6l-9 0-5 6 5 6 9 0"/>
311
+ <path d="M14 9l-4 6"/>
312
+ </svg>
313
+ </div>
314
+ </div>
315
+ </div>
316
+
317
+ <!-- Ads carousel -->
318
+ <div class="ads">
319
+ <div class="ad-img">[IMG: Installed Ad]</div>
320
+ <div class="ad-img">[IMG: Museum]</div>
321
+ <div class="ad-img">[IMG: Louvre]</div>
322
+ <div class="ad-img">[IMG: Scooter Rider]</div>
323
+ </div>
324
+
325
+ <!-- Home indicator -->
326
+ <div class="home-indicator"></div>
327
+ </div>
328
+ </body>
329
+ </html>
code/3470/3470_6.html ADDED
@@ -0,0 +1,321 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Currency Plus UI</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #121314; color: #EDEDED;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 88px; background: #1a1b1d; display: flex; align-items: center; justify-content: space-between;
17
+ padding: 0 32px; box-sizing: border-box; color: #eee; font-size: 34px;
18
+ }
19
+ .status-icons { display: flex; align-items: center; gap: 22px; color: #dcdcdc; }
20
+ .status-dot { width: 10px; height: 10px; background: #cfcfcf; border-radius: 50%; display: inline-block; }
21
+
22
+ /* App bar */
23
+ .app-bar {
24
+ height: 144px; background: #1c1d20; display: flex; align-items: center; justify-content: space-between;
25
+ padding: 0 32px; box-sizing: border-box; border-bottom: 1px solid #26272b;
26
+ }
27
+ .app-title { font-weight: 700; letter-spacing: 2px; font-size: 44px; color: #EDEDED; }
28
+ .app-left, .app-right { width: 140px; display: flex; align-items: center; justify-content: center; }
29
+
30
+ /* Updated timestamp */
31
+ .updated {
32
+ height: 72px; display: flex; align-items: center; padding: 0 32px; box-sizing: border-box;
33
+ color: #b8b8b8; font-size: 30px; background: #17181a;
34
+ border-bottom: 1px solid #1f2023;
35
+ }
36
+
37
+ /* Currency list */
38
+ .list {
39
+ padding-top: 6px;
40
+ }
41
+ .row {
42
+ height: 128px; display: grid; grid-template-columns: 140px 360px 1fr 96px; align-items: center;
43
+ padding: 0 32px; box-sizing: border-box; border-bottom: 1px solid #1c1d20;
44
+ }
45
+ .row .flag {
46
+ width: 100px; height: 68px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 8px;
47
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 22px;
48
+ }
49
+ .code {
50
+ display: flex; align-items: center; gap: 16px; font-size: 48px; color: #F3F3F3; font-weight: 600;
51
+ }
52
+ .amount {
53
+ text-align: right; font-size: 48px; color: #C8C8C8; padding-right: 20px;
54
+ }
55
+ .dropdown svg { display: block; }
56
+ .chart {
57
+ display: flex; align-items: center; justify-content: center;
58
+ opacity: 0.6;
59
+ }
60
+ .row.active { background: #232b36; }
61
+ .caret {
62
+ position: absolute; width: 2px; height: 54px; background: #e8e8e8;
63
+ right: 158px; /* near chart icon */ top: 304px; /* aligned to first row numbers */
64
+ }
65
+
66
+ /* Keypad */
67
+ .keypad {
68
+ margin-top: 12px;
69
+ padding: 22px 24px 0; box-sizing: border-box;
70
+ }
71
+ .keys {
72
+ display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 22px;
73
+ }
74
+ .key {
75
+ height: 180px; background: #232425; border-radius: 28px; box-shadow: inset 0 1px 0 #2c2e30, 0 4px 14px rgba(0,0,0,0.35);
76
+ display: flex; align-items: center; justify-content: center; font-size: 64px; color: #EDEDED;
77
+ }
78
+ .key.secondary { color: #ee6a6a; font-weight: 700; }
79
+ .key.orange { color: #ce8a57; font-size: 48px; letter-spacing: 2px; }
80
+ .key svg { width: 64px; height: 64px; }
81
+ .key.smalltxt { font-size: 58px; }
82
+
83
+ /* Ad strip */
84
+ .ad-strip {
85
+ position: absolute; left: 0; right: 0; bottom: 70px; height: 176px;
86
+ background: #ffffff; display: flex; align-items: center; padding: 12px 12px; gap: 16px; box-sizing: border-box;
87
+ border-top: 1px solid #dcdcdc;
88
+ }
89
+ .ad-thumb {
90
+ width: 180px; height: 132px; background: #E0E0E0; border: 1px solid #BDBDBD;
91
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 20px;
92
+ }
93
+ .ad-icon {
94
+ width: 90px; height: 132px; background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
95
+ display: flex; align-items: center; justify-content: center; font-size: 22px;
96
+ }
97
+ .home-indicator {
98
+ position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
99
+ width: 360px; height: 10px; border-radius: 6px; background: #BFC1C4; opacity: 0.45;
100
+ }
101
+ </style>
102
+ </head>
103
+ <body>
104
+ <div id="render-target">
105
+
106
+ <!-- Status bar -->
107
+ <div class="status-bar">
108
+ <div>12:37</div>
109
+ <div class="status-icons">
110
+ <span>✓</span>
111
+ <span>Ⓜ</span>
112
+ <span>Ⓜ</span>
113
+ <span>⚠</span>
114
+ <span class="status-dot"></span>
115
+ </div>
116
+ <div class="status-icons">
117
+ <!-- WiFi -->
118
+ <svg width="40" height="40" viewBox="0 0 40 40">
119
+ <path d="M6 14c8-6 20-6 28 0" stroke="#eee" stroke-width="2" fill="none"/>
120
+ <path d="M10 18c6-4 14-4 20 0" stroke="#eee" stroke-width="2" fill="none"/>
121
+ <path d="M14 22c4-2 8-2 12 0" stroke="#eee" stroke-width="2" fill="none"/>
122
+ <circle cx="20" cy="26" r="2" fill="#eee"/>
123
+ </svg>
124
+ <!-- Battery -->
125
+ <svg width="44" height="40" viewBox="0 0 44 40">
126
+ <rect x="4" y="10" width="32" height="20" rx="3" stroke="#eee" stroke-width="2" fill="none"/>
127
+ <rect x="7" y="13" width="26" height="14" rx="2" fill="#eee"/>
128
+ <rect x="38" y="16" width="4" height="8" rx="1" fill="#eee"/>
129
+ </svg>
130
+ <span style="font-size:32px; color:#eee;">100%</span>
131
+ </div>
132
+ </div>
133
+
134
+ <!-- App bar -->
135
+ <div class="app-bar">
136
+ <div class="app-left">
137
+ <svg width="56" height="56" viewBox="0 0 56 56">
138
+ <path d="M8 16h40M8 28h40M8 40h40" stroke="#e8e8e8" stroke-width="3" stroke-linecap="round"/>
139
+ </svg>
140
+ </div>
141
+ <div class="app-title">CURRENCY PLUS</div>
142
+ <div class="app-right">
143
+ <svg width="56" height="56" viewBox="0 0 56 56">
144
+ <circle cx="24" cy="24" r="16" stroke="#e8e8e8" stroke-width="3" fill="none"/>
145
+ <path d="M36 36l12 12" stroke="#e8e8e8" stroke-width="3" stroke-linecap="round"/>
146
+ </svg>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Updated timestamp -->
151
+ <div class="updated">Updated: 12:26, PM Nov 10, 2023</div>
152
+
153
+ <!-- Currency list -->
154
+ <div class="list">
155
+ <!-- Active Row -->
156
+ <div class="row active">
157
+ <div class="flag">[IMG: Flag EU]</div>
158
+ <div class="code">
159
+ EUR
160
+ <span class="dropdown">
161
+ <svg width="26" height="26" viewBox="0 0 26 26"><path d="M6 10l7 7 7-7" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
162
+ </span>
163
+ </div>
164
+ <div class="amount">1,000</div>
165
+ <div class="chart">
166
+ <svg width="52" height="52" viewBox="0 0 52 52">
167
+ <path d="M6 38l12-10 10 6 14-18" stroke="#c5c5c5" stroke-width="3" fill="none"/>
168
+ <path d="M42 16l4 2-2 4" stroke="#c5c5c5" stroke-width="3" fill="none"/>
169
+ </svg>
170
+ </div>
171
+ </div>
172
+ <div class="row">
173
+ <div class="flag">[IMG: Flag US]</div>
174
+ <div class="code">
175
+ USD
176
+ <span class="dropdown">
177
+ <svg width="26" height="26" viewBox="0 0 26 26"><path d="M6 10l7 7 7-7" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
178
+ </span>
179
+ </div>
180
+ <div class="amount">1,066.56</div>
181
+ <div class="chart">
182
+ <svg width="52" height="52" viewBox="0 0 52 52">
183
+ <path d="M6 38l12-10 10 6 14-18" stroke="#c5c5c5" stroke-width="3" fill="none"/>
184
+ <path d="M42 16l4 2-2 4" stroke="#c5c5c5" stroke-width="3" fill="none"/>
185
+ </svg>
186
+ </div>
187
+ </div>
188
+ <div class="row">
189
+ <div class="flag">[IMG: Flag MX]</div>
190
+ <div class="code">
191
+ MXN
192
+ <span class="dropdown">
193
+ <svg width="26" height="26" viewBox="0 0 26 26"><path d="M6 10l7 7 7-7" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
194
+ </span>
195
+ </div>
196
+ <div class="amount">18,948.16</div>
197
+ <div class="chart">
198
+ <svg width="52" height="52" viewBox="0 0 52 52">
199
+ <path d="M6 38l12-10 10 6 14-18" stroke="#c5c5c5" stroke-width="3" fill="none"/>
200
+ <path d="M42 16l4 2-2 4" stroke="#c5c5c5" stroke-width="3" fill="none"/>
201
+ </svg>
202
+ </div>
203
+ </div>
204
+ <div class="row">
205
+ <div class="flag">[IMG: Flag CA]</div>
206
+ <div class="code">
207
+ CAD
208
+ <span class="dropdown">
209
+ <svg width="26" height="26" viewBox="0 0 26 26"><path d="M6 10l7 7 7-7" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
210
+ </span>
211
+ </div>
212
+ <div class="amount">1,471.86</div>
213
+ <div class="chart">
214
+ <svg width="52" height="52" viewBox="0 0 52 52">
215
+ <path d="M6 38l12-10 10 6 14-18" stroke="#c5c5c5" stroke-width="3" fill="none"/>
216
+ <path d="M42 16l4 2-2 4" stroke="#c5c5c5" stroke-width="3" fill="none"/>
217
+ </svg>
218
+ </div>
219
+ </div>
220
+ <div class="row">
221
+ <div class="flag">[IMG: Flag CU]</div>
222
+ <div class="code">
223
+ CUP
224
+ <span class="dropdown">
225
+ <svg width="26" height="26" viewBox="0 0 26 26"><path d="M6 10l7 7 7-7" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
226
+ </span>
227
+ </div>
228
+ <div class="amount">27,463.92</div>
229
+ <div class="chart">
230
+ <svg width="52" height="52" viewBox="0 0 52 52">
231
+ <path d="M6 38l12-10 10 6 14-18" stroke="#c5c5c5" stroke-width="3" fill="none"/>
232
+ <path d="M42 16l4 2-2 4" stroke="#c5c5c5" stroke-width="3" fill="none"/>
233
+ </svg>
234
+ </div>
235
+ </div>
236
+ <div class="row">
237
+ <div class="flag">[IMG: Flag JP]</div>
238
+ <div class="code">
239
+ JPY
240
+ <span class="dropdown">
241
+ <svg width="26" height="26" viewBox="0 0 26 26"><path d="M6 10l7 7 7-7" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
242
+ </span>
243
+ </div>
244
+ <div class="amount">161,458.35</div>
245
+ <div class="chart">
246
+ <svg width="52" height="52" viewBox="0 0 52 52">
247
+ <path d="M6 38l12-10 10 6 14-18" stroke="#c5c5c5" stroke-width="3" fill="none"/>
248
+ <path d="M42 16l4 2-2 4" stroke="#c5c5c5" stroke-width="3" fill="none"/>
249
+ </svg>
250
+ </div>
251
+ </div>
252
+ <div class="row">
253
+ <div class="flag">[IMG: Flag UK]</div>
254
+ <div class="code">
255
+ GBP
256
+ <span class="dropdown">
257
+ <svg width="26" height="26" viewBox="0 0 26 26"><path d="M6 10l7 7 7-7" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
258
+ </span>
259
+ </div>
260
+ <div class="amount">872.4</div>
261
+ <div class="chart">
262
+ <svg width="52" height="52" viewBox="0 0 52 52">
263
+ <path d="M6 38l12-10 10 6 14-18" stroke="#c5c5c5" stroke-width="3" fill="none"/>
264
+ <path d="M42 16l4 2-2 4" stroke="#c5c5c5" stroke-width="3" fill="none"/>
265
+ </svg>
266
+ </div>
267
+ </div>
268
+ </div>
269
+
270
+ <!-- Caret for active input -->
271
+ <div class="caret"></div>
272
+
273
+ <!-- Keypad -->
274
+ <div class="keypad">
275
+ <div class="keys">
276
+ <div class="key secondary">C</div>
277
+ <div class="key">7</div>
278
+ <div class="key">8</div>
279
+ <div class="key">9</div>
280
+
281
+ <div class="key">
282
+ <svg viewBox="0 0 64 64">
283
+ <path d="M32 12a20 20 0 1 0 0 40" stroke="#e8e8e8" stroke-width="4" fill="none"/>
284
+ <path d="M32 12v10h10" stroke="#e8e8e8" stroke-width="4" fill="none" stroke-linecap="round"/>
285
+ </svg>
286
+ </div>
287
+ <div class="key">4</div>
288
+ <div class="key">5</div>
289
+ <div class="key">6</div>
290
+
291
+ <div class="key orange">+ −<br>× ÷</div>
292
+ <div class="key">1</div>
293
+ <div class="key">2</div>
294
+ <div class="key">3</div>
295
+
296
+ <div class="key">0</div>
297
+ <div class="key smalltxt">.</div>
298
+ <div class="key">
299
+ <svg viewBox="0 0 64 64">
300
+ <path d="M14 20h26l10 12-10 12H14a6 6 0 0 1-6-6V26a6 6 0 0 1 6-6z" stroke="#e8e8e8" stroke-width="4" fill="none"/>
301
+ <path d="M28 24l12 12-12 12" stroke="#e8e8e8" stroke-width="4" fill="none" stroke-linecap="round"/>
302
+ </svg>
303
+ </div>
304
+ <div class="key" style="visibility:hidden;"></div>
305
+ </div>
306
+ </div>
307
+
308
+ <!-- Ad strip -->
309
+ <div class="ad-strip">
310
+ <div class="ad-icon">[IMG: App Icon]</div>
311
+ <div class="ad-thumb">[IMG: Palace Photo]</div>
312
+ <div class="ad-thumb">[IMG: Louvre Photo]</div>
313
+ <div class="ad-thumb">[IMG: Abstract Texture]</div>
314
+ <div class="ad-thumb">[IMG: Scooter Street]</div>
315
+ </div>
316
+
317
+ <!-- Home indicator -->
318
+ <div class="home-indicator"></div>
319
+ </div>
320
+ </body>
321
+ </html>
code/3471/3471_0.html ADDED
@@ -0,0 +1,466 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Van Heusen Search Results</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
13
+ color: #222;
14
+ }
15
+ #render-target {
16
+ width: 1080px;
17
+ height: 2400px;
18
+ position: relative;
19
+ overflow: hidden;
20
+ background: linear-gradient(180deg, #BDECE3 0px, #AEE6DE 220px, #F6F6F6 220px);
21
+ }
22
+
23
+ /* Status bar */
24
+ .status-bar {
25
+ height: 90px;
26
+ padding: 0 36px;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ font-size: 36px;
31
+ color: #1d1d1d;
32
+ }
33
+ .status-left {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 24px;
37
+ }
38
+ .status-right {
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 24px;
42
+ }
43
+ .icon {
44
+ width: 40px;
45
+ height: 40px;
46
+ }
47
+
48
+ /* Search header */
49
+ .search-header {
50
+ position: relative;
51
+ height: 120px;
52
+ padding: 0 24px;
53
+ display: flex;
54
+ align-items: center;
55
+ gap: 24px;
56
+ }
57
+ .back-btn {
58
+ width: 72px;
59
+ height: 72px;
60
+ border-radius: 36px;
61
+ display: flex;
62
+ align-items: center;
63
+ justify-content: center;
64
+ background: transparent;
65
+ }
66
+ .search-pill {
67
+ flex: 1;
68
+ height: 96px;
69
+ background: #fff;
70
+ border-radius: 48px;
71
+ box-shadow: 0 8px 16px rgba(0,0,0,0.12);
72
+ display: flex;
73
+ align-items: center;
74
+ padding: 0 32px;
75
+ gap: 24px;
76
+ }
77
+ .search-text {
78
+ flex: 1;
79
+ font-size: 40px;
80
+ color: #333;
81
+ }
82
+ .scan-btn {
83
+ width: 76px;
84
+ height: 76px;
85
+ border-radius: 38px;
86
+ background: #F1F1F1;
87
+ display: flex;
88
+ align-items: center;
89
+ justify-content: center;
90
+ }
91
+
92
+ /* Banner */
93
+ .banner {
94
+ margin: 8px 0 0;
95
+ height: 320px;
96
+ position: relative;
97
+ }
98
+ .banner .img {
99
+ position: absolute;
100
+ left: 0;
101
+ right: 0;
102
+ top: 0;
103
+ bottom: 0;
104
+ background: #E0E0E0;
105
+ border: 1px solid #BDBDBD;
106
+ display: flex;
107
+ align-items: center;
108
+ justify-content: center;
109
+ color: #757575;
110
+ font-size: 36px;
111
+ border-radius: 0;
112
+ }
113
+ .brand-tile {
114
+ position: absolute;
115
+ left: 24px;
116
+ bottom: -36px;
117
+ width: 140px;
118
+ height: 140px;
119
+ background: #fff;
120
+ border-radius: 16px;
121
+ box-shadow: 0 6px 12px rgba(0,0,0,0.12);
122
+ display: flex;
123
+ align-items: center;
124
+ justify-content: center;
125
+ }
126
+ .brand-tile .img {
127
+ width: 120px;
128
+ height: 120px;
129
+ background: #E0E0E0;
130
+ border: 1px solid #BDBDBD;
131
+ display: flex;
132
+ align-items: center;
133
+ justify-content: center;
134
+ color: #757575;
135
+ font-size: 28px;
136
+ border-radius: 12px;
137
+ }
138
+
139
+ .shop-row {
140
+ margin-top: 72px;
141
+ padding: 24px 24px 24px 192px;
142
+ display: flex;
143
+ align-items: center;
144
+ gap: 16px;
145
+ background: #fff;
146
+ box-shadow: 0 1px 0 rgba(0,0,0,0.06) inset;
147
+ }
148
+ .shop-link {
149
+ font-size: 40px;
150
+ color: #1271c2;
151
+ }
152
+
153
+ .notice {
154
+ font-size: 34px;
155
+ color: #666;
156
+ padding: 24px;
157
+ background: #fff;
158
+ border-top: 1px solid #eee;
159
+ }
160
+
161
+ /* Product grid */
162
+ .grid {
163
+ padding: 16px 24px 180px; /* leave space for bottom nav */
164
+ display: grid;
165
+ grid-template-columns: 1fr 1fr;
166
+ gap: 24px;
167
+ }
168
+ .card {
169
+ background: #fff;
170
+ border: 1px solid #E6E6E6;
171
+ border-radius: 24px;
172
+ overflow: hidden;
173
+ display: flex;
174
+ flex-direction: column;
175
+ }
176
+ .card-img {
177
+ width: 100%;
178
+ height: 520px;
179
+ background: #E0E0E0;
180
+ border-bottom: 1px solid #BDBDBD;
181
+ display: flex;
182
+ align-items: center;
183
+ justify-content: center;
184
+ color: #757575;
185
+ font-size: 36px;
186
+ }
187
+ .card-body {
188
+ padding: 24px;
189
+ }
190
+ .sponsored {
191
+ font-size: 30px;
192
+ color: #8a8a8a;
193
+ margin-bottom: 6px;
194
+ }
195
+ .title {
196
+ font-size: 40px;
197
+ font-weight: 600;
198
+ color: #222;
199
+ line-height: 1.2;
200
+ margin-bottom: 12px;
201
+ }
202
+ .rating-row {
203
+ display: flex;
204
+ align-items: center;
205
+ gap: 10px;
206
+ margin: 8px 0 16px;
207
+ }
208
+ .rating-score {
209
+ color: #2a83db;
210
+ font-size: 36px;
211
+ font-weight: 600;
212
+ }
213
+ .stars {
214
+ display: inline-flex;
215
+ gap: 4px;
216
+ }
217
+ .stars svg {
218
+ width: 34px;
219
+ height: 34px;
220
+ }
221
+ .count {
222
+ color: #666;
223
+ font-size: 32px;
224
+ }
225
+ .price-row {
226
+ display: flex;
227
+ align-items: baseline;
228
+ gap: 14px;
229
+ margin: 12px 0;
230
+ }
231
+ .price {
232
+ font-size: 44px;
233
+ font-weight: 700;
234
+ }
235
+ .mrp {
236
+ font-size: 32px;
237
+ color: #777;
238
+ text-decoration: line-through;
239
+ }
240
+ .off {
241
+ font-size: 32px;
242
+ color: #777;
243
+ }
244
+ .prime {
245
+ display: flex;
246
+ align-items: center;
247
+ gap: 10px;
248
+ color: #2E7BEF;
249
+ font-size: 36px;
250
+ font-weight: 700;
251
+ margin: 6px 0 8px;
252
+ }
253
+ .delivery {
254
+ font-size: 32px;
255
+ color: #555;
256
+ margin-bottom: 10px;
257
+ }
258
+ .stock {
259
+ font-size: 32px;
260
+ color: #d32f2f;
261
+ font-weight: 600;
262
+ }
263
+
264
+ /* Bottom navigation */
265
+ .bottom-nav {
266
+ position: absolute;
267
+ left: 0;
268
+ right: 0;
269
+ bottom: 0;
270
+ height: 160px;
271
+ background: #fff;
272
+ border-top: 1px solid #E6E6E6;
273
+ display: flex;
274
+ align-items: center;
275
+ justify-content: space-around;
276
+ padding: 0 12px;
277
+ }
278
+ .nav-item {
279
+ width: 20%;
280
+ display: flex;
281
+ flex-direction: column;
282
+ align-items: center;
283
+ gap: 12px;
284
+ color: #333;
285
+ font-size: 28px;
286
+ }
287
+ .nav-item.active {
288
+ color: #139bb0;
289
+ font-weight: 700;
290
+ }
291
+ .nav-icon {
292
+ width: 56px;
293
+ height: 56px;
294
+ }
295
+ </style>
296
+ </head>
297
+ <body>
298
+ <div id="render-target">
299
+ <!-- Status Bar -->
300
+ <div class="status-bar">
301
+ <div class="status-left">
302
+ <span>5:38</span>
303
+ <svg class="icon" viewBox="0 0 24 24">
304
+ <circle cx="6" cy="12" r="2" fill="#555"></circle>
305
+ <circle cx="12" cy="12" r="2" fill="#555"></circle>
306
+ <circle cx="18" cy="12" r="2" fill="#555"></circle>
307
+ </svg>
308
+ <svg class="icon" viewBox="0 0 24 24">
309
+ <path d="M3 17h18v2H3zM6 7h12l2 8H4l2-8z" fill="#555"></path>
310
+ </svg>
311
+ <span style="font-size:32px;color:#555;">19°</span>
312
+ <svg class="icon" viewBox="0 0 24 24">
313
+ <circle cx="12" cy="12" r="2" fill="#555"></circle>
314
+ </svg>
315
+ </div>
316
+ <div class="status-right">
317
+ <svg class="icon" viewBox="0 0 24 24">
318
+ <path d="M3 10c4-4 14-4 18 0" stroke="#333" stroke-width="2" fill="none"></path>
319
+ <path d="M6 13c3-3 9-3 12 0" stroke="#333" stroke-width="2" fill="none"></path>
320
+ <circle cx="12" cy="16" r="1.5" fill="#333"></circle>
321
+ </svg>
322
+ <svg class="icon" viewBox="0 0 24 24">
323
+ <rect x="4" y="6" width="14" height="12" rx="2" fill="#333"></rect>
324
+ <rect x="19" y="10" width="2" height="4" fill="#333"></rect>
325
+ </svg>
326
+ </div>
327
+ </div>
328
+
329
+ <!-- Search Header -->
330
+ <div class="search-header">
331
+ <div class="back-btn">
332
+ <svg class="icon" viewBox="0 0 24 24">
333
+ <path d="M15 6l-6 6 6 6" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
334
+ </svg>
335
+ </div>
336
+ <div class="search-pill">
337
+ <div class="search-text">Van Heusen men's shirt</div>
338
+ <div class="scan-btn">
339
+ <svg viewBox="0 0 24 24" class="icon">
340
+ <rect x="5" y="7" width="14" height="10" rx="2" fill="#999"></rect>
341
+ <circle cx="12" cy="12" r="3" fill="#fff"></circle>
342
+ </svg>
343
+ </div>
344
+ </div>
345
+ </div>
346
+
347
+ <!-- Banner -->
348
+ <div class="banner">
349
+ <div class="img">[IMG: Innerwear banner with models]</div>
350
+ <div class="brand-tile">
351
+ <div class="img">[IMG: Van Heusen logo]</div>
352
+ </div>
353
+ </div>
354
+ <div class="shop-row">
355
+ <div class="shop-link">Shop Van Heusen Innerwear ›</div>
356
+ </div>
357
+
358
+ <div class="notice">Price and other details may vary based on product size and colour.</div>
359
+
360
+ <!-- Product Grid -->
361
+ <div class="grid">
362
+ <!-- Card 1 -->
363
+ <div class="card">
364
+ <div class="card-img">[IMG: Navy men's formal shirt]</div>
365
+ <div class="card-body">
366
+ <div class="sponsored">Sponsored</div>
367
+ <div class="title">Van Heusen<br>Men's Shirt</div>
368
+ <div class="rating-row">
369
+ <div class="rating-score">4.0</div>
370
+ <div class="stars">
371
+ <svg viewBox="0 0 24 24"><path fill="#FFB300" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
372
+ <svg viewBox="0 0 24 24"><path fill="#FFB300" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
373
+ <svg viewBox="0 0 24 24"><path fill="#FFB300" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
374
+ <svg viewBox="0 0 24 24"><path fill="#FFB300" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
375
+ <svg viewBox="0 0 24 24"><path fill="#DDD" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
376
+ </div>
377
+ <div class="count">(8)</div>
378
+ </div>
379
+ <div class="price-row">
380
+ <div class="price">₹1,639</div>
381
+ <div class="mrp">M.R.P: ₹2,599</div>
382
+ <div class="off">(37% off)</div>
383
+ </div>
384
+ <div class="prime">
385
+ <svg viewBox="0 0 24 24" class="icon">
386
+ <path d="M4 12l4 4 10-10" stroke="#2E7BEF" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
387
+ </svg>
388
+ prime
389
+ </div>
390
+ <div class="delivery">FREE Delivery by Amazon</div>
391
+ <div class="stock">Only 1 left in stock.</div>
392
+ </div>
393
+ </div>
394
+
395
+ <!-- Card 2 -->
396
+ <div class="card">
397
+ <div class="card-img">[IMG: Teal men's formal shirt]</div>
398
+ <div class="card-body">
399
+ <div class="sponsored">Sponsored</div>
400
+ <div class="title">Van Heusen<br>Men's Shirt</div>
401
+ <div class="rating-row">
402
+ <div class="rating-score">4.6</div>
403
+ <div class="stars">
404
+ <svg viewBox="0 0 24 24"><path fill="#FFB300" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
405
+ <svg viewBox="0 0 24 24"><path fill="#FFB300" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
406
+ <svg viewBox="0 0 24 24"><path fill="#FFB300" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
407
+ <svg viewBox="0 0 24 24"><path fill="#FFB300" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
408
+ <svg viewBox="0 0 24 24"><path fill="#CCC" d="M12 17.3l-5.1 3 1.4-5.7-4.3-3.6 5.6-.5L12 5l2.4 5.5 5.6.5-4.3 3.6 1.4 5.7z"/></svg>
409
+ </div>
410
+ <div class="count">(3)</div>
411
+ </div>
412
+ <div class="price-row">
413
+ <div class="price">₹1,639</div>
414
+ <div class="mrp">M.R.P: ₹2,599</div>
415
+ <div class="off">(37% off)</div>
416
+ </div>
417
+ <div class="prime">
418
+ <svg viewBox="0 0 24 24" class="icon">
419
+ <path d="M4 12l4 4 10-10" stroke="#2E7BEF" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
420
+ </svg>
421
+ prime
422
+ </div>
423
+ <div class="delivery">FREE Delivery by Amazon</div>
424
+ </div>
425
+ </div>
426
+ </div>
427
+
428
+ <!-- Bottom Navigation -->
429
+ <div class="bottom-nav">
430
+ <div class="nav-item active">
431
+ <svg class="nav-icon" viewBox="0 0 24 24">
432
+ <path d="M3 11l9-7 9 7v9h-6v-6H9v6H3z" fill="#139bb0"></path>
433
+ </svg>
434
+ <div>Home</div>
435
+ </div>
436
+ <div class="nav-item">
437
+ <svg class="nav-icon" viewBox="0 0 24 24">
438
+ <circle cx="12" cy="8" r="4" fill="#333"></circle>
439
+ <path d="M4 20c0-4 4-6 8-6s8 2 8 6" stroke="#333" stroke-width="2" fill="none"></path>
440
+ </svg>
441
+ <div>You</div>
442
+ </div>
443
+ <div class="nav-item">
444
+ <svg class="nav-icon" viewBox="0 0 24 24">
445
+ <path d="M12 5v14M5 12h14" stroke="#333" stroke-width="2" stroke-linecap="round"></path>
446
+ </svg>
447
+ <div>More</div>
448
+ </div>
449
+ <div class="nav-item">
450
+ <svg class="nav-icon" viewBox="0 0 24 24">
451
+ <path d="M6 7h12l2 10H4l2-10z" fill="#333"></path>
452
+ <circle cx="9" cy="20" r="2" fill="#333"></circle>
453
+ <circle cx="17" cy="20" r="2" fill="#333"></circle>
454
+ </svg>
455
+ <div>Cart</div>
456
+ </div>
457
+ <div class="nav-item">
458
+ <svg class="nav-icon" viewBox="0 0 24 24">
459
+ <path d="M3 6h18M3 12h18M3 18h18" stroke="#333" stroke-width="2" stroke-linecap="round"></path>
460
+ </svg>
461
+ <div>Menu</div>
462
+ </div>
463
+ </div>
464
+ </div>
465
+ </body>
466
+ </html>
code/3471/3471_1.html ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail - Van Heusen Men's Shirt</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: #222; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden; background: #fff;
11
+ }
12
+ /* Header */
13
+ .header {
14
+ background: linear-gradient(180deg, #a8e6df 0%, #9fe3d9 60%, #eaf7f5 100%);
15
+ padding: 24px 36px 24px 36px;
16
+ }
17
+ .status-bar {
18
+ height: 60px;
19
+ display: flex; align-items: center; justify-content: space-between; color: #1f2d2c; font-weight: 600; font-size: 40px;
20
+ }
21
+ .status-left { display: flex; align-items: center; gap: 28px; }
22
+ .status-right { display: flex; align-items: center; gap: 28px; }
23
+ .icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; }
24
+ .search-row { margin-top: 18px; display: flex; align-items: center; gap: 24px; }
25
+ .back-btn { width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; }
26
+ .search-box {
27
+ flex: 1; height: 90px; background: #fff; border-radius: 48px; box-shadow: 0 3px 8px rgba(0,0,0,0.12);
28
+ display: flex; align-items: center; padding: 0 28px;
29
+ font-size: 40px; color: #333;
30
+ }
31
+ .search-box .placeholder { flex: 1; color: #333; }
32
+ .scan-btn { width: 66px; height: 66px; border-radius: 20px; background: #f7f7f7; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #ddd; }
33
+
34
+ /* Brand + rating */
35
+ .brand-row {
36
+ padding: 24px 36px 12px 36px; display: flex; align-items: center; justify-content: space-between;
37
+ border-bottom: 1px solid #eee;
38
+ }
39
+ .brand-text { line-height: 1.35; }
40
+ .brand-text .brand {
41
+ font-size: 40px; color: #1e88e5; font-weight: 700;
42
+ }
43
+ .brand-text .title {
44
+ margin-top: 6px; font-size: 36px; color: #444;
45
+ }
46
+ .rating { display: flex; align-items: center; gap: 6px; }
47
+ .rating .stars { display: inline-flex; gap: 8px; }
48
+ .rating .count { font-size: 36px; color: #555; margin-left: 10px; }
49
+
50
+ /* Product image */
51
+ .image-wrap { position: relative; }
52
+ .product-img {
53
+ width: 100%; height: 1180px; background: #E0E0E0; border-top: 1px solid #BDBDBD; border-bottom: 1px solid #BDBDBD;
54
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 40px;
55
+ }
56
+ .share-fab {
57
+ position: absolute; right: 36px; top: 100px;
58
+ width: 100px; height: 100px; border-radius: 50%; background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,0.15);
59
+ border: 1px solid #e5e5e5; display: flex; align-items: center; justify-content: center;
60
+ }
61
+ .wish-fab {
62
+ position: absolute; left: 36px; bottom: 40px;
63
+ width: 88px; height: 88px; border-radius: 50%; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.12);
64
+ border: 1px solid #e5e5e5; display: flex; align-items: center; justify-content: center;
65
+ }
66
+
67
+ /* Carousel */
68
+ .carousel {
69
+ height: 110px; display: flex; align-items: center; justify-content: center; gap: 26px; color: #555;
70
+ }
71
+ .dot { width: 20px; height: 20px; border-radius: 50%; background: #bbb; }
72
+ .dot.active { background: #555; }
73
+ .play {
74
+ width: 38px; height: 38px; border-radius: 50%; border: 2px solid #999; display: flex; align-items: center; justify-content: center;
75
+ }
76
+
77
+ /* Details */
78
+ .details { padding: 12px 36px 0 36px; }
79
+ .detail-row {
80
+ border-top: 12px solid #f3f3f3; padding: 30px 0;
81
+ }
82
+ .detail-row:last-child { border-bottom: 12px solid #f3f3f3; }
83
+ .label { font-size: 40px; color: #555; }
84
+ .value { font-size: 42px; color: #111; font-weight: 800; }
85
+
86
+ /* Bottom nav */
87
+ .bottom-nav {
88
+ position: absolute; left: 0; right: 0; bottom: 0;
89
+ height: 220px; border-top: 1px solid #e5e5e5; background: #fff; display: flex; align-items: center; justify-content: space-around;
90
+ }
91
+ .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #3a3a3a; }
92
+ .nav-item .label { font-size: 34px; }
93
+ .nav-item.active .icon-wrap { color: #19a2a2; }
94
+ .icon-wrap { width: 74px; height: 74px; display: flex; align-items: center; justify-content: center; color: #444; }
95
+ .cart-badge {
96
+ position: absolute; top: 6px; right: 6px; background: #19a2a2; color: #fff; font-weight: 700; font-size: 28px;
97
+ width: 42px; height: 42px; border-radius: 21px; display: flex; align-items: center; justify-content: center;
98
+ }
99
+ /* Home indicator */
100
+ .home-indicator {
101
+ position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
102
+ width: 320px; height: 14px; border-radius: 8px; background: #cfcfcf;
103
+ }
104
+ </style>
105
+ </head>
106
+ <body>
107
+ <div id="render-target">
108
+ <!-- Header -->
109
+ <div class="header">
110
+ <div class="status-bar">
111
+ <div class="status-left">
112
+ <div>5:39</div>
113
+ <div class="icon" aria-label="Search">
114
+ <svg viewBox="0 0 24 24" width="40" height="40"><circle cx="10" cy="10" r="7" stroke="#1f2d2c" stroke-width="2" fill="none"></circle><path d="M15 15 L22 22" stroke="#1f2d2c" stroke-width="2" stroke-linecap="round"></path></svg>
115
+ </div>
116
+ <div class="icon" aria-label="Pin">
117
+ <svg viewBox="0 0 24 24" width="40" height="40"><path d="M12 2 L15 8 L21 9 L16 13 L17 21 L12 18 L7 21 L8 13 L3 9 L9 8 Z" fill="#1f2d2c"></path></svg>
118
+ </div>
119
+ <div class="icon" aria-label="Text size">
120
+ <svg viewBox="0 0 24 24" width="40" height="40"><path d="M4 18 L6 18 L7 15 L13 15 L14 18 L16 18 L11 4 L9 4 Z" fill="#1f2d2c"></path></svg>
121
+ </div>
122
+ <div style="font-size:40px;">19°</div>
123
+ <div style="font-size:48px;">•</div>
124
+ </div>
125
+ <div class="status-right">
126
+ <div class="icon" aria-label="Wi-Fi">
127
+ <svg viewBox="0 0 24 24" width="40" height="40"><path d="M2 9 C8 -1,16 -1,22 9" fill="none" stroke="#1f2d2c" stroke-width="2"></path><path d="M5 12 C10 5,14 5,19 12" fill="none" stroke="#1f2d2c" stroke-width="2"></path><circle cx="12" cy="17" r="2" fill="#1f2d2c"></circle></svg>
128
+ </div>
129
+ <div class="icon" aria-label="Battery">
130
+ <svg viewBox="0 0 24 24" width="46" height="46"><rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#1f2d2c" stroke-width="2"></rect><rect x="4" y="8" width="12" height="8" fill="#1f2d2c"></rect><rect x="20" y="9" width="2" height="6" fill="#1f2d2c"></rect></svg>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <div class="search-row">
136
+ <div class="back-btn">
137
+ <svg viewBox="0 0 24 24" width="64" height="64"><path d="M15 4 L7 12 L15 20" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path></svg>
138
+ </div>
139
+ <div class="search-box">
140
+ <div class="placeholder">Van Heusen men's shirt</div>
141
+ <div class="scan-btn" aria-label="Scan">
142
+ <svg viewBox="0 0 24 24" width="36" height="36"><rect x="4" y="4" width="16" height="16" rx="3" ry="3" fill="none" stroke="#666" stroke-width="2"></rect><rect x="8" y="8" width="8" height="8" fill="#999"></rect></svg>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+
148
+ <!-- Brand + rating -->
149
+ <div class="brand-row">
150
+ <div class="brand-text">
151
+ <div class="brand">Brand: Van Heusen</div>
152
+ <div class="title">Van Heusen Men's Shirt</div>
153
+ </div>
154
+ <div class="rating">
155
+ <div class="stars" aria-label="Rating">
156
+ <svg viewBox="0 0 24 24" width="42" height="42"><path d="M12 2 L15 9 L22 9 L17 14 L19 21 L12 17 L5 21 L7 14 L2 9 L9 9 Z" fill="#ff9f1a"></path></svg>
157
+ <svg viewBox="0 0 24 24" width="42" height="42"><path d="M12 2 L15 9 L22 9 L17 14 L19 21 L12 17 L5 21 L7 14 L2 9 L9 9 Z" fill="#ff9f1a"></path></svg>
158
+ <svg viewBox="0 0 24 24" width="42" height="42"><path d="M12 2 L15 9 L22 9 L17 14 L19 21 L12 17 L5 21 L7 14 L2 9 L9 9 Z" fill="#ff9f1a"></path></svg>
159
+ <svg viewBox="0 0 24 24" width="42" height="42"><path d="M12 2 L15 9 L22 9 L17 14 L19 21 L12 17 L5 21 L7 14 L2 9 L9 9 Z" fill="#ff9f1a"></path></svg>
160
+ <svg viewBox="0 0 24 24" width="42" height="42"><path d="M12 2 L15 9 L22 9 L17 14 L19 21 L12 17 L5 21 L7 14 L2 9 L9 9 Z" fill="#ddd"></path></svg>
161
+ </div>
162
+ <div class="count">8</div>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Product image -->
167
+ <div class="image-wrap">
168
+ <div class="product-img">[IMG: Navy men's formal shirt model]</div>
169
+
170
+ <div class="share-fab" aria-label="Share">
171
+ <svg viewBox="0 0 24 24" width="52" height="52">
172
+ <circle cx="6" cy="12" r="3" fill="#666"></circle>
173
+ <circle cx="18" cy="6" r="3" fill="#666"></circle>
174
+ <circle cx="18" cy="18" r="3" fill="#666"></circle>
175
+ <path d="M8.7 10.8 L15.3 7.2 M8.7 13.2 L15.3 16.8" stroke="#666" stroke-width="2" fill="none" stroke-linecap="round"></path>
176
+ </svg>
177
+ </div>
178
+
179
+ <div class="wish-fab" aria-label="Wishlist">
180
+ <svg viewBox="0 0 24 24" width="44" height="44">
181
+ <path d="M12 21 C12 21, 3 14, 5 8 C6 -1, 15 -1, 16 8 C19 14, 12 21, 12 21 Z" fill="none" stroke="#666" stroke-width="2"></path>
182
+ </svg>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Carousel dots -->
187
+ <div class="carousel">
188
+ <div class="dot active"></div>
189
+ <div class="play">
190
+ <svg viewBox="0 0 24 24" width="26" height="26"><path d="M8 6 L18 12 L8 18 Z" fill="#999"></path></svg>
191
+ </div>
192
+ <div class="dot"></div>
193
+ <div class="dot"></div>
194
+ <div class="dot"></div>
195
+ </div>
196
+
197
+ <!-- Details -->
198
+ <div class="details">
199
+ <div class="detail-row">
200
+ <span class="label">Colour: </span><span class="value">Navy</span>
201
+ </div>
202
+ <div class="detail-row">
203
+ <span class="label">Size: </span><span class="value">42</span>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- Bottom navigation -->
208
+ <div class="bottom-nav">
209
+ <div class="nav-item active">
210
+ <div class="icon-wrap">
211
+ <svg viewBox="0 0 24 24" width="64" height="64"><path d="M3 10 L12 3 L21 10 V20 H14 V14 H10 V20 H3 Z" fill="none" stroke="#19a2a2" stroke-width="2" stroke-linejoin="round"></path></svg>
212
+ </div>
213
+ <div class="label" style="color:#19a2a2;">Home</div>
214
+ </div>
215
+ <div class="nav-item">
216
+ <div class="icon-wrap">
217
+ <svg viewBox="0 0 24 24" width="64" height="64"><circle cx="12" cy="8" r="4" fill="none" stroke="#444" stroke-width="2"></circle><path d="M4 21 C4 15, 20 15, 20 21" fill="none" stroke="#444" stroke-width="2"></path></svg>
218
+ </div>
219
+ <div class="label">You</div>
220
+ </div>
221
+ <div class="nav-item">
222
+ <div class="icon-wrap">
223
+ <svg viewBox="0 0 24 24" width="64" height="64"><path d="M12 2 A10 10 0 1 0 22 12" fill="none" stroke="#444" stroke-width="2"></path><path d="M12 2 V7" stroke="#444" stroke-width="2" stroke-linecap="round"></path></svg>
224
+ </div>
225
+ <div class="label">More</div>
226
+ </div>
227
+ <div class="nav-item" style="position:relative;">
228
+ <div class="icon-wrap">
229
+ <svg viewBox="0 0 24 24" width="64" height="64"><path d="M6 6 H20 L18 16 H8 L6 6 Z" fill="none" stroke="#444" stroke-width="2"></path><circle cx="9" cy="19" r="2" fill="#444"></circle><circle cx="17" cy="19" r="2" fill="#444"></circle></svg>
230
+ </div>
231
+ <div class="cart-badge">3</div>
232
+ <div class="label">Cart</div>
233
+ </div>
234
+ <div class="nav-item">
235
+ <div class="icon-wrap">
236
+ <svg viewBox="0 0 24 24" width="64" height="64"><path d="M3 6 H21 M3 12 H21 M3 18 H21" stroke="#444" stroke-width="2" stroke-linecap="round"></path></svg>
237
+ </div>
238
+ <div class="label">Menu</div>
239
+ </div>
240
+ </div>
241
+
242
+ <div class="home-indicator"></div>
243
+ </div>
244
+ </body>
245
+ </html>
code/3471/3471_2.html ADDED
@@ -0,0 +1,260 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Page Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+ .header {
15
+ height: 220px;
16
+ background: linear-gradient(90deg, #78d0c6, #a9e5d4);
17
+ box-shadow: 0 2px 0 rgba(0,0,0,0.05);
18
+ }
19
+ .status-row {
20
+ height: 56px; display: flex; align-items: center;
21
+ padding: 0 36px; font-size: 36px; color: #2b2b2b;
22
+ }
23
+ .status-icons { margin-left: auto; display: flex; gap: 28px; align-items: center; color: #2b2b2b; }
24
+ .search-row {
25
+ display: flex; align-items: center; gap: 24px;
26
+ padding: 16px 28px 0 28px;
27
+ }
28
+ .back-icon {
29
+ width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
30
+ }
31
+ .search-bar {
32
+ flex: 1; height: 96px; background: #fff;
33
+ border-radius: 20px; box-shadow: 0 6px 12px rgba(0,0,0,0.15);
34
+ display: flex; align-items: center; padding: 0 28px; gap: 20px; font-size: 40px;
35
+ }
36
+ .search-input { color: #222; flex: 1; }
37
+ .camera-icon {
38
+ width: 70px; height: 70px; border-radius: 16px; border: 2px solid #d1d1d1; display: flex; align-items: center; justify-content: center;
39
+ }
40
+ .carousel-dots {
41
+ display: flex; gap: 20px; justify-content: center; align-items: center; padding-top: 18px;
42
+ }
43
+ .dot { width: 18px; height: 18px; background: #c9c9c9; border-radius: 50%; }
44
+ .content {
45
+ padding: 28px 36px 180px 36px;
46
+ }
47
+ .label-row { font-size: 44px; color: #333; margin-top: 22px; }
48
+ .label-row b { font-weight: 700; }
49
+ .size-chips { display: flex; gap: 28px; margin-top: 26px; }
50
+ .chip {
51
+ width: 228px; border: 2px solid #d7d7d7; border-radius: 18px; padding: 24px;
52
+ display: flex; flex-direction: column; gap: 12px; background: #fff;
53
+ }
54
+ .chip.selected { border-color: #000; }
55
+ .chip .size { font-size: 42px; color: #333; }
56
+ .chip .price { font-size: 36px; color: #222; }
57
+ .chip .mrp { font-size: 32px; color: #9e9e9e; text-decoration: line-through; }
58
+ .chip.unavailable { position: relative; background: #f7f7f7; }
59
+ .chip.unavailable:before {
60
+ content:""; position: absolute; right: 10px; top: 10px; width: 180px; height: 2px; background:#bdbdbd; transform: rotate(35deg);
61
+ }
62
+ .chip.unavailable .status { font-size: 34px; color: #c5462c; }
63
+ .link { color: #007185; font-size: 40px; margin: 32px 0; }
64
+ .price-area { margin-top: 12px; }
65
+ .discount-row { display: flex; align-items: baseline; gap: 20px; }
66
+ .discount { font-size: 76px; color: #d23a55; font-weight: 700; }
67
+ .final-price { font-size: 76px; color: #222; font-weight: 700; }
68
+ .mrp-row { font-size: 36px; color: #8b8b8b; margin-top: 10px; }
69
+ .emi { font-size: 40px; color: #333; margin-top: 20px; }
70
+ .emi .link { display: inline; font-size: 40px; }
71
+ .divider { height: 1px; background: #e3e3e3; margin: 34px 0; }
72
+ .offers {
73
+ display: flex; align-items: center; justify-content: space-between;
74
+ padding: 28px 0;
75
+ }
76
+ .offer-left { display: flex; align-items: center; gap: 24px; }
77
+ .offer-title { font-size: 44px; color: #333; font-weight: 600; }
78
+ .offer-sub { font-size: 36px; color: #777; }
79
+ .delivery { font-size: 40px; color: #333; margin-top: 30px; }
80
+ .delivery .blue { color: #0b8ad7; }
81
+ .delivery .green { color: #1a9c43; }
82
+ .location { display: flex; align-items: center; gap: 20px; font-size: 42px; color: #333; margin-top: 34px; }
83
+ .stock { font-size: 44px; color: #c5462c; font-weight: 700; margin-top: 34px; }
84
+ .add-bar-wrap {
85
+ position: absolute; left: 0; right: 0; bottom: 180px; padding: 0 28px;
86
+ }
87
+ .add-bar {
88
+ height: 120px; background: #ffd814; border-radius: 60px;
89
+ display: flex; align-items: center; justify-content: center;
90
+ font-weight: 700; font-size: 48px; color: #222;
91
+ box-shadow: 0 6px 12px rgba(0,0,0,0.1);
92
+ }
93
+ .bottom-nav {
94
+ position: absolute; left: 0; right: 0; bottom: 0;
95
+ height: 180px; border-top: 1px solid #e5e5e5; background: #fff;
96
+ display: flex; justify-content: space-around; align-items: center;
97
+ }
98
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #333; font-size: 34px; }
99
+ .nav-item.active { color: #0b8ad7; }
100
+ .icon { width: 60px; height: 60px; }
101
+ </style>
102
+ </head>
103
+ <body>
104
+ <div id="render-target">
105
+ <div class="header">
106
+ <div class="status-row">
107
+ <div>5:39</div>
108
+ <div class="status-icons">
109
+ <span>🔍</span>
110
+ <span>📌</span>
111
+ <span>A</span>
112
+ <span>🌡️</span>
113
+ <span>•</span>
114
+ <span>▮▮▮</span>
115
+ </div>
116
+ </div>
117
+ <div class="search-row">
118
+ <div class="back-icon">
119
+ <svg class="icon" viewBox="0 0 48 48">
120
+ <path d="M30 8 L12 24 L30 40" stroke="#222" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
121
+ </svg>
122
+ </div>
123
+ <div class="search-bar">
124
+ <svg class="icon" viewBox="0 0 48 48">
125
+ <circle cx="20" cy="20" r="12" stroke="#606060" stroke-width="4" fill="none"/>
126
+ <path d="M30 30 L44 44" stroke="#606060" stroke-width="4" stroke-linecap="round"/>
127
+ </svg>
128
+ <div class="search-input">Van Heusen men's shirt</div>
129
+ <div class="camera-icon">
130
+ <svg viewBox="0 0 48 48" width="44" height="44">
131
+ <rect x="8" y="12" width="32" height="24" rx="6" ry="6" fill="none" stroke="#999" stroke-width="3"/>
132
+ <circle cx="24" cy="24" r="8" fill="none" stroke="#999" stroke-width="3"/>
133
+ </svg>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ <div class="carousel-dots">
138
+ <div class="dot" style="opacity:0.6"></div>
139
+ <div class="dot" style="opacity:0.9"></div>
140
+ <div class="dot" style="opacity:0.6"></div>
141
+ <div class="dot" style="opacity:0.6"></div>
142
+ </div>
143
+ </div>
144
+
145
+ <div class="content">
146
+ <div class="label-row">Colour: <b>Navy</b></div>
147
+ <div class="label-row" style="margin-top:18px;">Size: <b>42</b></div>
148
+
149
+ <div class="size-chips">
150
+ <div class="chip">
151
+ <div class="size">39</div>
152
+ <div class="price">₹1,639.00</div>
153
+ <div class="mrp">₹2,599.00</div>
154
+ </div>
155
+ <div class="chip">
156
+ <div class="size">40</div>
157
+ <div class="price">₹1,489.00</div>
158
+ <div class="mrp">₹2,599.00</div>
159
+ </div>
160
+ <div class="chip selected">
161
+ <div class="size">42</div>
162
+ <div class="price">₹1,639.00</div>
163
+ <div class="mrp">₹2,599.00</div>
164
+ </div>
165
+ <div class="chip unavailable">
166
+ <div class="size">44</div>
167
+ <div class="status">Currently unavailable</div>
168
+ </div>
169
+ </div>
170
+
171
+ <div class="link">Size guide</div>
172
+
173
+ <div class="price-area">
174
+ <div class="discount-row">
175
+ <div class="discount">-37%</div>
176
+ <div class="final-price">₹1,639</div>
177
+ </div>
178
+ <div class="mrp-row">M.R.P.: <span style="text-decoration: line-through;">₹2,599</span></div>
179
+ <div class="emi">EMI from ₹79. No Cost EMI available. <span class="link">EMI options</span> Inclusive of all taxes</div>
180
+ </div>
181
+
182
+ <div class="divider"></div>
183
+
184
+ <div class="offers">
185
+ <div class="offer-left">
186
+ <svg viewBox="0 0 60 60" width="60" height="60">
187
+ <circle cx="30" cy="30" r="26" fill="none" stroke="#e0e0e0" stroke-width="4"/>
188
+ <text x="30" y="38" text-anchor="middle" font-size="32" fill="#f0a020">%</text>
189
+ </svg>
190
+ <div>
191
+ <div class="offer-title">Save Extra with Offers</div>
192
+ <div class="offer-sub">No Cost EMI Offers, Bank Offers and Partner...</div>
193
+ </div>
194
+ </div>
195
+ <svg viewBox="0 0 48 48" width="48" height="48">
196
+ <path d="M16 18 L24 26 L32 18" stroke="#666" stroke-width="4" fill="none" stroke-linecap="round"/>
197
+ </svg>
198
+ </div>
199
+
200
+ <div class="delivery"><span class="blue">FREE delivery Wednesday, 4 October.</span> Details</div>
201
+ <div class="delivery">Or fastest delivery <b>Sunday, 1 October.</b> Order within <span class="green">18 hrs 22 mins.</span> Details</div>
202
+
203
+ <div class="location">
204
+ <svg viewBox="0 0 48 48" width="44" height="44">
205
+ <path d="M24 6 C16 6 10 12 10 20 c0 10 14 22 14 22 s14-12 14-22 c0-8-6-14-14-14z" fill="none" stroke="#666" stroke-width="3"/>
206
+ <circle cx="24" cy="20" r="5" fill="none" stroke="#666" stroke-width="3"/>
207
+ </svg>
208
+ Deliver to Gurugram 122003
209
+ </div>
210
+
211
+ <div class="stock">Only 1 left in stock</div>
212
+ </div>
213
+
214
+ <div class="add-bar-wrap">
215
+ <div class="add-bar">Add to Cart</div>
216
+ </div>
217
+
218
+ <div class="bottom-nav">
219
+ <div class="nav-item active">
220
+ <svg class="icon" viewBox="0 0 48 48">
221
+ <path d="M6 24 L24 10 L42 24 V40 H6 Z" stroke="#0b8ad7" fill="none" stroke-width="3"/>
222
+ </svg>
223
+ <div>Home</div>
224
+ </div>
225
+ <div class="nav-item">
226
+ <svg class="icon" viewBox="0 0 48 48">
227
+ <circle cx="24" cy="16" r="8" fill="none" stroke="#666" stroke-width="3"/>
228
+ <path d="M8 40 C12 28 36 28 40 40" stroke="#666" stroke-width="3" fill="none"/>
229
+ </svg>
230
+ <div>You</div>
231
+ </div>
232
+ <div class="nav-item">
233
+ <svg class="icon" viewBox="0 0 48 48">
234
+ <path d="M10 26 C10 16 18 8 28 8" stroke="#666" stroke-width="3" fill="none"/>
235
+ <path d="M38 22 C38 32 30 40 20 40" stroke="#666" stroke-width="3" fill="none"/>
236
+ <path d="M26 8 L32 8 L28 14" stroke="#666" stroke-width="3" fill="none"/>
237
+ <path d="M22 40 L16 40 L20 34" stroke="#666" stroke-width="3" fill="none"/>
238
+ </svg>
239
+ <div>More</div>
240
+ </div>
241
+ <div class="nav-item">
242
+ <svg class="icon" viewBox="0 0 48 48">
243
+ <path d="M6 12 H14 L18 28 H38 L42 18 H20" stroke="#666" stroke-width="3" fill="none"/>
244
+ <circle cx="20" cy="38" r="3" fill="#666"/>
245
+ <circle cx="34" cy="38" r="3" fill="#666"/>
246
+ </svg>
247
+ <div>Cart</div>
248
+ </div>
249
+ <div class="nav-item">
250
+ <svg class="icon" viewBox="0 0 48 48">
251
+ <path d="M8 12 H40" stroke="#666" stroke-width="4"/>
252
+ <path d="M8 24 H40" stroke="#666" stroke-width="4"/>
253
+ <path d="M8 36 H40" stroke="#666" stroke-width="4"/>
254
+ </svg>
255
+ <div>Menu</div>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </body>
260
+ </html>
code/3471/3471_4.html ADDED
@@ -0,0 +1,326 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Details UI Mock</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; }
9
+ #render-target {
10
+ width:1080px; height:2400px;
11
+ position:relative; overflow:hidden;
12
+ background:#ffffff;
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
14
+ color:#212121;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position:absolute; top:0; left:0; right:0;
20
+ height:110px;
21
+ padding:20px 30px 0 30px;
22
+ background:linear-gradient(180deg, #9FDAD0 0%, #CFE9CE 100%);
23
+ color:#1b1b1b;
24
+ font-size:34px;
25
+ }
26
+ .status-left { float:left; display:flex; align-items:center; gap:18px; }
27
+ .status-right { float:right; display:flex; align-items:center; gap:22px; }
28
+ .status-dot { width:10px; height:10px; background:#3d3d3d; border-radius:50%; display:inline-block; margin-top:8px; }
29
+ .icon-signal, .icon-battery { width:40px; height:40px; }
30
+
31
+ /* Header with search */
32
+ .header {
33
+ position:absolute; top:110px; left:0; right:0;
34
+ padding:26px 28px 24px 28px;
35
+ background:linear-gradient(180deg, #9FDAD0 0%, #CFE9CE 100%);
36
+ }
37
+ .back-btn {
38
+ position:absolute; left:24px; top:36px;
39
+ width:72px; height:72px; border:none; background:transparent; cursor:pointer;
40
+ }
41
+ .search-box {
42
+ margin-left:90px; margin-right:28px;
43
+ height:88px; background:#fff; border-radius:22px;
44
+ box-shadow:0 4px 10px rgba(0,0,0,0.08);
45
+ display:flex; align-items:center; padding:0 24px;
46
+ border:1px solid #e5e5e5;
47
+ }
48
+ .search-icon { width:40px; height:40px; margin-right:16px; }
49
+ .search-text {
50
+ flex:1; font-size:34px; color:#2b2b2b;
51
+ white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
52
+ }
53
+ .camera-btn { width:60px; height:60px; border-radius:14px; display:flex; justify-content:center; align-items:center; background:#F4F4F4; border:1px solid #dddddd; }
54
+
55
+ /* Tabs */
56
+ .tabs {
57
+ position:absolute; top:220px; left:0; right:0;
58
+ display:flex; align-items:center;
59
+ height:100px; background:#ffffff; border-bottom:1px solid #e0e0e0;
60
+ padding:0 24px;
61
+ }
62
+ .tab { padding:0 24px; font-size:34px; color:#4a4a4a; height:100%; display:flex; align-items:center; }
63
+ .tab.active { color:#111111; position:relative; }
64
+ .tab.active::after {
65
+ content:""; position:absolute; bottom:0; left:16px; right:16px; height:8px; background:#F59E0B; border-radius:4px;
66
+ }
67
+ .tabs .spacer { flex:1; }
68
+ .jump-top {
69
+ width:80px; height:80px; border-radius:16px; background:#EAF4F3; border:1px solid #d7e6e4;
70
+ display:flex; justify-content:center; align-items:center; margin-left:auto;
71
+ }
72
+
73
+ /* Content area */
74
+ .content {
75
+ position:absolute; top:320px; left:0; right:0; bottom:220px;
76
+ overflow:hidden;
77
+ }
78
+ .section-block { padding:28px; }
79
+ .text-row {
80
+ font-size:34px; line-height:48px; color:#2f2f2f;
81
+ }
82
+ .link { color:#1e88e5; text-decoration:none; }
83
+ .muted { color:#757575; }
84
+
85
+ /* Feature icons row */
86
+ .benefits {
87
+ display:flex; gap:28px; padding:20px 20px 16px 20px;
88
+ overflow:hidden;
89
+ }
90
+ .benefit {
91
+ width:192px; text-align:center;
92
+ }
93
+ .benefit .circle {
94
+ width:148px; height:148px; margin:0 auto 16px auto;
95
+ background:#F7F9F9; border:1px solid #E4E9E8; border-radius:50%;
96
+ display:flex; justify-content:center; align-items:center;
97
+ }
98
+ .benefit svg { width:84px; height:84px; stroke:#7f8c8a; fill:none; }
99
+ .benefit .label { font-size:30px; color:#3a3a3a; }
100
+
101
+ .divider { height:1px; background:#e0e0e0; margin:10px 0; }
102
+
103
+ /* Toggle rows */
104
+ .toggle-row {
105
+ display:flex; align-items:center; padding:24px 28px;
106
+ border-top:1px solid #e0e0e0; border-bottom:1px solid #e0e0e0;
107
+ background:#ffffff;
108
+ }
109
+ .toggle-title { font-size:40px; font-weight:600; }
110
+ .chevron { margin-left:auto; width:44px; height:44px; }
111
+
112
+ /* Product details list */
113
+ .details { padding:20px 28px 0 28px; }
114
+ .details .title-row {
115
+ display:flex; align-items:center; padding:16px 0;
116
+ }
117
+ .details .title { font-size:44px; font-weight:700; }
118
+ .details .title-row .chevron { margin-left:auto; }
119
+ .detail-item { margin:24px 0; }
120
+ .detail-item .label { font-size:36px; font-weight:700; color:#1f1f1f; }
121
+ .detail-item .value { font-size:36px; color:#616161; margin-top:6px; }
122
+ .see-more {
123
+ padding:0 28px 20px 28px; display:flex; align-items:center; gap:10px;
124
+ color:#1e88e5; font-size:36px;
125
+ }
126
+ .see-more .chev { width:36px; height:36px; }
127
+
128
+ /* Bottom nav */
129
+ .bottom-nav {
130
+ position:absolute; left:0; right:0; bottom:0;
131
+ height:190px; background:#ffffff; border-top:1px solid #e0e0e0;
132
+ display:flex; align-items:center; justify-content:space-around;
133
+ }
134
+ .nav-item { width:160px; text-align:center; color:#4d4d4d; }
135
+ .nav-item.active { color:#0f766e; }
136
+ .nav-item svg { width:64px; height:64px; display:block; margin:0 auto 8px auto; }
137
+ .badge {
138
+ position:absolute; transform:translate(28px, -10px);
139
+ background:#EF4444; color:#fff; font-size:26px; padding:4px 10px; border-radius:20px;
140
+ }
141
+
142
+ /* Avatar placeholder above nav */
143
+ .bottom-avatar {
144
+ position:absolute; left:24px; bottom:190px; width:120px; height:120px;
145
+ background:#E0E0E0; border:1px solid #BDBDBD; border-radius:12px;
146
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:28px;
147
+ }
148
+
149
+ /* Gesture bar */
150
+ .gesture {
151
+ position:absolute; bottom:20px; left:50%; transform:translateX(-50%);
152
+ width:300px; height:12px; background:#bdbdbd; border-radius:6px;
153
+ }
154
+ </style>
155
+ </head>
156
+ <body>
157
+ <div id="render-target">
158
+
159
+ <!-- Status bar -->
160
+ <div class="status-bar">
161
+ <div class="status-left">5:40</div>
162
+ <div class="status-right">
163
+ <svg class="icon-signal" viewBox="0 0 24 24"><path d="M2 20h2v2H2v-2zm4-4h2v6H6v-6zm4-4h2v10h-2V12zm4-4h2v14h-2V8zm4-6h2v20h-2V2z" fill="#2f2f2f"/></svg>
164
+ <div class="status-dot"></div>
165
+ <svg class="icon-battery" viewBox="0 0 24 24"><rect x="2" y="6" width="18" height="12" rx="2" ry="2" stroke="#2f2f2f" fill="none"/><rect x="4" y="8" width="14" height="8" fill="#2f2f2f"/><rect x="20" y="10" width="2" height="4" fill="#2f2f2f"/></svg>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- Header -->
170
+ <div class="header">
171
+ <button class="back-btn" aria-label="Back">
172
+ <svg viewBox="0 0 24 24"><path d="M14.5 4.5L6 12l8.5 7.5" stroke="#2b2b2b" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
173
+ </button>
174
+ <div class="search-box">
175
+ <svg class="search-icon" viewBox="0 0 24 24"><circle cx="10" cy="10" r="7" stroke="#6b7280" stroke-width="2" fill="none"/><path d="M15 15l7 7" stroke="#6b7280" stroke-width="2" stroke-linecap="round"/></svg>
176
+ <div class="search-text">Van Heusen men's shirt</div>
177
+ <div class="camera-btn">
178
+ <svg viewBox="0 0 24 24"><rect x="3" y="7" width="18" height="13" rx="2" stroke="#6b7280" fill="none"/><path d="M7 7l2-3h6l2 3" stroke="#6b7280" fill="none"/><circle cx="12" cy="13" r="3" stroke="#6b7280" fill="none"/></svg>
179
+ </div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Tabs -->
184
+ <div class="tabs">
185
+ <div class="tab active">Details</div>
186
+ <div class="tab">Compare</div>
187
+ <div class="tab">Questions</div>
188
+ <div class="tab">Reviews</div>
189
+ <div class="spacer"></div>
190
+ <div class="jump-top" title="Top">
191
+ <svg viewBox="0 0 24 24"><path d="M12 6l-6 6h12z" fill="#0f766e"/></svg>
192
+ </div>
193
+ </div>
194
+
195
+ <!-- Content -->
196
+ <div class="content">
197
+ <div class="section-block">
198
+ <div class="text-row">Sold by <a class="link" href="#">Cocoblu Retail</a> and <a class="link" href="#">Fulfilled by Amazon</a>.</div>
199
+ <div class="text-row muted">Gift-wrap available.</div>
200
+ <div class="text-row" style="margin-top:14px;"><a class="link" href="#">Add to Wish List</a></div>
201
+ </div>
202
+
203
+ <div class="benefits">
204
+ <div class="benefit">
205
+ <div class="circle">
206
+ <svg viewBox="0 0 24 24">
207
+ <rect x="2" y="6" width="14" height="10" rx="2" stroke="#7f8c8a"/>
208
+ <path d="M16 10h4l2 3h-6v-3z" stroke="#7f8c8a"/>
209
+ <circle cx="6" cy="17" r="2" fill="#7f8c8a"/>
210
+ <circle cx="19" cy="17" r="2" fill="#7f8c8a"/>
211
+ </svg>
212
+ </div>
213
+ <div class="label">Free Delivery</div>
214
+ </div>
215
+ <div class="benefit">
216
+ <div class="circle">
217
+ <svg viewBox="0 0 24 24">
218
+ <path d="M5 12l4-4 3 3 5-5" stroke="#7f8c8a" stroke-width="2" fill="none"/>
219
+ <rect x="3" y="14" width="18" height="6" rx="2" stroke="#7f8c8a" fill="none"/>
220
+ </svg>
221
+ </div>
222
+ <div class="label">Pay on Delivery</div>
223
+ </div>
224
+ <div class="benefit">
225
+ <div class="circle">
226
+ <svg viewBox="0 0 24 24">
227
+ <rect x="4" y="6" width="16" height="12" rx="2" stroke="#7f8c8a" fill="none"/>
228
+ <path d="M8 12h8M12 9v6" stroke="#7f8c8a"/>
229
+ </svg>
230
+ </div>
231
+ <div class="label">10 days Return & Exchange</div>
232
+ </div>
233
+ <div class="benefit">
234
+ <div class="circle">
235
+ <svg viewBox="0 0 24 24">
236
+ <rect x="2" y="8" width="14" height="8" rx="2" stroke="#7f8c8a"/>
237
+ <path d="M16 10h4l2 3h-6v-3z" stroke="#7f8c8a"/>
238
+ </svg>
239
+ </div>
240
+ <div class="label">Amazon Delivered</div>
241
+ </div>
242
+ <div class="benefit">
243
+ <div class="circle">
244
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 6 7 1-5 4 2 7-7-4-7 4 2-7-5-4 7-1 3-6z" stroke="#7f8c8a" fill="none"/></svg>
245
+ </div>
246
+ <div class="label">Top Rated</div>
247
+ </div>
248
+ </div>
249
+
250
+ <div class="divider"></div>
251
+
252
+ <div class="toggle-row">
253
+ <div class="toggle-title">Size guide</div>
254
+ <svg class="chevron" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
255
+ </div>
256
+
257
+ <div class="details">
258
+ <div class="title-row">
259
+ <div class="title">Product details</div>
260
+ <svg class="chevron" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
261
+ </div>
262
+
263
+ <div class="detail-item">
264
+ <div class="label">Material Composition</div>
265
+ <div class="value">60% Cotton, 40% Modal</div>
266
+ </div>
267
+
268
+ <div class="detail-item">
269
+ <div class="label">Fit Type</div>
270
+ <div class="value">Regular Fit</div>
271
+ </div>
272
+
273
+ <div class="detail-item">
274
+ <div class="label">Sleeve Type</div>
275
+ <div class="value">Long Sleeve</div>
276
+ </div>
277
+
278
+ <div class="detail-item">
279
+ <div class="label">Collar Style</div>
280
+ <div class="value">Classic</div>
281
+ </div>
282
+
283
+ <div class="detail-item">
284
+ <div class="label">Length</div>
285
+ <div class="value">Standard Length</div>
286
+ </div>
287
+ </div>
288
+
289
+ <div class="see-more">
290
+ <span>See more</span>
291
+ <svg class="chev" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#1e88e5" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
292
+ </div>
293
+ </div>
294
+
295
+ <!-- Avatar placeholder -->
296
+ <div class="bottom-avatar">[IMG: User Avatar]</div>
297
+
298
+ <!-- Bottom navigation -->
299
+ <div class="bottom-nav">
300
+ <div class="nav-item active">
301
+ <svg viewBox="0 0 24 24"><path d="M3 10l9-7 9 7v10H3V10z" stroke="#0f766e" fill="none"/><path d="M9 21v-6h6v6" stroke="#0f766e" fill="none"/></svg>
302
+ <div>Home</div>
303
+ </div>
304
+ <div class="nav-item">
305
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="8" r="4" stroke="#4d4d4d" fill="none"/><path d="M4 22c1-4 5-6 8-6s7 2 8 6" stroke="#4d4d4d" fill="none"/></svg>
306
+ <div>You</div>
307
+ </div>
308
+ <div class="nav-item">
309
+ <svg viewBox="0 0 24 24"><path d="M4 12a8 8 0 0116 0" stroke="#4d4d4d" fill="none"/><path d="M4 12a8 8 0 008 8" stroke="#4d4d4d" fill="none"/></svg>
310
+ <div>More</div>
311
+ </div>
312
+ <div class="nav-item" style="position:relative;">
313
+ <svg viewBox="0 0 24 24"><path d="M5 6h14l-2 12H7L5 6z" stroke="#4d4d4d" fill="none"/><circle cx="9" cy="20" r="2" fill="#4d4d4d"/><circle cx="17" cy="20" r="2" fill="#4d4d4d"/></svg>
314
+ <div class="badge">3</div>
315
+ <div>Cart</div>
316
+ </div>
317
+ <div class="nav-item">
318
+ <svg viewBox="0 0 24 24"><path d="M3 6h18M3 12h18M3 18h18" stroke="#4d4d4d" stroke-width="2"/></svg>
319
+ <div>Menu</div>
320
+ </div>
321
+ </div>
322
+
323
+ <div class="gesture"></div>
324
+ </div>
325
+ </body>
326
+ </html>
code/3473/3473_0.html ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Android Home Screen Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #0b0d12;
15
+ border-radius: 0;
16
+ }
17
+
18
+ /* Wallpaper placeholder */
19
+ .wallpaper {
20
+ position: absolute;
21
+ inset: 0;
22
+ background: #E0E0E0;
23
+ border: 1px solid #BDBDBD;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: center;
27
+ color: #757575;
28
+ font-size: 28px;
29
+ letter-spacing: 0.3px;
30
+ }
31
+
32
+ /* Status bar */
33
+ .status-bar {
34
+ position: absolute;
35
+ top: 18px;
36
+ left: 0;
37
+ width: 100%;
38
+ height: 56px;
39
+ padding: 0 26px;
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: space-between;
43
+ color: #ffffff;
44
+ font-size: 28px;
45
+ z-index: 2;
46
+ }
47
+ .status-right {
48
+ display: flex;
49
+ align-items: center;
50
+ gap: 22px;
51
+ }
52
+ .status-icon svg { display: block; height: 28px; width: 28px; }
53
+
54
+ /* Date text */
55
+ .date {
56
+ position: absolute;
57
+ top: 140px;
58
+ left: 48px;
59
+ color: #ffffff;
60
+ font-size: 54px;
61
+ font-weight: 400;
62
+ text-shadow: 0 2px 6px rgba(0,0,0,0.35);
63
+ z-index: 2;
64
+ }
65
+
66
+ /* App rows */
67
+ .app-row {
68
+ position: absolute;
69
+ left: 48px;
70
+ right: 48px;
71
+ display: flex;
72
+ justify-content: space-between;
73
+ z-index: 2;
74
+ }
75
+ .row-top { top: 1580px; }
76
+ .row-bottom { top: 1860px; }
77
+
78
+ .app {
79
+ width: 180px;
80
+ text-align: center;
81
+ color: #ffffff;
82
+ }
83
+ .icon-circle {
84
+ width: 160px;
85
+ height: 160px;
86
+ border-radius: 50%;
87
+ background: #ffffff;
88
+ margin: 0 auto;
89
+ display: flex;
90
+ align-items: center;
91
+ justify-content: center;
92
+ box-shadow: 0 6px 20px rgba(0,0,0,0.35);
93
+ }
94
+ .label {
95
+ margin-top: 18px;
96
+ font-size: 34px;
97
+ font-weight: 500;
98
+ letter-spacing: 0.2px;
99
+ }
100
+
101
+ .dock .label { display: none; }
102
+
103
+ /* Search bar */
104
+ .search-bar {
105
+ position: absolute;
106
+ left: 60px;
107
+ right: 60px;
108
+ bottom: 134px;
109
+ height: 136px;
110
+ background: #ffffff;
111
+ border-radius: 68px;
112
+ box-shadow: 0 8px 28px rgba(0,0,0,0.35);
113
+ display: flex;
114
+ align-items: center;
115
+ padding: 0 36px;
116
+ gap: 28px;
117
+ z-index: 2;
118
+ }
119
+ .search-input {
120
+ flex: 1;
121
+ height: 76px;
122
+ border-radius: 38px;
123
+ background: #f3f3f3;
124
+ }
125
+ .search-actions {
126
+ display: flex;
127
+ align-items: center;
128
+ gap: 30px;
129
+ }
130
+
131
+ /* Gesture bar */
132
+ .gesture {
133
+ position: absolute;
134
+ bottom: 40px;
135
+ left: 50%;
136
+ transform: translateX(-50%);
137
+ width: 320px;
138
+ height: 14px;
139
+ background: #ffffffcc;
140
+ border-radius: 8px;
141
+ z-index: 2;
142
+ }
143
+
144
+ /* Simple icon sizing */
145
+ .icon-circle svg { width: 96px; height: 96px; }
146
+
147
+ /* Google "G" mark in search */
148
+ .google-g {
149
+ width: 56px; height: 56px; display: inline-block;
150
+ }
151
+ </style>
152
+ </head>
153
+ <body>
154
+ <div id="render-target">
155
+
156
+ <!-- Wallpaper placeholder covering the screen -->
157
+ <div class="wallpaper">[IMG: Rocky mountain wallpaper]</div>
158
+
159
+ <!-- Status bar -->
160
+ <div class="status-bar">
161
+ <div class="status-left">8:32</div>
162
+ <div class="status-right">
163
+ <!-- small dots/indicators -->
164
+ <div class="status-icon">
165
+ <svg viewBox="0 0 24 24">
166
+ <circle cx="4" cy="12" r="2" fill="#fff"/>
167
+ <circle cx="12" cy="12" r="2" fill="#fff"/>
168
+ <circle cx="20" cy="12" r="2" fill="#fff"/>
169
+ </svg>
170
+ </div>
171
+ <!-- Wi-Fi -->
172
+ <div class="status-icon" title="Wi-Fi">
173
+ <svg viewBox="0 0 24 24">
174
+ <path d="M2 9c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
175
+ <path d="M6 13c3-3 9-3 12 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
176
+ <circle cx="12" cy="17" r="2" fill="#fff"/>
177
+ </svg>
178
+ </div>
179
+ <!-- Battery -->
180
+ <div class="status-icon" title="Battery">
181
+ <svg viewBox="0 0 30 24">
182
+ <rect x="2" y="6" width="22" height="12" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"/>
183
+ <rect x="4" y="8" width="16" height="8" fill="#fff"/>
184
+ <rect x="26" y="9" width="3" height="6" rx="1" fill="#fff"/>
185
+ </svg>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- Date -->
191
+ <div class="date">Thu, Sep 14</div>
192
+
193
+ <!-- Top app row with labels -->
194
+ <div class="app-row row-top">
195
+ <!-- Play Store -->
196
+ <div class="app">
197
+ <div class="icon-circle">
198
+ <svg viewBox="0 0 100 100">
199
+ <polygon points="18,50 62,25 62,75" fill="#34A853"/>
200
+ <polygon points="18,50 56,32 56,68" fill="#4285F4" opacity="0.85"/>
201
+ <polygon points="18,50 40,42 40,58" fill="#FBBC05" opacity="0.9"/>
202
+ </svg>
203
+ </div>
204
+ <div class="label">Play Store</div>
205
+ </div>
206
+
207
+ <!-- Gmail -->
208
+ <div class="app">
209
+ <div class="icon-circle">
210
+ <svg viewBox="0 0 100 100">
211
+ <rect x="18" y="28" width="64" height="44" rx="8" fill="#EFEFEF" stroke="#D0D0D0"/>
212
+ <path d="M18 28 L50 50 L82 28" stroke="#EA4335" stroke-width="12" fill="none" stroke-linecap="round" />
213
+ <path d="M30 28 L50 44 L70 28" stroke="#34A853" stroke-width="12" fill="none" stroke-linecap="round" />
214
+ <path d="M18 72 L50 50 L82 72" stroke="#4285F4" stroke-width="12" fill="none" stroke-linecap="round" />
215
+ </svg>
216
+ </div>
217
+ <div class="label">Gmail</div>
218
+ </div>
219
+
220
+ <!-- Photos -->
221
+ <div class="app">
222
+ <div class="icon-circle">
223
+ <svg viewBox="0 0 100 100">
224
+ <circle cx="50" cy="36" r="18" fill="#FBBC05"/>
225
+ <circle cx="64" cy="50" r="18" fill="#34A853"/>
226
+ <circle cx="36" cy="50" r="18" fill="#4285F4"/>
227
+ <circle cx="50" cy="64" r="18" fill="#EA4335"/>
228
+ </svg>
229
+ </div>
230
+ <div class="label">Photos</div>
231
+ </div>
232
+
233
+ <!-- YouTube -->
234
+ <div class="app">
235
+ <div class="icon-circle">
236
+ <svg viewBox="0 0 100 100">
237
+ <rect x="20" y="28" width="60" height="44" rx="12" fill="#FF0000"/>
238
+ <polygon points="46,50 46,38 62,50 46,62" fill="#FFFFFF"/>
239
+ </svg>
240
+ </div>
241
+ <div class="label">YouTube</div>
242
+ </div>
243
+ </div>
244
+
245
+ <!-- Bottom dock icons -->
246
+ <div class="app-row row-bottom dock">
247
+ <!-- Phone -->
248
+ <div class="app">
249
+ <div class="icon-circle">
250
+ <svg viewBox="0 0 100 100">
251
+ <path d="M32 30 c10 20 20 28 38 38 l-10 10 c-18 -8 -32 -22 -40 -40 l12 -8z" fill="#2F7CFB"/>
252
+ <path d="M66 66 l8 -8 c4 2 6 6 4 10 l-6 6 c-4 2 -6 -2 -6 -8z" fill="#1C5FD4"/>
253
+ </svg>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Messages -->
258
+ <div class="app">
259
+ <div class="icon-circle">
260
+ <svg viewBox="0 0 100 100">
261
+ <rect x="20" y="24" width="60" height="40" rx="14" fill="#3D7BFF"/>
262
+ <polygon points="44,64 40,80 60,64" fill="#3D7BFF"/>
263
+ <rect x="28" y="36" width="44" height="8" rx="4" fill="#BBD2FF"/>
264
+ </svg>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Chrome -->
269
+ <div class="app">
270
+ <div class="icon-circle">
271
+ <svg viewBox="0 0 100 100">
272
+ <circle cx="50" cy="50" r="26" fill="#1A73E8"/>
273
+ <circle cx="50" cy="50" r="12" fill="#ffffff"/>
274
+ <path d="M50 16 A34 34 0 0 1 90 50 H62" fill="#EA4335"/>
275
+ <path d="M90 50 A34 34 0 0 1 50 90 L36 62" fill="#34A853"/>
276
+ <path d="M50 90 A34 34 0 0 1 16 50 L44 50" fill="#FBBC05"/>
277
+ </svg>
278
+ </div>
279
+ </div>
280
+
281
+ <!-- Camera -->
282
+ <div class="app">
283
+ <div class="icon-circle">
284
+ <svg viewBox="0 0 100 100">
285
+ <rect x="22" y="32" width="56" height="36" rx="8" fill="#6F7A86"/>
286
+ <rect x="32" y="22" width="26" height="12" rx="6" fill="#8A96A4"/>
287
+ <circle cx="50" cy="50" r="12" fill="#2F7CFB"/>
288
+ <circle cx="50" cy="50" r="6" fill="#ffffff"/>
289
+ </svg>
290
+ </div>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- Search bar -->
295
+ <div class="search-bar">
296
+ <!-- Google G -->
297
+ <div class="google-g">
298
+ <svg viewBox="0 0 24 24">
299
+ <path d="M12 4a8 8 0 1 0 0 16c2.1 0 3.9-.7 5.2-1.9l-2.5-2a6 6 0 1 1 1.3-6.3H12v3h8c.1-.5.2-1 .2-1.6A8 8 0 0 0 12 4z" fill="#4285F4"/>
300
+ <path d="M4.7 9.6A8 8 0 0 1 12 4v3c-2.1 0-4 1.2-4.9 3.1l-2.4-.5z" fill="#EA4335"/>
301
+ <path d="M7.1 16.9A8 8 0 0 1 4.7 9.6l2.4.5c-.3.7-.5 1.4-.5 2.1 0 1.9.9 3.7 2.4 4.7l-1.9 0z" fill="#FBBC05"/>
302
+ <path d="M12 20a8 8 0 0 0 5.2-1.9l-2.5-2c-.8.6-1.8 1-2.7 1-1.6 0-3.1-.9-3.9-2.2l-2.3.9A8 8 0 0 0 12 20z" fill="#34A853"/>
303
+ </svg>
304
+ </div>
305
+ <div class="search-input"></div>
306
+ <div class="search-actions">
307
+ <!-- Mic icon -->
308
+ <svg viewBox="0 0 28 28" width="44" height="44">
309
+ <rect x="10" y="5" width="8" height="12" rx="4" fill="#4285F4"/>
310
+ <path d="M6 12c0 4 3 7 8 7s8-3 8-7" stroke="#EA4335" stroke-width="2" fill="none"/>
311
+ <rect x="12" y="20" width="4" height="4" fill="#34A853"/>
312
+ </svg>
313
+ <!-- Google Lens/Camera icon -->
314
+ <svg viewBox="0 0 32 32" width="48" height="48">
315
+ <rect x="6" y="10" width="20" height="14" rx="4" fill="#FEBF00"/>
316
+ <circle cx="16" cy="17" r="5" fill="#1A73E8"/>
317
+ <circle cx="16" cy="17" r="2.5" fill="#ffffff"/>
318
+ <rect x="12" y="6" width="8" height="4" rx="2" fill="#EA4335"/>
319
+ </svg>
320
+ </div>
321
+ </div>
322
+
323
+ <!-- Gesture bar -->
324
+ <div class="gesture"></div>
325
+
326
+ </div>
327
+ </body>
328
+ </html>
code/3473/3473_1.html ADDED
@@ -0,0 +1,308 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Agriculture Store UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff; color: #333;
13
+ font-family: Arial, Helvetica, sans-serif;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute; top: 0; left: 0; width: 100%; height: 120px;
19
+ background: #000;
20
+ color: #fff; font-size: 44px; line-height: 120px;
21
+ padding: 0 40px;
22
+ }
23
+
24
+ /* Header with search */
25
+ .header {
26
+ position: absolute; top: 120px; left: 0; width: 100%; height: 160px;
27
+ background: linear-gradient(0deg, #ffa34c, #f3a75e);
28
+ padding: 24px 36px;
29
+ box-sizing: border-box;
30
+ }
31
+ .header-row {
32
+ display: flex; align-items: center; gap: 24px;
33
+ }
34
+ .icon-btn {
35
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
36
+ border-radius: 16px;
37
+ }
38
+ .search-box {
39
+ flex: 1;
40
+ height: 88px; border-radius: 44px;
41
+ background: #ffffff; box-shadow: inset 0 0 0 1px #e5e5e5;
42
+ display: flex; align-items: center; padding: 0 32px; gap: 18px;
43
+ }
44
+ .search-placeholder { color: #8d8d8d; font-size: 40px; }
45
+
46
+ /* Banner / Hero */
47
+ .banner {
48
+ position: absolute; top: 300px; left: 36px; width: 1008px; height: 540px;
49
+ display: grid; grid-template-columns: 480px 528px; grid-gap: 20px;
50
+ }
51
+ .banner-left {
52
+ background: #fff; border-radius: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.08);
53
+ padding: 28px; box-sizing: border-box;
54
+ display: flex; flex-direction: column; justify-content: space-between;
55
+ }
56
+ .banner-left h1 { margin: 0; font-size: 52px; letter-spacing: 1px; }
57
+ .banner-left .sub { font-size: 34px; margin-top: 6px; color: #666; }
58
+ .banner-left .big { font-size: 90px; font-weight: bold; margin: 20px 0; }
59
+ .cta {
60
+ background: #ff7f3e; color: #fff; border-radius: 18px;
61
+ height: 100px; display: flex; align-items: center; justify-content: center;
62
+ font-weight: bold; font-size: 40px;
63
+ }
64
+ .banner-right {
65
+ display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 16px;
66
+ }
67
+ .img-ph {
68
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
69
+ display: flex; align-items: center; justify-content: center; text-align: center;
70
+ border-radius: 12px; font-size: 32px;
71
+ }
72
+ .slider-dots {
73
+ position: absolute; bottom: 6px; left: 420px;
74
+ display: flex; gap: 12px; align-items: center;
75
+ }
76
+ .dot { width: 26px; height: 26px; border-radius: 50%; background: #ff9b5e; opacity: 0.35; border: 2px solid #ff9b5e; }
77
+ .dot.active { opacity: 1; background: #ff7f3e; }
78
+
79
+ /* Quick navigation */
80
+ .quick-nav {
81
+ position: absolute; top: 860px; left: 36px; width: 1008px; height: 160px;
82
+ background: #fff; border-radius: 28px; box-shadow: 0 6px 20px rgba(0,0,0,0.08);
83
+ display: grid; grid-template-columns: repeat(4, 1fr);
84
+ }
85
+ .q-item { display: flex; align-items: center; justify-content: center; gap: 20px; }
86
+ .q-label { font-size: 34px; color: #333; }
87
+ .q-icon { width: 70px; height: 70px; }
88
+
89
+ /* Help card */
90
+ .help-card {
91
+ position: absolute; top: 1050px; left: 36px; width: 1008px; height: 180px;
92
+ background: #fdf2e8; border-radius: 26px; box-shadow: 0 6px 20px rgba(0,0,0,0.08);
93
+ padding: 28px; box-sizing: border-box;
94
+ display: flex; align-items: center; justify-content: space-between;
95
+ }
96
+ .help-text { max-width: 650px; }
97
+ .help-text h3 { margin: 0 0 8px 0; font-size: 42px; color: #3a3a3a; }
98
+ .help-text p { margin: 0; font-size: 34px; color: #666; }
99
+ .call-btn {
100
+ background: #ff7f3e; color: #fff; border-radius: 20px; padding: 22px 32px;
101
+ display: flex; align-items: center; gap: 18px; font-weight: bold; font-size: 36px;
102
+ box-shadow: 0 6px 12px rgba(255,127,62,0.35);
103
+ }
104
+ .call-icon { width: 40px; height: 40px; }
105
+
106
+ /* Promo cards */
107
+ .promo-row {
108
+ position: absolute; top: 1260px; left: 36px; width: 1008px; display: grid;
109
+ grid-template-columns: 1fr 1fr; gap: 24px;
110
+ }
111
+ .promo-card {
112
+ background: #fff; border-radius: 22px; box-shadow: 0 6px 20px rgba(0,0,0,0.08);
113
+ overflow: hidden;
114
+ }
115
+ .promo-img { height: 460px; }
116
+ .promo-bar {
117
+ height: 100px; background: #ff7f3e; color: #fff; display: flex; align-items: center; justify-content: center;
118
+ font-size: 40px; font-weight: bold;
119
+ }
120
+
121
+ /* Lower category blocks */
122
+ .lower-row {
123
+ position: absolute; top: 1880px; left: 36px; width: 1008px; display: grid;
124
+ grid-template-columns: 1fr 1fr; gap: 24px;
125
+ }
126
+ .lower-card {
127
+ height: 360px; border-radius: 22px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.08); background: #e1f1f6;
128
+ display: flex; align-items: center; justify-content: center; font-size: 56px; font-weight: bold; color: #1f6d82;
129
+ }
130
+ .lower-card.alt { background: #e7efe7; color: #3d6b4a; }
131
+
132
+ /* Floating WhatsApp */
133
+ .float-btn {
134
+ position: absolute; right: 36px; top: 1720px; width: 120px; height: 120px; border-radius: 60px;
135
+ background: #23c552; box-shadow: 0 8px 18px rgba(35,197,82,0.5);
136
+ display: flex; align-items: center; justify-content: center;
137
+ border: 6px solid #ffffff;
138
+ }
139
+ .gesture-bar {
140
+ position: absolute; bottom: 18px; left: 370px; width: 340px; height: 18px; background: #000; border-radius: 9px; opacity: 0.1;
141
+ }
142
+ </style>
143
+ </head>
144
+ <body>
145
+ <div id="render-target">
146
+
147
+ <!-- Status bar -->
148
+ <div class="status-bar">8:33</div>
149
+
150
+ <!-- Header -->
151
+ <div class="header">
152
+ <div class="header-row">
153
+ <div class="icon-btn">
154
+ <svg width="64" height="64" viewBox="0 0 64 64">
155
+ <rect x="8" y="14" width="48" height="6" fill="#333"></rect>
156
+ <rect x="8" y="29" width="48" height="6" fill="#333"></rect>
157
+ <rect x="8" y="44" width="48" height="6" fill="#333"></rect>
158
+ </svg>
159
+ </div>
160
+
161
+ <div class="search-box">
162
+ <svg width="40" height="40" viewBox="0 0 24 24">
163
+ <circle cx="10" cy="10" r="7" stroke="#aaa" stroke-width="2" fill="none"></circle>
164
+ <line x1="15" y1="15" x2="22" y2="22" stroke="#aaa" stroke-width="2"></line>
165
+ </svg>
166
+ <div class="search-placeholder">Search</div>
167
+ </div>
168
+
169
+ <div class="icon-btn">
170
+ <!-- Document + icon -->
171
+ <svg class="q-icon" viewBox="0 0 24 24">
172
+ <path d="M6 2h8l4 4v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z" fill="#fff" stroke="#333" stroke-width="2"></path>
173
+ <line x1="8" y1="10" x2="16" y2="10" stroke="#333" stroke-width="2"></line>
174
+ <line x1="8" y1="14" x2="16" y2="14" stroke="#333" stroke-width="2"></line>
175
+ <circle cx="18" cy="6" r="4" fill="#ff8a3d"></circle>
176
+ <line x1="18" y1="4.5" x2="18" y2="7.5" stroke="#fff" stroke-width="2"></line>
177
+ <line x1="16.5" y1="6" x2="19.5" y2="6" stroke="#fff" stroke-width="2"></line>
178
+ </svg>
179
+ </div>
180
+
181
+ <div class="icon-btn">
182
+ <!-- Cart -->
183
+ <svg class="q-icon" viewBox="0 0 24 24">
184
+ <path d="M3 5h2l2 10h10l2-7H7" fill="none" stroke="#333" stroke-width="2"></path>
185
+ <circle cx="9" cy="19" r="2" fill="#333"></circle>
186
+ <circle cx="17" cy="19" r="2" fill="#333"></circle>
187
+ </svg>
188
+ </div>
189
+
190
+ <div class="icon-btn">
191
+ <!-- More vertical -->
192
+ <svg width="40" height="40" viewBox="0 0 24 24">
193
+ <circle cx="12" cy="5" r="2.5" fill="#333"></circle>
194
+ <circle cx="12" cy="12" r="2.5" fill="#333"></circle>
195
+ <circle cx="12" cy="19" r="2.5" fill="#333"></circle>
196
+ </svg>
197
+ </div>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Banner -->
202
+ <div class="banner">
203
+ <div class="banner-left">
204
+ <div>
205
+ <div class="sub">Expert</div>
206
+ <h1>AGRICULTURAL<br>Garden Solutions</h1>
207
+ <div class="sub">Upto</div>
208
+ <div class="big">70% Off</div>
209
+ </div>
210
+ <div class="cta">ORDER NOW</div>
211
+ </div>
212
+ <div class="banner-right">
213
+ <div class="img-ph">[IMG: Mini Tractor]</div>
214
+ <div class="img-ph">[IMG: Red Hopper]</div>
215
+ <div class="img-ph">[IMG: Sprayer Machine]</div>
216
+ <div class="img-ph">[IMG: Person Using Auger]</div>
217
+ </div>
218
+
219
+ <div class="slider-dots">
220
+ <div class="dot active"></div>
221
+ <div class="dot"></div>
222
+ <div class="dot"></div>
223
+ <div class="dot"></div>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Quick navigation -->
228
+ <div class="quick-nav">
229
+ <div class="q-item">
230
+ <svg class="q-icon" viewBox="0 0 24 24">
231
+ <rect x="3" y="3" width="4" height="12" fill="#9c8c6e"></rect>
232
+ <rect x="8" y="3" width="4" height="12" fill="#7bb174"></rect>
233
+ <rect x="13" y="5" width="8" height="2" fill="#9c8c6e"></rect>
234
+ <rect x="13" y="9" width="8" height="2" fill="#9c8c6e"></rect>
235
+ </svg>
236
+ <div class="q-label">Agriculture…</div>
237
+ </div>
238
+ <div class="q-item">
239
+ <svg class="q-icon" viewBox="0 0 24 24">
240
+ <rect x="3" y="10" width="11" height="5" rx="2" fill="#ff7f3e"></rect>
241
+ <rect x="14" y="9" width="7" height="7" rx="3" fill="#e24e2b"></rect>
242
+ <rect x="7" y="15" width="4" height="2" fill="#333"></rect>
243
+ </svg>
244
+ <div class="q-label">Power Tools</div>
245
+ </div>
246
+ <div class="q-item">
247
+ <svg class="q-icon" viewBox="0 0 24 24">
248
+ <rect x="4" y="4" width="6" height="14" rx="2" fill="#79b6d6"></rect>
249
+ <rect x="11" y="6" width="6" height="12" rx="2" fill="#4aa3c9"></rect>
250
+ <rect x="5" y="10" width="4" height="2" fill="#fff"></rect>
251
+ </svg>
252
+ <div class="q-label">Office Sup…</div>
253
+ </div>
254
+ <div class="q-item">
255
+ <div style="width:70px;height:70px;background:#ffa34c;border-radius:35px;display:flex;align-items:center;justify-content:center;">
256
+ <svg width="38" height="38" viewBox="0 0 24 24">
257
+ <rect x="4" y="5" width="16" height="3" fill="#fff"></rect>
258
+ <rect x="4" y="10" width="16" height="3" fill="#fff"></rect>
259
+ <rect x="4" y="15" width="16" height="3" fill="#fff"></rect>
260
+ </svg>
261
+ </div>
262
+ <div class="q-label">All Categories</div>
263
+ </div>
264
+ </div>
265
+
266
+ <!-- Help card -->
267
+ <div class="help-card">
268
+ <div class="help-text">
269
+ <h3>Need help with your purchase?</h3>
270
+ <p>Speak with our experts & place your order hassle-free.</p>
271
+ </div>
272
+ <div class="call-btn">
273
+ <svg class="call-icon" viewBox="0 0 24 24">
274
+ <path d="M6 3l4 3-2 3c1.5 2.5 3.5 4.5 6 6l3-2 3 4-3 3c-8-.5-14-6.5-15-14z" fill="#fff"></path>
275
+ </svg>
276
+ ORDER ON CALL
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Promo cards -->
281
+ <div class="promo-row">
282
+ <div class="promo-card">
283
+ <div class="img-ph promo-img">[IMG: Agriculture Garden & Landscaping]</div>
284
+ <div class="promo-bar">EXPLORE NOW</div>
285
+ </div>
286
+ <div class="promo-card">
287
+ <div class="img-ph promo-img">[IMG: Automotive High Performance]</div>
288
+ <div class="promo-bar">EXPLORE NOW</div>
289
+ </div>
290
+ </div>
291
+
292
+ <!-- Lower blocks -->
293
+ <div class="lower-row">
294
+ <div class="lower-card">POWER TOOLS</div>
295
+ <div class="lower-card alt">HAND TOOLS</div>
296
+ </div>
297
+
298
+ <!-- WhatsApp Floating -->
299
+ <div class="float-btn">
300
+ <svg width="68" height="68" viewBox="0 0 24 24">
301
+ <path d="M12 2a9 9 0 0 0-7.7 13.6L3 22l6.6-1.3A9 9 0 1 0 12 2zm0 2a7 7 0 0 1 6.3 10.2l-.3.5-.2.3a7 7 0 0 1-9.7 2.3l-.5-.3-.5-.3-3.3.6.6-3.2-.3-.6-.3-.6A7 7 0 0 1 12 4zm-3 3c-.4 0-.8.2-1 .5-.6 1-.8 2.3.1 4 1.2 2.2 3.4 3.8 6.3 4.6.7.2 1.5 0 2-.6l.6-.6c.4-.4.4-1 .1-1.4l-1.2-1.6c-.3-.5-.9-.6-1.4-.3l-1.1.7c-1.2-.4-2.1-1.2-2.7-2.3l.7-1.1c.3-.5.2-1.1-.3-1.4L10 7.4c-.2-.3-.5-.4-.8-.4z" fill="#fff"></path>
302
+ </svg>
303
+ </div>
304
+
305
+ <div class="gesture-bar"></div>
306
+ </div>
307
+ </body>
308
+ </html>
code/3473/3473_2.html ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Search - Top Searches</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #FFFFFF;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 110px;
20
+ background: #000;
21
+ color: #fff;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 36px;
25
+ box-sizing: border-box;
26
+ font-size: 38px;
27
+ letter-spacing: 1px;
28
+ }
29
+ .status-left { flex: 1; opacity: 0.95; }
30
+ .status-right {
31
+ display: flex;
32
+ gap: 22px;
33
+ align-items: center;
34
+ }
35
+ .status-dot {
36
+ width: 12px; height: 12px; background: #fff; border-radius: 50%;
37
+ opacity: 0.9;
38
+ }
39
+ .status-icon {
40
+ width: 34px; height: 24px; border: 3px solid #fff; border-radius: 4px; position: relative;
41
+ }
42
+ .status-icon::after {
43
+ content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 12px; background: #fff; border-radius: 2px;
44
+ }
45
+
46
+ /* Header with search */
47
+ .header {
48
+ padding: 28px 36px 24px 24px;
49
+ box-sizing: border-box;
50
+ display: flex;
51
+ align-items: center;
52
+ gap: 18px;
53
+ }
54
+ .back-btn {
55
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
56
+ }
57
+ .search-wrap {
58
+ flex: 1;
59
+ background: #F0F0F0;
60
+ border: 1px solid #E0E0E0;
61
+ border-radius: 24px;
62
+ height: 96px;
63
+ display: flex;
64
+ align-items: center;
65
+ padding: 0 28px;
66
+ box-sizing: border-box;
67
+ color: #9E9E9E;
68
+ font-size: 40px;
69
+ }
70
+
71
+ .content {
72
+ padding: 12px 40px 220px 40px;
73
+ box-sizing: border-box;
74
+ color: #444;
75
+ }
76
+ .title {
77
+ font-size: 68px;
78
+ font-weight: 700;
79
+ margin: 10px 0 30px 0;
80
+ color: #454545;
81
+ }
82
+ .list {
83
+ list-style: none;
84
+ padding: 0;
85
+ margin: 0;
86
+ }
87
+ .list li {
88
+ font-size: 48px;
89
+ color: #6B6B6B;
90
+ padding: 30px 0;
91
+ border-bottom: 0;
92
+ }
93
+
94
+ /* Keyboard (floating at bottom) */
95
+ .keyboard {
96
+ position: absolute;
97
+ left: 0;
98
+ right: 0;
99
+ bottom: 0;
100
+ height: 760px;
101
+ background: #F2ECF4;
102
+ border-top: 1px solid #E3E0EA;
103
+ box-sizing: border-box;
104
+ padding: 18px 22px 90px;
105
+ }
106
+ .kbd-top {
107
+ height: 96px;
108
+ display: flex;
109
+ align-items: center;
110
+ gap: 26px;
111
+ padding: 0 6px 10px;
112
+ }
113
+ .top-pill {
114
+ width: 86px; height: 86px; background: #E6DAF5; border-radius: 22px; display: flex; align-items: center; justify-content: center; color: #6F5FA6; font-weight: 600;
115
+ }
116
+ .top-square {
117
+ width: 86px; height: 86px; background: #FFFFFF; border: 1px solid #E1E1E6; border-radius: 22px; display: flex; align-items: center; justify-content: center; color: #666;
118
+ }
119
+ .kbd-rows {
120
+ display: grid;
121
+ grid-template-rows: repeat(4, 1fr);
122
+ gap: 16px;
123
+ height: calc(100% - 106px);
124
+ }
125
+ .row {
126
+ display: grid;
127
+ grid-auto-flow: column;
128
+ grid-auto-columns: 1fr;
129
+ gap: 14px;
130
+ align-items: center;
131
+ }
132
+ .key {
133
+ background: #FFFFFF;
134
+ border: 1px solid #E0E0E5;
135
+ border-radius: 22px;
136
+ height: 120px;
137
+ display: flex; align-items: center; justify-content: center;
138
+ font-size: 44px; color: #333;
139
+ }
140
+ .key.small { flex: 0 0 1.2fr; }
141
+ .key.wide { grid-column: span 3; }
142
+ .key.xwide { grid-column: span 6; }
143
+ .key.icon {
144
+ color: #6F5FA6;
145
+ background: #E8E0F8;
146
+ border-color: #DED3F7;
147
+ }
148
+
149
+ /* Bottom gesture bar */
150
+ .gesture {
151
+ position: absolute;
152
+ bottom: 24px;
153
+ left: 50%;
154
+ transform: translateX(-50%);
155
+ width: 240px;
156
+ height: 10px;
157
+ background: #9C9C9C;
158
+ border-radius: 8px;
159
+ opacity: 0.7;
160
+ }
161
+
162
+ /* Utility: simple inline icon containers */
163
+ .icon {
164
+ width: 36px; height: 36px; display: inline-block;
165
+ }
166
+ </style>
167
+ </head>
168
+ <body>
169
+ <div id="render-target">
170
+
171
+ <!-- Status bar -->
172
+ <div class="status-bar">
173
+ <div class="status-left">8:33</div>
174
+ <div class="status-right">
175
+ <div class="status-dot"></div>
176
+ <div class="status-dot" style="width:18px;height:18px;"></div>
177
+ <div class="status-dot"></div>
178
+ <div class="status-icon"></div>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- Header -->
183
+ <div class="header">
184
+ <div class="back-btn" aria-label="Back">
185
+ <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
186
+ <path d="M15 18l-6-6 6-6"/>
187
+ </svg>
188
+ </div>
189
+ <div class="search-wrap">
190
+ Search
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Content -->
195
+ <div class="content">
196
+ <div class="title">Top Searches</div>
197
+ <ul class="list">
198
+ <li>LED Lights</li>
199
+ <li>submersible pump</li>
200
+ <li>Safety</li>
201
+ <li>symphony coolers</li>
202
+ <li>crompton greaves fans</li>
203
+ <li>tp link router</li>
204
+ <li>honda generators</li>
205
+ <li>ceat tyres</li>
206
+ <li>sony car audio</li>
207
+ </ul>
208
+ </div>
209
+
210
+ <!-- Keyboard -->
211
+ <div class="keyboard">
212
+ <div class="kbd-top">
213
+ <div class="top-pill">▤</div>
214
+ <div class="top-square">🙂</div>
215
+ <div class="top-square">GIF</div>
216
+ <div class="top-square">⚙︎</div>
217
+ <div class="top-square">Gx</div>
218
+ <div class="top-square">🎨</div>
219
+ <div class="top-square">🎤</div>
220
+ </div>
221
+
222
+ <div class="kbd-rows">
223
+ <div class="row">
224
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
225
+ </div>
226
+ <div class="row">
227
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
228
+ </div>
229
+ <div class="row">
230
+ <div class="key icon">⇧</div>
231
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
232
+ <div class="key icon">
233
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#6F5FA6" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
234
+ <path d="M6 6h12M6 12h12M6 18h8"/>
235
+ </svg>
236
+ </div>
237
+ </div>
238
+ <div class="row">
239
+ <div class="key small icon">?123</div>
240
+ <div class="key small">,</div>
241
+ <div class="key xwide">🙂</div>
242
+ <div class="key small">.</div>
243
+ <div class="key small icon" aria-label="Search">
244
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#6F5FA6" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
245
+ <circle cx="11" cy="11" r="7"></circle>
246
+ <path d="M20 20l-3.5-3.5"></path>
247
+ </svg>
248
+ </div>
249
+ </div>
250
+ </div>
251
+ </div>
252
+
253
+ <div class="gesture"></div>
254
+ </div>
255
+ </body>
256
+ </html>
code/3473/3473_3.html ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Search Suggestions UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #FFFFFF;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ height: 110px;
22
+ width: 100%;
23
+ background: #000;
24
+ color: #fff;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 36px;
28
+ box-sizing: border-box;
29
+ font-weight: 600;
30
+ }
31
+ .status-left { font-size: 40px; }
32
+ .status-right {
33
+ margin-left: auto;
34
+ display: flex;
35
+ gap: 28px;
36
+ align-items: center;
37
+ }
38
+ .status-dot { width: 12px; height: 12px; background: #fff; border-radius: 50%; opacity: 0.9; }
39
+ .status-icon {
40
+ width: 38px; height: 38px; display: inline-block; opacity: 0.95;
41
+ }
42
+
43
+ /* Search bar row */
44
+ .search-row {
45
+ position: absolute;
46
+ top: 110px;
47
+ left: 0;
48
+ width: 100%;
49
+ padding: 24px 28px 16px 28px;
50
+ box-sizing: border-box;
51
+ display: flex;
52
+ align-items: center;
53
+ gap: 18px;
54
+ }
55
+ .back-btn {
56
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
57
+ }
58
+ .search-input {
59
+ flex: 1;
60
+ background: #EEEEEE;
61
+ border-radius: 14px;
62
+ height: 92px;
63
+ display: flex;
64
+ align-items: center;
65
+ padding: 0 24px;
66
+ box-sizing: border-box;
67
+ position: relative;
68
+ }
69
+ .search-text {
70
+ font-size: 44px;
71
+ color: #333;
72
+ letter-spacing: 0.2px;
73
+ }
74
+ .caret {
75
+ width: 4px;
76
+ height: 54px;
77
+ background: #FF8C2F;
78
+ margin-left: 10px;
79
+ border-radius: 2px;
80
+ }
81
+ .clear-btn {
82
+ position: absolute;
83
+ right: 16px;
84
+ top: 50%;
85
+ transform: translateY(-50%);
86
+ width: 56px; height: 56px;
87
+ border-radius: 50%;
88
+ background: #DADADA;
89
+ display: flex; align-items: center; justify-content: center;
90
+ }
91
+ .clear-btn svg { width: 26px; height: 26px; }
92
+
93
+ /* Content area */
94
+ .content {
95
+ position: absolute;
96
+ top: 230px;
97
+ left: 0;
98
+ width: 100%;
99
+ padding: 12px 36px 0 36px;
100
+ box-sizing: border-box;
101
+ }
102
+ .section-title {
103
+ font-size: 54px;
104
+ font-weight: 700;
105
+ color: #4A4A4A;
106
+ margin: 24px 0 22px;
107
+ }
108
+ .suggestion-list { list-style: none; padding: 0; margin: 0; }
109
+ .suggestion-item {
110
+ font-size: 44px;
111
+ color: #6D6D6D;
112
+ padding: 22px 0;
113
+ border-bottom: 1px solid transparent; /* visual spacing without visible lines */
114
+ }
115
+
116
+ /* Keyboard mock */
117
+ .keyboard {
118
+ position: absolute;
119
+ bottom: 68px;
120
+ left: 0;
121
+ width: 100%;
122
+ height: 700px;
123
+ background: #F1ECF6;
124
+ border-top-left-radius: 18px;
125
+ border-top-right-radius: 18px;
126
+ box-sizing: border-box;
127
+ padding: 26px 22px;
128
+ display: flex;
129
+ flex-direction: column;
130
+ gap: 22px;
131
+ }
132
+ .kb-top-row {
133
+ display: flex;
134
+ align-items: center;
135
+ gap: 24px;
136
+ margin-bottom: 10px;
137
+ }
138
+ .kb-suggestion {
139
+ flex: 1;
140
+ height: 80px;
141
+ background: #FFFFFF;
142
+ border-radius: 24px;
143
+ display: flex;
144
+ align-items: center;
145
+ justify-content: center;
146
+ color: #5F5F5F;
147
+ font-size: 34px;
148
+ box-shadow: 0 1px 0 rgba(0,0,0,0.05);
149
+ }
150
+ .kb-keys { display: grid; grid-template-columns: repeat(10, 1fr); gap: 18px; }
151
+ .kb-keys.small { grid-template-columns: repeat(9, 1fr); }
152
+ .kb-keys.bottom { grid-template-columns: 1.3fr 1fr 1fr 5fr 1fr 1.4fr 1fr; }
153
+ .key {
154
+ height: 110px;
155
+ background: #FFFFFF;
156
+ border-radius: 22px;
157
+ display: flex; align-items: center; justify-content: center;
158
+ color: #333; font-size: 40px; font-weight: 500;
159
+ box-shadow: 0 1px 0 rgba(0,0,0,0.06);
160
+ }
161
+ .key.special { background: #E6E0F4; color: #3A3A3A; }
162
+ .key.icon svg { width: 44px; height: 44px; }
163
+ .gesture-bar {
164
+ position: absolute;
165
+ bottom: 16px;
166
+ left: 50%;
167
+ transform: translateX(-50%);
168
+ width: 300px;
169
+ height: 12px;
170
+ border-radius: 10px;
171
+ background: #BDBDBD;
172
+ opacity: 0.9;
173
+ }
174
+ </style>
175
+ </head>
176
+ <body>
177
+ <div id="render-target">
178
+
179
+ <!-- Status Bar -->
180
+ <div class="status-bar">
181
+ <div class="status-left">8:34</div>
182
+ <div class="status-right">
183
+ <span class="status-dot"></span>
184
+ <span class="status-dot"></span>
185
+ <span class="status-dot"></span>
186
+ <!-- small icons placeholders -->
187
+ <svg class="status-icon" viewBox="0 0 24 24"><rect x="3" y="8" width="18" height="8" fill="#fff" rx="2"/></svg>
188
+ <svg class="status-icon" viewBox="0 0 24 24"><path d="M5 20h14v-2H5v2zm2-17h10l-1 12H8L7 3z" fill="#fff"/></svg>
189
+ </div>
190
+ </div>
191
+
192
+ <!-- Search Row -->
193
+ <div class="search-row">
194
+ <div class="back-btn">
195
+ <svg width="44" height="44" viewBox="0 0 24 24">
196
+ <path d="M14 6L8 12l6 6" stroke="#5B5B5B" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
197
+ </svg>
198
+ </div>
199
+ <div class="search-input">
200
+ <div class="search-text">Glue Gun</div>
201
+ <div class="caret"></div>
202
+ <div class="clear-btn">
203
+ <svg viewBox="0 0 24 24">
204
+ <circle cx="12" cy="12" r="11" fill="#CFCFCF"/>
205
+ <path d="M8 8l8 8M16 8l-8 8" stroke="#6B6B6B" stroke-width="2" stroke-linecap="round"/>
206
+ </svg>
207
+ </div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Content -->
212
+ <div class="content">
213
+ <div class="section-title">Suggestions</div>
214
+ <ul class="suggestion-list">
215
+ <li class="suggestion-item">Glue gun</li>
216
+ <li class="suggestion-item">Glue Gun Kit</li>
217
+ <li class="suggestion-item">Glue Gun</li>
218
+ <li class="suggestion-item">Mini Glue Gun</li>
219
+ <li class="suggestion-item">Hot Melt Glue Gun</li>
220
+ <li class="suggestion-item">Hot Glue Gun</li>
221
+ <li class="suggestion-item">Electric Glue Gun</li>
222
+ </ul>
223
+
224
+ <div class="section-title" style="margin-top: 34px;">Categories</div>
225
+ <div class="suggestion-item" style="padding-top: 8px;">Glue Gun Accessories</div>
226
+ </div>
227
+
228
+ <!-- Keyboard Mock -->
229
+ <div class="keyboard">
230
+ <div class="kb-top-row">
231
+ <div class="key special" style="width: 90px; border-radius: 22px;">
232
+ <svg viewBox="0 0 24 24" width="30" height="30">
233
+ <rect x="3" y="3" width="18" height="18" rx="3" fill="#D3CBEF"/>
234
+ <circle cx="8" cy="12" r="2" fill="#7A6BC7"/>
235
+ <circle cx="16" cy="12" r="2" fill="#7A6BC7"/>
236
+ </svg>
237
+ </div>
238
+ <div class="kb-suggestion">Gun</div>
239
+ <div class="kb-suggestion">Guns</div>
240
+ <div class="kb-suggestion" style="max-width: 140px;">
241
+ <svg viewBox="0 0 24 24" width="34" height="34">
242
+ <path d="M10 20v-6H6l6-10 6 10h-4v6z" fill="#F7A93E"/>
243
+ </svg>
244
+ </div>
245
+ <div class="kb-suggestion" style="max-width: 100px;">
246
+ <svg viewBox="0 0 24 24" width="30" height="30">
247
+ <path d="M12 4a8 8 0 100 16 8 8 0 000-16zm-1 5h2v6h-2zm0 8h2v2h-2z" fill="#6E6E6E"/>
248
+ </svg>
249
+ </div>
250
+ </div>
251
+
252
+ <div class="kb-keys">
253
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
254
+ </div>
255
+ <div class="kb-keys small">
256
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
257
+ </div>
258
+ <div class="kb-keys small">
259
+ <div class="key special">⇧</div><div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
260
+ <div class="key icon">
261
+ <svg viewBox="0 0 24 24">
262
+ <path d="M4 17l6-6 4 4 6-6" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
263
+ </svg>
264
+ </div>
265
+ </div>
266
+ <div class="kb-keys bottom">
267
+ <div class="key special">?123</div>
268
+ <div class="key special">,</div>
269
+ <div class="key special">☺</div>
270
+ <div class="key">space</div>
271
+ <div class="key">.</div>
272
+ <div class="key icon">
273
+ <svg viewBox="0 0 24 24">
274
+ <circle cx="11" cy="11" r="7" stroke="#555" stroke-width="2" fill="none"/>
275
+ <path d="M17 17l4 4" stroke="#555" stroke-width="2" stroke-linecap="round"/>
276
+ </svg>
277
+ </div>
278
+ <div class="key icon">
279
+ <svg viewBox="0 0 24 24">
280
+ <path d="M12 3a4 4 0 014 4v4a4 4 0 01-8 0V7a4 4 0 014-4zm0 13v5" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round"/>
281
+ </svg>
282
+ </div>
283
+ </div>
284
+ </div>
285
+
286
+ <!-- Gesture bar -->
287
+ <div class="gesture-bar"></div>
288
+
289
+ </div>
290
+ </body>
291
+ </html>
code/3473/3473_4.html ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Glue Gun Listing</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff; border-radius: 24px; box-shadow: 0 6px 24px rgba(0,0,0,0.15);
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 120px; background: #000; color: #fff;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ padding: 0 36px; font-weight: 600; font-size: 40px;
20
+ }
21
+ .status-icons { display: flex; align-items: center; gap: 26px; }
22
+ .dot { width: 14px; height: 14px; background: #fff; border-radius: 50%; opacity: 0.9; }
23
+ .pill { width: 60px; height: 36px; border-radius: 18px; border: 2px solid #fff; opacity: 0.9; }
24
+
25
+ /* App bar */
26
+ .app-bar {
27
+ height: 180px;
28
+ background: linear-gradient(90deg,#FFAD54,#FF8C3A);
29
+ display: flex; align-items: center; justify-content: space-between;
30
+ padding: 0 36px; color: #fff;
31
+ }
32
+ .app-left { display: flex; align-items: center; gap: 24px; }
33
+ .title { font-size: 56px; font-weight: 700; }
34
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
35
+ .icon-btn svg { width: 56px; height: 56px; fill: none; stroke: #fff; stroke-width: 6; }
36
+
37
+ /* Filter/Sort row */
38
+ .toolbar {
39
+ height: 120px; background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
40
+ display: flex; align-items: center; justify-content: space-between;
41
+ padding: 0 60px; color: #FF8C3A; font-weight: 700; font-size: 44px;
42
+ }
43
+ .tool-item { display: flex; align-items: center; gap: 22px; }
44
+ .tool-right { color: #FF8C3A; }
45
+ .tool-item svg { width: 48px; height: 48px; stroke: #FF8C3A; stroke-width: 6; fill: none; }
46
+
47
+ /* Help card */
48
+ .help-card {
49
+ margin: 24px 36px;
50
+ padding: 36px;
51
+ background: #FFF3E7;
52
+ border-radius: 24px;
53
+ box-shadow: 0 8px 20px rgba(0,0,0,0.1);
54
+ display: flex; align-items: center; justify-content: space-between;
55
+ }
56
+ .help-text { color: #3d3d3d; }
57
+ .help-title { font-size: 44px; font-weight: 800; margin-bottom: 12px; }
58
+ .help-desc { font-size: 36px; color: #666; }
59
+ .call-btn {
60
+ background: #FF8C3A; color: #fff; font-size: 40px; font-weight: 800;
61
+ padding: 22px 36px; border-radius: 20px; display: flex; align-items: center; gap: 18px;
62
+ box-shadow: 0 6px 12px rgba(255,140,58,0.45);
63
+ }
64
+ .call-btn svg { width: 44px; height: 44px; stroke: #fff; stroke-width: 6; fill: none; }
65
+
66
+ /* Product grid */
67
+ .grid {
68
+ display: grid;
69
+ grid-template-columns: 1fr 1fr;
70
+ border-top: 1px solid #EAEAEA;
71
+ border-bottom: 1px solid #EAEAEA;
72
+ }
73
+ .product {
74
+ border-right: 1px solid #ECECEC;
75
+ border-bottom: 1px solid #ECECEC;
76
+ padding-bottom: 24px;
77
+ }
78
+ .product:nth-child(2n) { border-right: none; }
79
+ .img-wrap {
80
+ position: relative;
81
+ margin: 0; padding: 0;
82
+ height: 420px;
83
+ display: flex; align-items: center; justify-content: center;
84
+ }
85
+ .img-ph {
86
+ width: 480px; height: 380px;
87
+ background: #E0E0E0; border: 1px solid #BDBDBD;
88
+ display: flex; align-items: center; justify-content: center;
89
+ color: #757575; font-size: 36px;
90
+ }
91
+ .ship-badge {
92
+ position: absolute; right: 24px; top: 18px;
93
+ background: #F36E2E; color: #fff; font-weight: 800; font-size: 32px;
94
+ padding: 12px 20px; border-radius: 28px; display: flex; align-items: center; gap: 12px;
95
+ box-shadow: 0 6px 12px rgba(243,110,46,0.4);
96
+ }
97
+ .ship-badge svg { width: 36px; height: 36px; stroke: #fff; stroke-width: 6; fill: none; }
98
+
99
+ .details { padding: 0 24px; }
100
+ .name { font-size: 42px; color: #3A3A3A; font-weight: 700; margin-top: 18px; }
101
+ .brand { margin-top: 6px; font-size: 34px; color: #777; display: flex; align-items: center; gap: 12px; }
102
+ .brand-pill {
103
+ border: 1px solid #CED4DA; color: #333; font-size: 28px; padding: 6px 10px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px;
104
+ }
105
+ .price-row { margin-top: 16px; display: flex; align-items: center; gap: 18px; }
106
+ .price { color: #FF7A1A; font-weight: 800; font-size: 42px; }
107
+ .unit { color: #888; font-size: 36px; }
108
+ .strike { color: #9E9E9E; text-decoration: line-through; font-size: 34px; }
109
+ .discount {
110
+ margin-left: auto; background: #4CAF50; color: #fff; font-size: 32px; font-weight: 800;
111
+ padding: 10px 18px; border-radius: 16px;
112
+ }
113
+
114
+ /* Floating WhatsApp */
115
+ .floating-chat {
116
+ position: absolute; right: 36px; bottom: 160px;
117
+ width: 140px; height: 140px; border-radius: 70px;
118
+ background: #20C65A; display: flex; align-items: center; justify-content: center;
119
+ box-shadow: 0 10px 24px rgba(32,198,90,0.5);
120
+ }
121
+ .floating-chat svg { width: 72px; height: 72px; fill: none; stroke: #fff; stroke-width: 8; }
122
+
123
+ /* Home indicator */
124
+ .home-indicator {
125
+ position: absolute; bottom: 46px; left: 50%; transform: translateX(-50%);
126
+ width: 520px; height: 16px; background: #111; border-radius: 8px; opacity: 0.9;
127
+ }
128
+ </style>
129
+ </head>
130
+ <body>
131
+ <div id="render-target">
132
+
133
+ <!-- Status bar -->
134
+ <div class="status-bar">
135
+ <div>8:36</div>
136
+ <div class="status-icons">
137
+ <div class="dot"></div>
138
+ <div class="dot" style="opacity:0.6"></div>
139
+ <div class="dot" style="opacity:0.6"></div>
140
+ <div class="pill"></div>
141
+ </div>
142
+ </div>
143
+
144
+ <!-- App bar -->
145
+ <div class="app-bar">
146
+ <div class="app-left">
147
+ <div class="icon-btn" aria-label="Back">
148
+ <svg viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7"/></svg>
149
+ </div>
150
+ <div class="title">Glue Gun</div>
151
+ </div>
152
+ <div style="display:flex; align-items:center; gap:22px;">
153
+ <div class="icon-btn" aria-label="Search">
154
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="6"/><path d="M15 15l6 6"/></svg>
155
+ </div>
156
+ <div class="icon-btn" aria-label="List">
157
+ <svg viewBox="0 0 24 24">
158
+ <rect x="4" y="4" width="14" height="16" rx="2"></rect>
159
+ <path d="M8 8h6M8 12h6"/><path d="M18 6l3 0M18 6l0 3"/>
160
+ </svg>
161
+ </div>
162
+ <div class="icon-btn" aria-label="Cart">
163
+ <svg viewBox="0 0 24 24"><path d="M3 6h2l2 12h11l2-9H7"/><circle cx="10" cy="20" r="2"/><circle cx="18" cy="20" r="2"/></svg>
164
+ </div>
165
+ <div class="icon-btn" aria-label="More">
166
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Filter / Sort -->
172
+ <div class="toolbar">
173
+ <div class="tool-item">
174
+ <svg viewBox="0 0 24 24"><path d="M3 5h18M6 10h12M10 15h4M12 20v-5"/></svg>
175
+ <div>Filter</div>
176
+ </div>
177
+ <div class="tool-item tool-right">
178
+ <svg viewBox="0 0 24 24"><path d="M12 5l-5 5h10l-5-5M12 19l5-5H7l5 5"/></svg>
179
+ <div>Sort By</div>
180
+ <svg viewBox="0 0 24 24"><path d="M4 7h16M4 12h16M4 17h16"/></svg>
181
+ </div>
182
+ </div>
183
+
184
+ <!-- Help card -->
185
+ <div class="help-card">
186
+ <div class="help-text">
187
+ <div class="help-title">Need help with your purchase?</div>
188
+ <div class="help-desc">Speak with our experts & place your order hassle-free.</div>
189
+ </div>
190
+ <div class="call-btn">
191
+ <svg viewBox="0 0 24 24"><path d="M6 3h4l2 5-2 2a14 14 0 0 0 6 6l2-2 5 2v4c-8 2-18-8-17-17z"/></svg>
192
+ <span>ORDER ON CALL</span>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Product grid -->
197
+ <div class="grid">
198
+
199
+ <!-- Product 1 -->
200
+ <div class="product">
201
+ <div class="img-wrap">
202
+ <div class="img-ph">[IMG: Yellow Glue Gun]</div>
203
+ </
code/3477/3477_0.html ADDED
@@ -0,0 +1,321 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Mobile UI Render</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ border-radius: 28px;
15
+ box-shadow: 0 20px 60px rgba(0,0,0,0.25);
16
+ }
17
+
18
+ /* Wallpaper placeholder */
19
+ .wallpaper {
20
+ position: absolute;
21
+ left: 0; top: 0; width: 100%; height: 100%;
22
+ background: #E0E0E0;
23
+ border: 1px solid #BDBDBD;
24
+ display: flex; align-items: center; justify-content: center;
25
+ color: #757575; font-size: 32px; letter-spacing: 0.5px;
26
+ }
27
+
28
+ /* Status bar */
29
+ .status-bar {
30
+ position: absolute; top: 22px; left: 24px; right: 24px; height: 64px;
31
+ display: flex; align-items: center; justify-content: space-between;
32
+ color: #ffffff; font-family: system-ui, -apple-system, Arial, sans-serif;
33
+ }
34
+ .status-left { display: flex; align-items: center; gap: 18px; }
35
+ .time { font-size: 40px; font-weight: 600; }
36
+ .status-right { display: flex; align-items: center; gap: 18px; }
37
+ .status-icon svg { width: 36px; height: 36px; }
38
+
39
+ /* Date & weather */
40
+ .date-weather {
41
+ position: absolute; left: 64px; top: 190px;
42
+ color: #ffffff; font-family: system-ui, -apple-system, Arial, sans-serif;
43
+ text-shadow: 0 2px 6px rgba(0,0,0,0.4);
44
+ }
45
+ .dw-date { font-size: 56px; font-weight: 600; margin-bottom: 18px; }
46
+ .dw-row { display: flex; align-items: center; gap: 16px; }
47
+ .sun-dot {
48
+ width: 28px; height: 28px; border-radius: 50%; background: #FFD54F; box-shadow: 0 0 0 2px rgba(255,255,255,0.6) inset;
49
+ }
50
+ .temp { font-size: 36px; }
51
+
52
+ /* App grid */
53
+ .apps-row {
54
+ position: absolute; left: 0; right: 0;
55
+ display: flex; justify-content: center; gap: 86px;
56
+ }
57
+ .apps-row.row1 { top: 1500px; }
58
+ .apps-row.row2 { top: 1770px; }
59
+
60
+ .app {
61
+ width: 170px;
62
+ display: flex; flex-direction: column; align-items: center; gap: 22px;
63
+ color: #ffffff; font-family: system-ui, -apple-system, Arial, sans-serif;
64
+ text-align: center;
65
+ }
66
+ .app-label {
67
+ font-size: 36px; font-weight: 500; letter-spacing: 0.2px;
68
+ text-shadow: 0 2px 6px rgba(0,0,0,0.5);
69
+ }
70
+ .app-icon {
71
+ width: 152px; height: 152px; border-radius: 50%;
72
+ background: #ffffff;
73
+ box-shadow: 0 10px 22px rgba(0,0,0,0.35);
74
+ display: flex; align-items: center; justify-content: center;
75
+ }
76
+ .app-icon svg { width: 104px; height: 104px; display: block; }
77
+
78
+ /* Search bar dock */
79
+ .search-dock {
80
+ position: absolute; left: 60px; right: 60px; bottom: 188px;
81
+ height: 120px; border-radius: 60px;
82
+ background: rgba(30,30,30,0.85);
83
+ box-shadow: 0 10px 28px rgba(0,0,0,0.45);
84
+ display: flex; align-items: center; justify-content: space-between;
85
+ padding: 0 36px;
86
+ color: #ffffff; font-family: system-ui, -apple-system, Arial, sans-serif;
87
+ }
88
+ .dock-left, .dock-right { display: flex; align-items: center; gap: 24px; }
89
+ .g-badge {
90
+ width: 68px; height: 68px; border-radius: 50%; background: #fff;
91
+ display: flex; align-items: center; justify-content: center;
92
+ box-shadow: 0 4px 12px rgba(0,0,0,0.35);
93
+ overflow: hidden;
94
+ }
95
+ .search-placeholder {
96
+ color: rgba(255,255,255,0.85); font-size: 34px;
97
+ }
98
+ .dock-icon { width: 68px; height: 68px; border-radius: 50%; background: #2E2E2E; display: flex; align-items: center; justify-content: center; }
99
+ .dock-icon svg { width: 34px; height: 34px; }
100
+
101
+ /* Navigation pill */
102
+ .nav-pill {
103
+ position: absolute; left: 50%; transform: translateX(-50%);
104
+ bottom: 90px; width: 280px; height: 16px; border-radius: 12px;
105
+ background: rgba(255,255,255,0.85);
106
+ }
107
+ </style>
108
+ </head>
109
+ <body>
110
+ <div id="render-target">
111
+
112
+ <!-- Wallpaper placeholder -->
113
+ <div class="wallpaper">[IMG: Mountain Landscape Wallpaper]</div>
114
+
115
+ <!-- Status bar -->
116
+ <div class="status-bar">
117
+ <div class="status-left">
118
+ <div class="time">1:50</div>
119
+ <div class="status-icon" title="Do Not Disturb">
120
+ <svg viewBox="0 0 24 24">
121
+ <circle cx="12" cy="12" r="10" fill="rgba(255,255,255,0.25)"/>
122
+ <rect x="6" y="11" width="12" height="2" rx="1" fill="#fff"/>
123
+ </svg>
124
+ </div>
125
+ <div class="status-icon" title="Mail">
126
+ <svg viewBox="0 0 24 24">
127
+ <rect x="3" y="5" width="18" height="14" rx="2" fill="rgba(255,255,255,0.25)"/>
128
+ <path d="M3 7l9 6 9-6" stroke="#fff" stroke-width="2" fill="none"/>
129
+ </svg>
130
+ </div>
131
+ <div class="status-icon" title="Weather">
132
+ <svg viewBox="0 0 24 24">
133
+ <circle cx="12" cy="12" r="6" fill="#FFD54F"/>
134
+ </svg>
135
+ </div>
136
+ <div class="status-icon" title="Dot">
137
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="#fff"/></svg>
138
+ </div>
139
+ </div>
140
+ <div class="status-right">
141
+ <div class="status-icon" title="Wi‑Fi">
142
+ <svg viewBox="0 0 24 24">
143
+ <path d="M2 9c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.8"/>
144
+ <path d="M5 12c4-3 10-3 14 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.9"/>
145
+ <path d="M8 15c2-2 6-2 8 0" stroke="#fff" stroke-width="2" fill="none"/>
146
+ <circle cx="12" cy="18" r="1.8" fill="#fff"/>
147
+ </svg>
148
+ </div>
149
+ <div class="status-icon" title="Battery">
150
+ <svg viewBox="0 0 28 24">
151
+ <rect x="2" y="6" width="20" height="12" rx="2" fill="none" stroke="#fff" stroke-width="2"/>
152
+ <rect x="4" y="8" width="14" height="8" rx="1.5" fill="#fff"/>
153
+ <rect x="22" y="9" width="4" height="6" rx="1" fill="#fff"/>
154
+ </svg>
155
+ </div>
156
+ </div>
157
+ </div>
158
+
159
+ <!-- Date & Weather card -->
160
+ <div class="date-weather">
161
+ <div class="dw-date">Fri, Oct 13</div>
162
+ <div class="dw-row">
163
+ <div class="sun-dot"></div>
164
+ <div class="temp">25°C</div>
165
+ </div>
166
+ </div>
167
+
168
+ <!-- First row of apps -->
169
+ <div class="apps-row row1">
170
+ <!-- Play Store -->
171
+ <div class="app">
172
+ <div class="app-icon">
173
+ <svg viewBox="0 0 100 100">
174
+ <defs>
175
+ <clipPath id="playClip"><circle cx="50" cy="50" r="50"/></clipPath>
176
+ </defs>
177
+ <g clip-path="url(#playClip)">
178
+ <polygon points="24,18 78,50 24,82" fill="#36C5F0"/>
179
+ <polygon points="24,18 46,42 24,60" fill="#0F9D58"/>
180
+ <polygon points="24,60 46,42 78,50 60,64" fill="#DB4437" opacity="0.95"/>
181
+ <polygon points="24,82 60,64 46,42 24,60" fill="#F4B400"/>
182
+ </g>
183
+ </svg>
184
+ </div>
185
+ <div class="app-label">Play Store</div>
186
+ </div>
187
+
188
+ <!-- Gmail -->
189
+ <div class="app">
190
+ <div class="app-icon">
191
+ <svg viewBox="0 0 100 100">
192
+ <rect x="18" y="28" width="64" height="44" rx="8" fill="#F5F5F5" stroke="#9E9E9E" stroke-width="2"/>
193
+ <path d="M18 32l32 24 32-24" fill="none" stroke="#DB4437" stroke-width="8"/>
194
+ <path d="M18 32l20 16" stroke="#0F9D58" stroke-width="8"/>
195
+ <path d="M82 32l-20 16" stroke="#4285F4" stroke-width="8"/>
196
+ <path d="M18 72V34" stroke="#F4B400" stroke-width="8"/>
197
+ <path d="M82 72V34" stroke="#F4B400" stroke-width="8"/>
198
+ </svg>
199
+ </div>
200
+ <div class="app-label">Gmail</div>
201
+ </div>
202
+
203
+ <!-- Photos -->
204
+ <div class="app">
205
+ <div class="app-icon">
206
+ <svg viewBox="0 0 100 100">
207
+ <circle cx="50" cy="34" r="18" fill="#4285F4"/>
208
+ <circle cx="34" cy="50" r="18" fill="#0F9D58"/>
209
+ <circle cx="66" cy="50" r="18" fill="#F4B400"/>
210
+ <circle cx="50" cy="66" r="18" fill="#DB4437"/>
211
+ <circle cx="50" cy="50" r="10" fill="#fff"/>
212
+ </svg>
213
+ </div>
214
+ <div class="app-label">Photos</div>
215
+ </div>
216
+
217
+ <!-- YouTube -->
218
+ <div class="app">
219
+ <div class="app-icon">
220
+ <svg viewBox="0 0 100 100">
221
+ <rect x="18" y="30" width="64" height="40" rx="12" fill="#FF0000"/>
222
+ <polygon points="46,38 66,50 46,62" fill="#fff"/>
223
+ </svg>
224
+ </div>
225
+ <div class="app-label">YouTube</div>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Second row of apps (dock icons) -->
230
+ <div class="apps-row row2">
231
+ <!-- Phone -->
232
+ <div class="app">
233
+ <div class="app-icon">
234
+ <svg viewBox="0 0 100 100">
235
+ <circle cx="50" cy="50" r="40" fill="#E3F2FD"/>
236
+ <path d="M36 38c6 12 14 20 26 26l10-10c2-2 1-5-1-6l-12-5c-2-1-4 0-5 2l-3 6c-5-4-9-9-12-14l6-3c2-1 3-3 2-5l-5-12c-1-2-4-3-6-1l-10 10z" fill="#1976D2"/>
237
+ </svg>
238
+ </div>
239
+ <div class="app-label"></div>
240
+ </div>
241
+
242
+ <!-- Messages -->
243
+ <div class="app">
244
+ <div class="app-icon">
245
+ <svg viewBox="0 0 100 100">
246
+ <rect x="20" y="26" width="60" height="40" rx="12" fill="#4285F4"/>
247
+ <rect x="28" y="36" width="44" height="10" rx="5" fill="#fff" opacity="0.9"/>
248
+ <rect x="28" y="50" width="30" height="8" rx="4" fill="#fff" opacity="0.9"/>
249
+ </svg>
250
+ </div>
251
+ <div class="app-label"></div>
252
+ </div>
253
+
254
+ <!-- Chrome -->
255
+ <div class="app">
256
+ <div class="app-icon">
257
+ <svg viewBox="0 0 100 100">
258
+ <circle cx="50" cy="50" r="40" fill="#fff"/>
259
+ <path d="M50 10a40 40 0 0 1 34 20H50z" fill="#DB4437"/>
260
+ <path d="M84 30a40 40 0 0 1-14 50L50 50z" fill="#0F9D58"/>
261
+ <path d="M70 80a40 40 0 0 1-60-30h40z" fill="#F4B400"/>
262
+ <circle cx="50" cy="50" r="18" fill="#4285F4"/>
263
+ <circle cx="50" cy="50" r="10" fill="#fff"/>
264
+ </svg>
265
+ </div>
266
+ <div class="app-label"></div>
267
+ </div>
268
+
269
+ <!-- Camera -->
270
+ <div class="app">
271
+ <div class="app-icon">
272
+ <svg viewBox="0 0 100 100">
273
+ <rect x="22" y="30" width="56" height="40" rx="8" fill="#CFD8DC"/>
274
+ <rect x="30" y="38" width="40" height="24" rx="12" fill="#546E7A"/>
275
+ <circle cx="50" cy="50" r="10" fill="#64B5F6"/>
276
+ <rect x="36" y="24" width="12" height="8" rx="3" fill="#546E7A"/>
277
+ </svg>
278
+ </div>
279
+ <div class="app-label"></div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Search dock -->
284
+ <div class="search-dock">
285
+ <div class="dock-left">
286
+ <div class="g-badge">
287
+ <svg viewBox="0 0 24 24">
288
+ <circle cx="12" cy="12" r="11" fill="#fff"/>
289
+ <path d="M12 5a7 7 0 1 0 5.6 11.5" stroke="#4285F4" stroke-width="3" fill="none"/>
290
+ <path d="M19 19l3 3" stroke="#4285F4" stroke-width="3"/>
291
+ <path d="M12 5a7 7 0 0 1 6 3" stroke="#DB4437" stroke-width="3" fill="none"/>
292
+ <path d="M12 5a7 7 0 0 0-6 3" stroke="#F4B400" stroke-width="3" fill="none"/>
293
+ <path d="M6 8a7 7 0 0 0 0 8" stroke="#0F9D58" stroke-width="3" fill="none"/>
294
+ </svg>
295
+ </div>
296
+ <div class="search-placeholder">Search</div>
297
+ </div>
298
+ <div class="dock-right">
299
+ <div class="dock-icon" title="Voice">
300
+ <svg viewBox="0 0 24 24">
301
+ <rect x="9" y="4" width="6" height="12" rx="3" fill="#4285F4"/>
302
+ <path d="M6 12c0 4 3 6 6 6s6-2 6-6" stroke="#fff" stroke-width="2" fill="none"/>
303
+ <rect x="11" y="19" width="2" height="3" fill="#fff"/>
304
+ </svg>
305
+ </div>
306
+ <div class="dock-icon" title="Lens">
307
+ <svg viewBox="0 0 24 24">
308
+ <rect x="5" y="5" width="14" height="14" rx="3" fill="#F4B400"/>
309
+ <circle cx="12" cy="12" r="4" fill="#4285F4"/>
310
+ <circle cx="12" cy="12" r="2" fill="#fff"/>
311
+ </svg>
312
+ </div>
313
+ </div>
314
+ </div>
315
+
316
+ <!-- Navigation pill -->
317
+ <div class="nav-pill"></div>
318
+
319
+ </div>
320
+ </body>
321
+ </html>
code/3477/3477_1.html ADDED
@@ -0,0 +1,380 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Hotel Detail UI</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #000;
20
+ color: #fff;
21
+ }
22
+
23
+ /* Hero image */
24
+ .hero {
25
+ position: relative;
26
+ width: 100%;
27
+ height: 940px;
28
+ }
29
+ .hero .img {
30
+ position: absolute;
31
+ left: 0;
32
+ top: 0;
33
+ width: 1080px;
34
+ height: 940px;
35
+ background: #E0E0E0;
36
+ border-bottom: 1px solid #BDBDBD;
37
+ display: flex;
38
+ align-items: flex-end;
39
+ justify-content: flex-start;
40
+ box-sizing: border-box;
41
+ }
42
+ .hero .img span {
43
+ color: #757575;
44
+ font-size: 30px;
45
+ padding: 24px;
46
+ }
47
+
48
+ /* Overlay circular buttons */
49
+ .circle-btn {
50
+ position: absolute;
51
+ width: 108px;
52
+ height: 108px;
53
+ border-radius: 54px;
54
+ background: rgba(0,0,0,0.75);
55
+ display: flex;
56
+ align-items: center;
57
+ justify-content: center;
58
+ }
59
+ .circle-btn svg {
60
+ width: 54px;
61
+ height: 54px;
62
+ }
63
+ .btn-back { left: 36px; top: 110px; }
64
+ .btn-share { right: 36px; top: 110px; }
65
+
66
+ /* Carousel dots */
67
+ .dots {
68
+ position: absolute;
69
+ left: 0;
70
+ right: 0;
71
+ bottom: 130px;
72
+ display: flex;
73
+ justify-content: center;
74
+ gap: 18px;
75
+ }
76
+ .dot {
77
+ width: 20px;
78
+ height: 20px;
79
+ border-radius: 10px;
80
+ background: rgba(255,255,255,0.35);
81
+ }
82
+ .dot.active { background: #fff; }
83
+
84
+ /* Photo count badge */
85
+ .photo-count {
86
+ position: absolute;
87
+ right: 36px;
88
+ bottom: 160px;
89
+ background: rgba(0,0,0,0.7);
90
+ border-radius: 14px;
91
+ padding: 18px 26px;
92
+ display: flex;
93
+ align-items: center;
94
+ gap: 16px;
95
+ font-size: 34px;
96
+ }
97
+ .photo-count svg {
98
+ width: 42px; height: 42px;
99
+ }
100
+
101
+ /* Content section */
102
+ .content {
103
+ position: relative;
104
+ padding: 40px 48px 24px 48px;
105
+ }
106
+ h1 {
107
+ font-size: 60px;
108
+ line-height: 72px;
109
+ margin: 18px 0 10px;
110
+ font-weight: 800;
111
+ letter-spacing: 0.2px;
112
+ }
113
+ .subtitle {
114
+ font-size: 34px;
115
+ line-height: 45px;
116
+ color: #cfcfcf;
117
+ margin-bottom: 44px;
118
+ }
119
+ .rating {
120
+ font-size: 42px;
121
+ font-weight: 800;
122
+ margin-bottom: 24px;
123
+ }
124
+ .link {
125
+ color: #00b3a1;
126
+ font-size: 34px;
127
+ display: inline-flex;
128
+ align-items: center;
129
+ gap: 12px;
130
+ margin-bottom: 44px;
131
+ }
132
+ .link svg { width: 34px; height: 34px; }
133
+
134
+ h2.section-title {
135
+ font-size: 44px;
136
+ margin: 16px 0 26px;
137
+ font-weight: 800;
138
+ }
139
+
140
+ /* Amenities grid */
141
+ .amenities {
142
+ display: grid;
143
+ grid-template-columns: 1fr 1fr;
144
+ gap: 34px 36px;
145
+ margin-bottom: 18px;
146
+ }
147
+ .amenity {
148
+ display: flex;
149
+ align-items: center;
150
+ gap: 22px;
151
+ font-size: 34px;
152
+ }
153
+ .amenity .icon {
154
+ width: 60px;
155
+ height: 60px;
156
+ display: inline-flex;
157
+ align-items: center;
158
+ justify-content: center;
159
+ border-radius: 12px;
160
+ background: rgba(255,255,255,0.08);
161
+ }
162
+ .amenity .icon svg {
163
+ width: 42px;
164
+ height: 42px;
165
+ }
166
+
167
+ .see-all {
168
+ color: #00b3a1;
169
+ font-size: 34px;
170
+ display: inline-flex;
171
+ align-items: center;
172
+ gap: 12px;
173
+ margin-top: 18px;
174
+ }
175
+
176
+ /* Map card and CTA button */
177
+ .map-card {
178
+ position: absolute;
179
+ left: 30px;
180
+ top: 1750px;
181
+ width: 1020px;
182
+ height: 260px;
183
+ border-radius: 28px;
184
+ overflow: hidden;
185
+ border: 1px solid #BDBDBD;
186
+ background: #E0E0E0;
187
+ display: flex;
188
+ align-items: center;
189
+ justify-content: center;
190
+ color: #757575;
191
+ font-size: 32px;
192
+ }
193
+
194
+ .cta {
195
+ position: absolute;
196
+ left: 30px;
197
+ top: 1890px;
198
+ width: 1020px;
199
+ height: 120px;
200
+ border-radius: 18px;
201
+ background: #d87488;
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: center;
205
+ font-size: 42px;
206
+ font-weight: 700;
207
+ color: #fff;
208
+ box-shadow: 0 8px 24px rgba(216,116,136,0.45);
209
+ }
210
+
211
+ /* Home indicator */
212
+ .home-indicator {
213
+ position: absolute;
214
+ left: 50%;
215
+ transform: translateX(-50%);
216
+ bottom: 28px;
217
+ width: 300px;
218
+ height: 10px;
219
+ background: rgba(255,255,255,0.8);
220
+ border-radius: 5px;
221
+ }
222
+ </style>
223
+ </head>
224
+ <body>
225
+ <div id="render-target">
226
+
227
+ <!-- Hero section -->
228
+ <div class="hero">
229
+ <div class="img">
230
+ <span>[IMG: Elegant hotel room with classic decor]</span>
231
+ </div>
232
+
233
+ <!-- Back button -->
234
+ <div class="circle-btn btn-back">
235
+ <svg viewBox="0 0 24 24">
236
+ <path d="M15 4 L7 12 L15 20" stroke="#fff" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
237
+ </svg>
238
+ </div>
239
+
240
+ <!-- Share button -->
241
+ <div class="circle-btn btn-share">
242
+ <svg viewBox="0 0 24 24">
243
+ <circle cx="18" cy="6" r="3" fill="none" stroke="#fff" stroke-width="2"/>
244
+ <circle cx="6" cy="12" r="3" fill="none" stroke="#fff" stroke-width="2"/>
245
+ <circle cx="18" cy="18" r="3" fill="none" stroke="#fff" stroke-width="2"/>
246
+ <path d="M9 12 L15 7" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
247
+ <path d="M9 12 L15 17" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
248
+ </svg>
249
+ </div>
250
+
251
+ <!-- Dots -->
252
+ <div class="dots">
253
+ <div class="dot active"></div>
254
+ <div class="dot"></div>
255
+ <div class="dot"></div>
256
+ <div class="dot"></div>
257
+ <div class="dot"></div>
258
+ </div>
259
+
260
+ <!-- Photo count -->
261
+ <div class="photo-count">
262
+ <svg viewBox="0 0 24 24">
263
+ <rect x="3" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"/>
264
+ <circle cx="9" cy="12" r="2.5" fill="#fff"/>
265
+ <path d="M13 12 L16 10 L21 15" stroke="#fff" stroke-width="2" fill="none"/>
266
+ </svg>
267
+ <span>22</span>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Content -->
272
+ <div class="content">
273
+ <h1>Colosseum Palace Star</h1>
274
+ <div class="subtitle">Rome townhouse accommodation in Rome City Centre, walk to Colosseum</div>
275
+
276
+ <div class="rating">9.6/10 Exceptional</div>
277
+ <div class="link">
278
+ See all 12 reviews
279
+ <svg viewBox="0 0 24 24">
280
+ <path d="M9 6 L15 12 L9 18" stroke="#00b3a1" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
281
+ </svg>
282
+ </div>
283
+
284
+ <h2 class="section-title">Popular amenities</h2>
285
+
286
+ <div class="amenities">
287
+ <!-- Breakfast -->
288
+ <div class="amenity">
289
+ <div class="icon">
290
+ <svg viewBox="0 0 24 24">
291
+ <path d="M4 8 H14 V14 H4 Z" fill="none" stroke="#fff" stroke-width="2"/>
292
+ <path d="M14 9 H18 A3 3 0 0 1 18 13 H14" fill="none" stroke="#fff" stroke-width="2"/>
293
+ <path d="M6 16 H12" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
294
+ </svg>
295
+ </div>
296
+ <div>Breakfast included</div>
297
+ </div>
298
+
299
+ <!-- Air conditioning -->
300
+ <div class="amenity">
301
+ <div class="icon">
302
+ <svg viewBox="0 0 24 24">
303
+ <path d="M12 4 V20 M4 12 H20 M6 6 L18 18 M18 6 L6 18" stroke="#fff" stroke-width="1.8" fill="none" stroke-linecap="round"/>
304
+ </svg>
305
+ </div>
306
+ <div>Air conditioning</div>
307
+ </div>
308
+
309
+ <!-- Free WiFi -->
310
+ <div class="amenity">
311
+ <div class="icon">
312
+ <svg viewBox="0 0 24 24">
313
+ <path d="M4 10 C8 6,16 6,20 10" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
314
+ <path d="M7 13 C10 10,14 10,17 13" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
315
+ <circle cx="12" cy="17" r="2" fill="#fff"/>
316
+ </svg>
317
+ </div>
318
+ <div>Free WiFi</div>
319
+ </div>
320
+
321
+ <!-- Pet friendly -->
322
+ <div class="amenity">
323
+ <div class="icon">
324
+ <svg viewBox="0 0 24 24">
325
+ <circle cx="7" cy="9" r="2" fill="#fff"/>
326
+ <circle cx="11" cy="7" r="2" fill="#fff"/>
327
+ <circle cx="15" cy="9" r="2" fill="#fff"/>
328
+ <path d="M7 16 C9 13,15 13,17 16 C16 19,8 19,7 16 Z" fill="none" stroke="#fff" stroke-width="2"/>
329
+ </svg>
330
+ </div>
331
+ <div>Pet friendly</div>
332
+ </div>
333
+
334
+ <!-- Room service -->
335
+ <div class="amenity">
336
+ <div class="icon">
337
+ <svg viewBox="0 0 24 24">
338
+ <path d="M4 14 H20" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
339
+ <path d="M6 14 C6 10,18 10,18 14" stroke="#fff" stroke-width="2" fill="none"/>
340
+ <circle cx="12" cy="8" r="2" fill="#fff"/>
341
+ </svg>
342
+ </div>
343
+ <div>Room service</div>
344
+ </div>
345
+
346
+ <!-- Laundry -->
347
+ <div class="amenity">
348
+ <div class="icon">
349
+ <svg viewBox="0 0 24 24">
350
+ <rect x="4" y="4" width="16" height="16" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"/>
351
+ <circle cx="12" cy="12" r="4.5" fill="none" stroke="#fff" stroke-width="2"/>
352
+ <circle cx="8" cy="7.5" r="1.2" fill="#fff"/>
353
+ <circle cx="12" cy="7.5" r="1.2" fill="#fff"/>
354
+ </svg>
355
+ </div>
356
+ <div>Laundry</div>
357
+ </div>
358
+ </div>
359
+
360
+ <div class="see-all">
361
+ See all
362
+ <svg viewBox="0 0 24 24">
363
+ <path d="M9 6 L15 12 L9 18" stroke="#00b3a1" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
364
+ </svg>
365
+ </div>
366
+ </div>
367
+
368
+ <!-- Map card -->
369
+ <div class="map-card">
370
+ [IMG: Map showing hotel location near Colosseum]
371
+ </div>
372
+
373
+ <!-- CTA button -->
374
+ <div class="cta">Select a room</div>
375
+
376
+ <!-- Home indicator -->
377
+ <div class="home-indicator"></div>
378
+ </div>
379
+ </body>
380
+ </html>
code/3477/3477_2.html ADDED
@@ -0,0 +1,381 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Colosseum Palace Star - UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #000000;
14
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
15
+ color: #FFFFFF;
16
+ }
17
+ .status-bar {
18
+ height: 96px;
19
+ background: #202124;
20
+ color: #EDEDED;
21
+ padding: 0 36px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ font-size: 36px;
26
+ letter-spacing: 0.5px;
27
+ }
28
+ .status-right {
29
+ display: flex;
30
+ align-items: center;
31
+ gap: 26px;
32
+ }
33
+ .appbar {
34
+ height: 132px;
35
+ background: #202124;
36
+ display: flex;
37
+ align-items: center;
38
+ padding: 0 36px;
39
+ justify-content: space-between;
40
+ border-bottom: 1px solid #2A2B2E;
41
+ }
42
+ .title-area {
43
+ display: flex;
44
+ align-items: center;
45
+ gap: 24px;
46
+ }
47
+ .app-title {
48
+ font-size: 48px;
49
+ font-weight: 600;
50
+ }
51
+ .content {
52
+ position: relative;
53
+ padding: 36px;
54
+ }
55
+ .rating {
56
+ font-size: 54px;
57
+ font-weight: 700;
58
+ margin-top: 8px;
59
+ margin-bottom: 18px;
60
+ }
61
+ .link {
62
+ color: #46D1C6;
63
+ font-size: 34px;
64
+ font-weight: 600;
65
+ text-decoration: none;
66
+ display: inline-flex;
67
+ align-items: center;
68
+ gap: 10px;
69
+ margin-bottom: 28px;
70
+ }
71
+ .section-title {
72
+ font-size: 46px;
73
+ font-weight: 800;
74
+ margin: 32px 0 22px 0;
75
+ }
76
+ .amenities {
77
+ display: grid;
78
+ grid-template-columns: 1fr 1fr;
79
+ gap: 26px 40px;
80
+ margin-bottom: 16px;
81
+ }
82
+ .amenity {
83
+ display: flex;
84
+ align-items: center;
85
+ gap: 22px;
86
+ font-size: 36px;
87
+ }
88
+ .amenity svg { width: 54px; height: 54px; fill: none; stroke: #FFFFFF; stroke-width: 3; }
89
+ .thumbnail {
90
+ width: 100%;
91
+ height: 260px;
92
+ background: #E0E0E0;
93
+ border: 1px solid #BDBDBD;
94
+ border-radius: 26px;
95
+ display: flex;
96
+ justify-content: center;
97
+ align-items: center;
98
+ color: #757575;
99
+ font-size: 38px;
100
+ font-weight: 600;
101
+ margin: 26px 0 22px 0;
102
+ }
103
+ .address {
104
+ font-size: 36px;
105
+ margin-bottom: 16px;
106
+ }
107
+ .explore-list {
108
+ margin-top: 10px;
109
+ }
110
+ .list-item {
111
+ display: flex;
112
+ align-items: center;
113
+ justify-content: space-between;
114
+ padding: 22px 0;
115
+ border-bottom: 1px solid #1F1F1F;
116
+ font-size: 38px;
117
+ }
118
+ .list-left {
119
+ display: flex;
120
+ align-items: center;
121
+ gap: 24px;
122
+ }
123
+ .list-left svg { width: 50px; height: 50px; stroke: #FFFFFF; stroke-width: 3; fill: none; }
124
+ .list-right {
125
+ color: #D0D0D0;
126
+ font-size: 32px;
127
+ }
128
+ .card {
129
+ border: 2px solid #5E5E5E;
130
+ border-radius: 18px;
131
+ padding: 28px;
132
+ margin-top: 16px;
133
+ display: flex;
134
+ align-items: center;
135
+ gap: 22px;
136
+ }
137
+ .card svg { width: 54px; height: 54px; stroke: #FFFFFF; stroke-width: 3; fill: none; }
138
+ .card-text {
139
+ display: flex;
140
+ flex-direction: column;
141
+ gap: 6px;
142
+ }
143
+ .card-label { color: #BFBFBF; font-size: 30px; }
144
+ .card-value { font-size: 40px; font-weight: 700; }
145
+ .cta {
146
+ position: absolute;
147
+ left: 24px;
148
+ right: 24px;
149
+ bottom: 120px;
150
+ height: 140px;
151
+ background: #D8738F;
152
+ color: #111111;
153
+ border-radius: 18px;
154
+ display: flex;
155
+ align-items: center;
156
+ justify-content: center;
157
+ font-size: 44px;
158
+ font-weight: 800;
159
+ box-shadow: 0 6px 16px rgba(0,0,0,0.35);
160
+ }
161
+ .home-indicator {
162
+ position: absolute;
163
+ bottom: 36px;
164
+ left: 50%;
165
+ transform: translateX(-50%);
166
+ width: 180px;
167
+ height: 12px;
168
+ background: #EDEDED;
169
+ border-radius: 6px;
170
+ opacity: 0.85;
171
+ }
172
+ .chevron {
173
+ width: 22px; height: 22px; border-right: 4px solid #46D1C6; border-top: 4px solid #46D1C6; transform: rotate(-45deg);
174
+ display: inline-block;
175
+ margin-left: 4px;
176
+ }
177
+ </style>
178
+ </head>
179
+ <body>
180
+ <div id="render-target">
181
+
182
+ <!-- Status bar -->
183
+ <div class="status-bar">
184
+ <div>1:50</div>
185
+ <div class="status-right">
186
+ <!-- Simple camera dot -->
187
+ <svg width="32" height="32"><circle cx="16" cy="16" r="8" fill="#EDEDED"/></svg>
188
+ <!-- Mail icon -->
189
+ <svg width="38" height="32" viewBox="0 0 38 32">
190
+ <rect x="3" y="6" width="32" height="20" rx="4" ry="4" fill="none" stroke="#EDEDED" stroke-width="3"/>
191
+ <path d="M5 8 L19 18 L33 8" stroke="#EDEDED" stroke-width="3" fill="none"/>
192
+ </svg>
193
+ <!-- Temperature -->
194
+ <div>83°</div>
195
+ <!-- Timer icon -->
196
+ <svg width="38" height="32" viewBox="0 0 38 32">
197
+ <circle cx="19" cy="16" r="10" stroke="#EDEDED" stroke-width="3" fill="none"/>
198
+ <path d="M19 6 V16 L26 16" stroke="#EDEDED" stroke-width="3" fill="none"/>
199
+ </svg>
200
+ <!-- Wifi -->
201
+ <svg width="42" height="32" viewBox="0 0 42 32">
202
+ <path d="M4 12 Q21 0 38 12" stroke="#EDEDED" stroke-width="3" fill="none"/>
203
+ <path d="M10 18 Q21 10 32 18" stroke="#EDEDED" stroke-width="3" fill="none"/>
204
+ <circle cx="21" cy="24" r="3" fill="#EDEDED"/>
205
+ </svg>
206
+ <!-- Battery -->
207
+ <svg width="54" height="28" viewBox="0 0 54 28">
208
+ <rect x="2" y="5" width="44" height="18" rx="4" stroke="#EDEDED" stroke-width="3" fill="none"/>
209
+ <rect x="6" y="8" width="34" height="12" fill="#EDEDED"/>
210
+ <rect x="48" y="9" width="6" height="10" fill="#EDEDED"/>
211
+ </svg>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- App bar -->
216
+ <div class="appbar">
217
+ <div class="title-area">
218
+ <!-- Back arrow -->
219
+ <svg width="52" height="52" viewBox="0 0 52 52">
220
+ <path d="M32 10 L18 26 L32 42" stroke="#FFFFFF" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
221
+ </svg>
222
+ <div class="app-title">Colosseum Palace Star</div>
223
+ </div>
224
+ <!-- Share icon -->
225
+ <svg width="52" height="52" viewBox="0 0 52 52">
226
+ <circle cx="38" cy="12" r="6" stroke="#FFFFFF" stroke-width="4" fill="none"/>
227
+ <circle cx="14" cy="26" r="6" stroke="#FFFFFF" stroke-width="4" fill="none"/>
228
+ <circle cx="38" cy="40" r="6" stroke="#FFFFFF" stroke-width="4" fill="none"/>
229
+ <path d="M34 14 L18 24 M34 38 L18 28" stroke="#FFFFFF" stroke-width="4" fill="none" stroke-linecap="round"/>
230
+ </svg>
231
+ </div>
232
+
233
+ <!-- Content -->
234
+ <div class="content">
235
+ <div class="rating">9.6/10 Exceptional</div>
236
+
237
+ <a class="link" href="#">See all 12 reviews <span class="chevron"></span></a>
238
+
239
+ <div class="section-title">Popular amenities</div>
240
+
241
+ <div class="amenities">
242
+ <div class="amenity">
243
+ <!-- Cup -->
244
+ <svg viewBox="0 0 64 64">
245
+ <rect x="14" y="18" width="24" height="22" rx="3"></rect>
246
+ <path d="M38 22 H48 C52 22 52 30 48 30 H38" ></path>
247
+ <path d="M16 40 H36" ></path>
248
+ </svg>
249
+ <div>Breakfast included</div>
250
+ </div>
251
+ <div class="amenity">
252
+ <!-- Snowflake -->
253
+ <svg viewBox="0 0 64 64">
254
+ <path d="M32 10 V54 M18 18 L46 46 M46 18 L18 46" ></path>
255
+ <path d="M32 10 L28 16 M32 10 L36 16 M32 54 L28 48 M32 54 L36 48" ></path>
256
+ </svg>
257
+ <div>Air conditioning</div>
258
+ </div>
259
+ <div class="amenity">
260
+ <!-- Wifi -->
261
+ <svg viewBox="0 0 64 64">
262
+ <path d="M10 24 Q32 8 54 24" ></path>
263
+ <path d="M16 32 Q32 20 48 32" ></path>
264
+ <path d="M22 40 Q32 32 42 40" ></path>
265
+ <circle cx="32" cy="48" r="4" fill="#FFFFFF"></circle>
266
+ </svg>
267
+ <div>Free WiFi</div>
268
+ </div>
269
+ <div class="amenity">
270
+ <!-- Paw -->
271
+ <svg viewBox="0 0 64 64">
272
+ <circle cx="20" cy="26" r="5"></circle>
273
+ <circle cx="44" cy="26" r="5"></circle>
274
+ <circle cx="28" cy="18" r="4"></circle>
275
+ <circle cx="36" cy="18" r="4"></circle>
276
+ <circle cx="32" cy="40" r="10"></circle>
277
+ </svg>
278
+ <div>Pet friendly</div>
279
+ </div>
280
+ <div class="amenity">
281
+ <!-- Room service cloche -->
282
+ <svg viewBox="0 0 64 64">
283
+ <path d="M16 38 H48" ></path>
284
+ <path d="M20 38 Q32 22 44 38" ></path>
285
+ <circle cx="32" cy="20" r="3"></circle>
286
+ </svg>
287
+ <div>Room service</div>
288
+ </div>
289
+ <div class="amenity">
290
+ <!-- Laundry -->
291
+ <svg viewBox="0 0 64 64">
292
+ <rect x="14" y="14" width="36" height="36" rx="4"></rect>
293
+ <circle cx="32" cy="32" r="10"></circle>
294
+ <circle cx="40" cy="20" r="3"></circle>
295
+ </svg>
296
+ <div>Laundry</div>
297
+ </div>
298
+ </div>
299
+
300
+ <a class="link" href="#">See all <span class="chevron"></span></a>
301
+
302
+ <div class="thumbnail">[IMG: Google Map]</div>
303
+
304
+ <div class="address">Via del Monte Oppio 5, Rome, 00184</div>
305
+ <a class="link" href="#">View in a map <span class="chevron"></span></a>
306
+
307
+ <div class="section-title">Explore the area</div>
308
+
309
+ <div class="explore-list">
310
+ <div class="list-item">
311
+ <div class="list-left">
312
+ <!-- Pin -->
313
+ <svg viewBox="0 0 64 64">
314
+ <path d="M32 10 C22 10 16 18 16 26 C16 38 32 54 32 54 C32 54 48 38 48 26 C48 18 42 10 32 10 Z"></path>
315
+ <circle cx="32" cy="26" r="6"></circle>
316
+ </svg>
317
+ <div>Colosseum</div>
318
+ </div>
319
+ <div class="list-right">4 min walk</div>
320
+ </div>
321
+
322
+ <div class="list-item">
323
+ <div class="list-left">
324
+ <svg viewBox="0 0 64 64">
325
+ <path d="M32 10 C22 10 16 18 16 26 C16 38 32 54 32 54 C32 54 48 38 48 26 C48 18 42 10 32 10 Z"></path>
326
+ <circle cx="32" cy="26" r="6"></circle>
327
+ </svg>
328
+ <div>Trevi Fountain</div>
329
+ </div>
330
+ <div class="list-right">6 min drive</div>
331
+ </div>
332
+
333
+ <div class="list-item">
334
+ <div class="list-left">
335
+ <svg viewBox="0 0 64 64">
336
+ <path d="M32 10 C22 10 16 18 16 26 C16 38 32 54 32 54 C32 54 48 38 48 26 C48 18 42 10 32 10 Z"></path>
337
+ <circle cx="32" cy="26" r="6"></circle>
338
+ </svg>
339
+ <div>Pantheon</div>
340
+ </div>
341
+ <div class="list-right">6 min drive</div>
342
+ </div>
343
+
344
+ <div class="list-item">
345
+ <div class="list-left">
346
+ <!-- Airplane -->
347
+ <svg viewBox="0 0 64 64">
348
+ <path d="M10 38 L26 32 L54 26 L30 34 L30 46 L24 40 L14 40 Z"></path>
349
+ </svg>
350
+ <div>Rome (FCO-Fiumicino - Leonardo da Vinci Intl.)</div>
351
+ </div>
352
+ <div class="list-right">36 min drive</div>
353
+ </div>
354
+ </div>
355
+
356
+ <div class="section-title">Select a room</div>
357
+
358
+ <div class="card">
359
+ <!-- Calendar icon -->
360
+ <svg viewBox="0 0 64 64">
361
+ <rect x="12" y="18" width="40" height="32" rx="4"></rect>
362
+ <path d="M12 26 H52" ></path>
363
+ <path d="M22 12 V22 M42 12 V22" ></path>
364
+ </svg>
365
+ <div class="card-text">
366
+ <div class="card-label">Dates</div>
367
+ <div class="card-value">Oct 21 - Oct 22</div>
368
+ </div>
369
+ </div>
370
+
371
+ </div>
372
+
373
+ <!-- Bottom CTA -->
374
+ <div class="cta">Select a room</div>
375
+
376
+ <!-- Home indicator -->
377
+ <div class="home-indicator"></div>
378
+
379
+ </div>
380
+ </body>
381
+ </html>
code/3479/3479_0.html ADDED
@@ -0,0 +1,412 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Men's Running Shoes - Mock UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; }
7
+ #render-target {
8
+ position: relative;
9
+ width: 1080px;
10
+ height: 2400px;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ font-family: Arial, Helvetica, sans-serif;
14
+ color: #1a1a1a;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 96px;
24
+ background: #2f2f2f;
25
+ color: #fff;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 32px;
29
+ box-sizing: border-box;
30
+ font-size: 36px;
31
+ }
32
+ .status-bar .right {
33
+ margin-left: auto;
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 28px;
37
+ }
38
+ .icon-white svg { fill: #ffffff; }
39
+
40
+ /* App header */
41
+ .app-header {
42
+ position: absolute;
43
+ top: 96px;
44
+ left: 0;
45
+ width: 1080px;
46
+ height: 150px;
47
+ background: #ffffff;
48
+ display: flex;
49
+ align-items: center;
50
+ padding: 0 32px;
51
+ box-sizing: border-box;
52
+ border-bottom: 1px solid #e8e8e8;
53
+ }
54
+ .app-header .title {
55
+ font-weight: 700;
56
+ font-size: 52px;
57
+ margin-left: 18px;
58
+ }
59
+ .app-header .actions {
60
+ margin-left: auto;
61
+ display: flex;
62
+ align-items: center;
63
+ gap: 38px;
64
+ }
65
+ .icon-btn { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; }
66
+ .icon-btn svg { width: 56px; height: 56px; }
67
+
68
+ /* Filter / Sort bar */
69
+ .filter-sort {
70
+ position: absolute;
71
+ top: 246px;
72
+ left: 0;
73
+ width: 1080px;
74
+ height: 120px;
75
+ display: flex;
76
+ align-items: center;
77
+ padding: 0 40px;
78
+ box-sizing: border-box;
79
+ border-bottom: 1px solid #efefef;
80
+ background: #ffffff;
81
+ gap: 40px;
82
+ }
83
+ .fs-item {
84
+ display: flex;
85
+ align-items: center;
86
+ gap: 16px;
87
+ font-size: 40px;
88
+ color: #333;
89
+ font-weight: 700;
90
+ }
91
+ .view-toggles {
92
+ margin-left: auto;
93
+ display: flex;
94
+ align-items: center;
95
+ gap: 36px;
96
+ }
97
+ .view-toggles .toggle { width: 72px; height: 72px; border-radius: 12px; border: 1px solid #dcdcdc; display: flex; align-items: center; justify-content: center; }
98
+
99
+ /* Content area */
100
+ .content {
101
+ position: absolute;
102
+ top: 366px;
103
+ left: 0;
104
+ width: 1080px;
105
+ height: calc(2400px - 366px);
106
+ overflow: hidden;
107
+ padding-bottom: 20px;
108
+ }
109
+
110
+ .product-card {
111
+ padding: 32px 40px;
112
+ box-sizing: border-box;
113
+ }
114
+
115
+ /* Image placeholders */
116
+ .image-collage {
117
+ display: grid;
118
+ grid-template-columns: 1.3fr 1fr 1fr;
119
+ grid-template-rows: 1fr;
120
+ gap: 24px;
121
+ height: 560px;
122
+ }
123
+ .img {
124
+ background: #E0E0E0;
125
+ border: 1px solid #BDBDBD;
126
+ display: flex;
127
+ align-items: center;
128
+ justify-content: center;
129
+ color: #757575;
130
+ font-size: 28px;
131
+ text-align: center;
132
+ border-radius: 12px;
133
+ }
134
+
135
+ .details {
136
+ margin-top: 28px;
137
+ position: relative;
138
+ }
139
+ .offer-row {
140
+ display: flex;
141
+ align-items: center;
142
+ gap: 14px;
143
+ color: #d83535;
144
+ font-weight: 800;
145
+ font-size: 36px;
146
+ margin-bottom: 6px;
147
+ }
148
+ .brand {
149
+ font-weight: 700;
150
+ font-size: 34px;
151
+ color: #222;
152
+ letter-spacing: 0.5px;
153
+ }
154
+ .title-line {
155
+ font-size: 44px;
156
+ font-weight: 800;
157
+ margin-top: 10px;
158
+ }
159
+ .price-row {
160
+ margin-top: 10px;
161
+ font-size: 36px;
162
+ color: #222;
163
+ }
164
+ .strike {
165
+ text-decoration: line-through;
166
+ color: #777;
167
+ margin-right: 10px;
168
+ }
169
+ .discount {
170
+ color: #e02b2b;
171
+ margin-left: 12px;
172
+ font-weight: 700;
173
+ }
174
+ .subtext {
175
+ margin-top: 10px;
176
+ font-size: 34px;
177
+ color: #444;
178
+ }
179
+ .wish {
180
+ position: absolute;
181
+ right: 0;
182
+ top: 0;
183
+ width: 72px;
184
+ height: 72px;
185
+ }
186
+ .wish svg { width: 72px; height: 72px; }
187
+
188
+ /* Green launch tag */
189
+ .green-tag {
190
+ display: inline-flex;
191
+ align-items: center;
192
+ gap: 12px;
193
+ color: #208f35;
194
+ font-weight: 800;
195
+ font-size: 34px;
196
+ margin-top: 8px;
197
+ margin-bottom: 6px;
198
+ }
199
+
200
+ /* Floating widget */
201
+ .floating {
202
+ position: absolute;
203
+ right: 40px;
204
+ bottom: 160px;
205
+ width: 150px;
206
+ height: 150px;
207
+ border-radius: 75px;
208
+ background: #0ab1ff;
209
+ box-shadow: 0 6px 12px rgba(0,0,0,0.2);
210
+ display: flex;
211
+ align-items: center;
212
+ justify-content: center;
213
+ }
214
+ .floating .grid {
215
+ width: 90px;
216
+ height: 90px;
217
+ background: #ffffff;
218
+ border-radius: 18px;
219
+ display: grid;
220
+ grid-template-columns: repeat(3, 1fr);
221
+ grid-gap: 6px;
222
+ padding: 8px;
223
+ box-sizing: border-box;
224
+ }
225
+ .floating .grid div:nth-child(1) { background: #ff4c72; }
226
+ .floating .grid div:nth-child(2) { background: #ff9e2c; }
227
+ .floating .grid div:nth-child(3) { background: #9c27b0; }
228
+ .floating .grid div:nth-child(4) { background: #00bcd4; }
229
+ .floating .grid div:nth-child(5) { background: #4caf50; }
230
+ .floating .grid div:nth-child(6) { background: #ffc107; }
231
+ .floating .grid div:nth-child(7) { background: #2196f3; }
232
+ .floating .grid div:nth-child(8) { background: #8bc34a; }
233
+ .floating .grid div:nth-child(9) { background: #ef5350; }
234
+
235
+ </style>
236
+ </head>
237
+ <body>
238
+ <div id="render-target">
239
+
240
+ <!-- Status Bar -->
241
+ <div class="status-bar">
242
+ <div>11:39</div>
243
+ <div class="right icon-white">
244
+ <!-- Signal -->
245
+ <div class="icon-btn">
246
+ <svg viewBox="0 0 24 24">
247
+ <rect x="1" y="16" width="4" height="7"></rect>
248
+ <rect x="7" y="12" width="4" height="11"></rect>
249
+ <rect x="13" y="8" width="4" height="15"></rect>
250
+ <rect x="19" y="4" width="4" height="19"></rect>
251
+ </svg>
252
+ </div>
253
+ <!-- WiFi -->
254
+ <div class="icon-btn">
255
+ <svg viewBox="0 0 24 24">
256
+ <path d="M12 18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z"></path>
257
+ <path d="M2 10c5.3-5 14.7-5 20 0l-2 2c-4.5-4-11.5-4-16 0L2 10z"></path>
258
+ <path d="M6 14c3.2-3 8.8-3 12 0l-2 2c-2.6-2.4-5.4-2.4-8 0l-2-2z"></path>
259
+ </svg>
260
+ </div>
261
+ <!-- Battery -->
262
+ <div class="icon-btn">
263
+ <svg viewBox="0 0 28 24">
264
+ <rect x="2" y="4" width="20" height="16" rx="3"></rect>
265
+ <rect x="23" y="8" width="3" height="8" rx="1"></rect>
266
+ <rect x="4" y="6" width="14" height="12" fill="#ffffff"></rect>
267
+ </svg>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ <!-- App Header -->
273
+ <div class="app-header">
274
+ <!-- Back chevron -->
275
+ <div class="icon-btn">
276
+ <svg viewBox="0 0 24 24">
277
+ <path d="M15 3 L6 12 L15 21" stroke="#111" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
278
+ </svg>
279
+ </div>
280
+ <div class="title">Men's Running Shoes</div>
281
+ <div class="actions">
282
+ <!-- Search -->
283
+ <div class="icon-btn">
284
+ <svg viewBox="0 0 24 24">
285
+ <circle cx="10" cy="10" r="7" stroke="#111" stroke-width="2" fill="none"></circle>
286
+ <line x1="15.5" y1="15.5" x2="22" y2="22" stroke="#111" stroke-width="2"></line>
287
+ </svg>
288
+ </div>
289
+ <!-- Bag -->
290
+ <div class="icon-btn">
291
+ <svg viewBox="0 0 24 24">
292
+ <path d="M6 8h12l-1 13H7L6 8z" stroke="#111" stroke-width="2" fill="none"></path>
293
+ <path d="M9 8V6a3 3 0 0 1 6 0v2" stroke="#111" stroke-width="2" fill="none"></path>
294
+ </svg>
295
+ </div>
296
+ <!-- More dots -->
297
+ <div class="icon-btn">
298
+ <svg viewBox="0 0 24 24">
299
+ <circle cx="12" cy="5" r="2" fill="#111"></circle>
300
+ <circle cx="12" cy="12" r="2" fill="#111"></circle>
301
+ <circle cx="12" cy="19" r="2" fill="#111"></circle>
302
+ </svg>
303
+ </div>
304
+ </div>
305
+ </div>
306
+
307
+ <!-- Filter / Sort -->
308
+ <div class="filter-sort">
309
+ <div class="fs-item">
310
+ <svg viewBox="0 0 24 24" width="44" height="44">
311
+ <path d="M3 5h18l-7 8v6l-4-2v-4L3 5z" fill="#111"></path>
312
+ </svg>
313
+ <div>FILTER</div>
314
+ </div>
315
+ <div class="fs-item">
316
+ <svg viewBox="0 0 24 24" width="44" height="44">
317
+ <path d="M8 5l4-4 4 4H8zM16 19l-4 4-4-4h8z" fill="#111"></path>
318
+ </svg>
319
+ <div>SORT</div>
320
+ </div>
321
+ <div class="view-toggles">
322
+ <!-- List icon -->
323
+ <div class="toggle">
324
+ <svg viewBox="0 0 24 24" width="40" height="40">
325
+ <rect x="4" y="5" width="16" height="2" fill="#111"></rect>
326
+ <rect x="4" y="11" width="16" height="2" fill="#111"></rect>
327
+ <rect x="4" y="17" width="16" height="2" fill="#111"></rect>
328
+ </svg>
329
+ </div>
330
+ <!-- Grid icon -->
331
+ <div class="toggle">
332
+ <svg viewBox="0 0 24 24" width="40" height="40">
333
+ <rect x="3" y="3" width="6" height="6" fill="#111"></rect>
334
+ <rect x="11" y="3" width="6" height="6" fill="#111"></rect>
335
+ <rect x="3" y="11" width="6" height="6" fill="#111"></rect>
336
+ <rect x="11" y="11" width="6" height="6" fill="#111"></rect>
337
+ </svg>
338
+ </div>
339
+ </div>
340
+ </div>
341
+
342
+ <!-- Main Content -->
343
+ <div class="content">
344
+
345
+ <!-- Product Card 1 -->
346
+ <div class="product-card">
347
+ <div class="image-collage">
348
+ <div class="img">[IMG: Black Slip-on Shoe - Left]</div>
349
+ <div class="img">[IMG: Black Slip-on Shoe - Front]</div>
350
+ <div class="img">[IMG: Black Slip-on Shoe - Side]</div>
351
+ </div>
352
+
353
+ <div class="details">
354
+ <div class="offer-row">
355
+ <svg viewBox="0 0 24 24" width="40" height="40">
356
+ <circle cx="12" cy="12" r="10" fill="#d83535"></circle>
357
+ <text x="12" y="16" font-size="12" text-anchor="middle" fill="#fff" font-family="Arial" font-weight="700">OFF</text>
358
+ </svg>
359
+ <div>OFFER</div>
360
+ </div>
361
+ <div class="brand">ARROW</div>
362
+ <div class="title-line">MEN SOLID DIVINE SLIP ON SHOES</div>
363
+ <div class="price-row">
364
+ <span class="strike">Rs. 4499</span>
365
+ <span>2789</span>
366
+ <span class="discount">(Flat 38% off)</span>
367
+ </div>
368
+ <div class="subtext">2 More Offers</div>
369
+
370
+ <!-- Wishlist heart -->
371
+ <div class="wish">
372
+ <svg viewBox="0 0 24 24">
373
+ <path d="M12 21s-6-4.35-9-7.35C-1 7 3 3 6.5 5.5 8 6.6 9 8 12 10.5 15 8 16 6.6 17.5 5.5 21 3 25 7 21 13.65 18 16.65 12 21 12 21z" stroke="#e63946" stroke-width="2" fill="none"></path>
374
+ </svg>
375
+ </div>
376
+ </div>
377
+ </div>
378
+
379
+ <!-- Product Card 2 -->
380
+ <div class="product-card">
381
+ <div class="image-collage">
382
+ <div class="img">[IMG: Navy Espadrille - Left]</div>
383
+ <div class="img">[IMG: Navy Espadrille - Top]</div>
384
+ <div class="img">[IMG: Navy Espadrille - Perspective]</div>
385
+ </div>
386
+
387
+ <div class="details">
388
+ <div class="green-tag">
389
+ <svg viewBox="0 0 24 24" width="36" height="36">
390
+ <path d="M3 5h12l6 7-6 7H3V5z" fill="#208f35"></path>
391
+ </svg>
392
+ <div>NEW SEASON LAUNCH</div>
393
+ </div>
394
+ <div class="brand">TOMMY HILFIGER</div>
395
+ <div class="title-line">MEN SUSTAINABLE ESPADRILLE SLIP ON ...</div>
396
+ </div>
397
+ </div>
398
+
399
+ <!-- Floating multi-color grid widget -->
400
+ <div class="floating">
401
+ <div class="grid">
402
+ <div></div><div></div><div></div>
403
+ <div></div><div></div><div></div>
404
+ <div></div><div></div><div></div>
405
+ </div>
406
+ </div>
407
+
408
+ </div>
409
+
410
+ </div>
411
+ </body>
412
+ </html>
code/3479/3479_1.html ADDED
@@ -0,0 +1,285 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Product Detail - Slip On Shoes</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ color: #222;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 140px;
20
+ background: #2f2f2f;
21
+ color: #fff;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ padding: 0 36px;
26
+ box-sizing: border-box;
27
+ font-size: 40px;
28
+ letter-spacing: 0.5px;
29
+ }
30
+ .status-icons {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 26px;
34
+ }
35
+ .dot-small {
36
+ width: 18px;
37
+ height: 18px;
38
+ border-radius: 50%;
39
+ background: #e0e0e0;
40
+ }
41
+
42
+ /* Top toolbar */
43
+ .toolbar {
44
+ height: 120px;
45
+ display: flex;
46
+ align-items: center;
47
+ justify-content: space-between;
48
+ padding: 0 36px;
49
+ box-sizing: border-box;
50
+ color: #e91e63;
51
+ }
52
+ .tb-left, .tb-right { display: flex; align-items: center; gap: 32px; }
53
+ .icon-btn {
54
+ width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
55
+ cursor: default;
56
+ }
57
+ .icon-btn svg { width: 44px; height: 44px; fill: #e91e63; }
58
+
59
+ /* Hero image section */
60
+ .hero {
61
+ padding: 40px 0 0;
62
+ box-sizing: border-box;
63
+ }
64
+ .shoe-frame {
65
+ width: 930px;
66
+ height: 520px;
67
+ margin: 0 auto;
68
+ background: #E0E0E0;
69
+ border: 1px solid #BDBDBD;
70
+ display: flex;
71
+ align-items: center;
72
+ justify-content: center;
73
+ color: #666;
74
+ font-size: 36px;
75
+ border-radius: 12px;
76
+ }
77
+
78
+ /* Slider dots and wish */
79
+ .slider-row {
80
+ margin-top: 46px;
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+ gap: 26px;
85
+ position: relative;
86
+ }
87
+ .dot {
88
+ width: 22px; height: 22px; border-radius: 50%;
89
+ background: #d7d7d7;
90
+ }
91
+ .dot.active { background: #ff2b86; }
92
+ .wish-btn {
93
+ position: absolute;
94
+ right: 56px;
95
+ transform: translateY(-6px);
96
+ width: 84px; height: 84px; border-radius: 50%;
97
+ border: 2px solid #ff2b86;
98
+ display: flex; align-items: center; justify-content: center;
99
+ background: #fff;
100
+ }
101
+ .wish-btn svg { width: 44px; height: 44px; fill: #ff2b86; }
102
+
103
+ /* Offer & Brand */
104
+ .offer-block {
105
+ margin: 46px 56px 10px;
106
+ display: flex; align-items: center; gap: 18px;
107
+ }
108
+ .pill-offer {
109
+ background: #f44336;
110
+ color: #fff;
111
+ padding: 10px 22px;
112
+ border-radius: 40px;
113
+ font-weight: bold;
114
+ font-size: 34px;
115
+ display: inline-flex; align-items: center; gap: 12px;
116
+ }
117
+ .pill-offer .pct {
118
+ width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.25);
119
+ display: inline-block;
120
+ }
121
+ .brand {
122
+ font-size: 36px; color: #444; letter-spacing: 1px;
123
+ }
124
+
125
+ /* Title and price */
126
+ .title {
127
+ font-size: 56px;
128
+ font-weight: 700;
129
+ line-height: 1.2;
130
+ padding: 8px 56px 0;
131
+ }
132
+ .price-row {
133
+ display: flex; align-items: center; gap: 16px;
134
+ padding: 16px 56px 0;
135
+ font-size: 40px;
136
+ }
137
+ .mrp {
138
+ color: #777; text-decoration: line-through;
139
+ }
140
+ .price {
141
+ font-weight: 700; color: #222;
142
+ }
143
+ .offer-text {
144
+ color: #ff2b86; font-weight: 700;
145
+ margin-left: 10px;
146
+ }
147
+ .info-circle {
148
+ width: 40px; height: 40px; border-radius: 50%; border: 2px solid #bdbdbd;
149
+ color: #9e9e9e; display: inline-flex; align-items: center; justify-content: center;
150
+ font-weight: bold; font-size: 26px; margin-left: 10px;
151
+ }
152
+
153
+ /* Color preview */
154
+ .color-row {
155
+ padding: 40px 56px 0;
156
+ display: flex; align-items: center; gap: 22px;
157
+ font-size: 40px; color: #333;
158
+ }
159
+ .swatch {
160
+ width: 100px; height: 100px; border-radius: 50%;
161
+ background: #3a3a3a; border: 4px solid #d1d1d1;
162
+ }
163
+
164
+ /* Bottom sticky bar */
165
+ .bottom-bar {
166
+ position: absolute;
167
+ left: 0; right: 0; bottom: 0;
168
+ height: 180px;
169
+ display: flex;
170
+ background: #ffffff;
171
+ box-shadow: 0 -6px 16px rgba(0,0,0,0.08);
172
+ }
173
+ .btn-half {
174
+ flex: 1;
175
+ display: flex; align-items: center; justify-content: center;
176
+ font-size: 50px; font-weight: 700; letter-spacing: 1px;
177
+ }
178
+ .btn-bag {
179
+ color: #ff2b86;
180
+ background: #fff;
181
+ }
182
+ .btn-buy {
183
+ color: #fff;
184
+ background: #ff2b86;
185
+ }
186
+ </style>
187
+ </head>
188
+ <body>
189
+ <div id="render-target">
190
+
191
+ <!-- Simulated system status bar -->
192
+ <div class="status-bar">
193
+ <div>11:40</div>
194
+ <div class="status-icons">
195
+ <div class="dot-small"></div>
196
+ <div class="dot-small"></div>
197
+ <div class="dot-small"></div>
198
+ <div class="dot-small"></div>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Top toolbar with back/search/bag/more -->
203
+ <div class="toolbar">
204
+ <div class="tb-left">
205
+ <div class="icon-btn" title="Back">
206
+ <svg viewBox="0 0 24 24">
207
+ <path d="M15.5 4l-8 8 8 8 1.5-1.5L10 12l7-6.5z"/>
208
+ </svg>
209
+ </div>
210
+ </div>
211
+ <div class="tb-right">
212
+ <div class="icon-btn" title="Search">
213
+ <svg viewBox="0 0 24 24">
214
+ <path d="M15.5 14h-.79l-.28-.27A6.5 6.5 0 109 15.5l.27.28v.79L20 22l2-2-6.5-6.5zm-6 0A4.5 4.5 0 1114 9.5 4.5 4.5 0 019.5 14z"/>
215
+ </svg>
216
+ </div>
217
+ <div class="icon-btn" title="Bag">
218
+ <svg viewBox="0 0 24 24">
219
+ <path d="M6 8h12l-1 12H7L6 8zm3-3a3 3 0 016 0v1h-2V5a1 1 0 10-2 0v1H9V5z"/>
220
+ </svg>
221
+ </div>
222
+ <div class="icon-btn" title="More">
223
+ <svg viewBox="0 0 24 24">
224
+ <circle cx="12" cy="5" r="2"/>
225
+ <circle cx="12" cy="12" r="2"/>
226
+ <circle cx="12" cy="19" r="2"/>
227
+ </svg>
228
+ </div>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Hero image area -->
233
+ <div class="hero">
234
+ <div class="shoe-frame">[IMG: Black leather slip-on shoe]</div>
235
+
236
+ <div class="slider-row">
237
+ <div class="dot active"></div>
238
+ <div class="dot"></div>
239
+ <div class="dot"></div>
240
+ <div class="dot"></div>
241
+ <div class="dot"></div>
242
+ <div class="dot"></div>
243
+ <div class="dot"></div>
244
+ <div class="dot"></div>
245
+
246
+ <div class="wish-btn" title="Wishlist">
247
+ <svg viewBox="0 0 24 24">
248
+ <path d="M12 21s-6.7-4.6-9.2-7.1A5.5 5.5 0 118.6 5.3L12 8.6l3.4-3.3a5.5 5.5 0 117.8 7.9C18.7 16.4 12 21 12 21z" fill="none" stroke="#ff2b86" stroke-width="2"/>
249
+ </svg>
250
+ </div>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Offer and brand -->
255
+ <div class="offer-block">
256
+ <div class="pill-offer"><span class="pct"></span>OFFER</div>
257
+ <div class="brand">ARROW</div>
258
+ </div>
259
+
260
+ <!-- Title -->
261
+ <div class="title">Men Solid Divine Slip On Shoes</div>
262
+
263
+ <!-- Price -->
264
+ <div class="price-row">
265
+ <div class="mrp">Rs. 4499</div>
266
+ <div class="price">2789</div>
267
+ <div class="offer-text">(Flat 38% off)</div>
268
+ <div class="info-circle">i</div>
269
+ </div>
270
+
271
+ <!-- Color preview -->
272
+ <div class="color-row">
273
+ <div class="swatch"></div>
274
+ <div>Color: Black</div>
275
+ </div>
276
+
277
+ <!-- Bottom bar -->
278
+ <div class="bottom-bar">
279
+ <div class="btn-half btn-bag">ADD TO BAG</div>
280
+ <div class="btn-half btn-buy">BUY NNNOW</div>
281
+ </div>
282
+
283
+ </div>
284
+ </body>
285
+ </html>
code/3479/3479_2.html ADDED
@@ -0,0 +1,273 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Product Detail - Men Solid Divine Slip On Shoes</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color:#111; }
8
+ #render-target {
9
+ position: relative;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: relative;
19
+ height: 120px;
20
+ background: #2b2b2b;
21
+ color: #fff;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ font-weight: 600;
27
+ letter-spacing: 1px;
28
+ }
29
+ .status-icons {
30
+ display: flex;
31
+ gap: 22px;
32
+ align-items: center;
33
+ }
34
+ .status-dot {
35
+ width: 24px; height: 24px; background:#fff; border-radius:50%;
36
+ }
37
+ .title-area {
38
+ padding: 34px 48px 12px 48px;
39
+ }
40
+ .title-area h1 {
41
+ margin: 0;
42
+ font-size: 54px;
43
+ line-height: 64px;
44
+ font-weight: 800;
45
+ }
46
+ .price-row {
47
+ display: flex;
48
+ align-items: center;
49
+ gap: 16px;
50
+ padding: 6px 48px 18px 48px;
51
+ font-size: 42px;
52
+ }
53
+ .price-row .strike {
54
+ color: #8d8d8d;
55
+ text-decoration: line-through;
56
+ }
57
+ .price-row .now {
58
+ font-weight: 700;
59
+ }
60
+ .price-row .off {
61
+ color: #e10073;
62
+ font-weight: 700;
63
+ }
64
+ .price-row .info {
65
+ width: 42px; height: 42px; border-radius: 50%;
66
+ border: 2px solid #c9c9c9; color:#666;
67
+ display: inline-flex; align-items: center; justify-content: center;
68
+ font-size: 28px;
69
+ }
70
+
71
+ .color-block {
72
+ padding: 26px 48px 16px 48px;
73
+ }
74
+ .swatch {
75
+ margin: 10px auto 12px auto;
76
+ width: 160px; height: 160px; border-radius: 50%;
77
+ background: #111;
78
+ box-shadow: inset 0 0 0 3px #333;
79
+ }
80
+ .color-label {
81
+ text-align: center;
82
+ font-size: 40px;
83
+ }
84
+
85
+ .action-row {
86
+ margin-top: 10px;
87
+ padding: 20px 40px;
88
+ display: flex;
89
+ justify-content: space-around;
90
+ text-align: center;
91
+ }
92
+ .action {
93
+ width: 28%;
94
+ }
95
+ .action svg {
96
+ width: 110px; height: 110px;
97
+ }
98
+ .action .label {
99
+ margin-top: 16px;
100
+ font-size: 38px;
101
+ }
102
+
103
+ .section-title {
104
+ margin: 30px 0 10px 0;
105
+ padding: 24px 48px 12px 48px;
106
+ font-size: 52px;
107
+ font-weight: 800;
108
+ letter-spacing: 1px;
109
+ }
110
+
111
+ .offer-card {
112
+ display: flex;
113
+ gap: 28px;
114
+ padding: 28px 48px;
115
+ }
116
+ .offer-badge {
117
+ width: 76px; height: 76px; border-radius: 50%;
118
+ color: #fff; display: flex; align-items:center; justify-content:center;
119
+ font-weight: 800; font-size: 38px;
120
+ }
121
+ .offer-badge.blue { background:#2a9de4; }
122
+ .offer-badge.green { background:#a9c93e; color:#1a1a1a; }
123
+ .offer-text .headline {
124
+ font-size: 42px; font-weight: 800; line-height: 54px;
125
+ }
126
+ .offer-text .code {
127
+ margin-top: 8px;
128
+ color:#606060;
129
+ font-size: 34px;
130
+ }
131
+ .offer-text .link {
132
+ margin-top: 16px;
133
+ color:#ff2ea8;
134
+ font-size: 36px;
135
+ font-weight: 600;
136
+ }
137
+
138
+ .banner {
139
+ margin: 22px 0 0 0;
140
+ padding: 0 0 220px 0;
141
+ }
142
+ .banner .img {
143
+ margin: 0 0;
144
+ width: 100%;
145
+ height: 520px;
146
+ background:#E0E0E0;
147
+ border-top:1px solid #BDBDBD;
148
+ border-bottom:1px solid #BDBDBD;
149
+ display:flex; align-items:center; justify-content:center; color:#757575;
150
+ font-size: 42px; font-weight: 600;
151
+ }
152
+
153
+ /* Bottom CTA bar */
154
+ .cta-bar {
155
+ position: absolute;
156
+ left: 0; right: 0; bottom: 0;
157
+ height: 170px;
158
+ display: flex;
159
+ box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
160
+ }
161
+ .cta {
162
+ flex: 1;
163
+ display:flex; align-items:center; justify-content:center;
164
+ font-size: 44px; font-weight: 800; letter-spacing: 1px;
165
+ }
166
+ .cta.add {
167
+ background:#f0f0f2; color:#e10073;
168
+ }
169
+ .cta.buy {
170
+ background:#e10073; color:#fff;
171
+ }
172
+
173
+ /* minor tweaks for visual rhythm */
174
+ .divider {
175
+ height: 1px; background:#efefef; margin: 12px 0;
176
+ }
177
+ </style>
178
+ </head>
179
+ <body>
180
+ <div id="render-target">
181
+ <!-- Status Bar -->
182
+ <div class="status-bar">
183
+ <div>11:41</div>
184
+ <div class="status-icons">
185
+ <div class="status-dot"></div>
186
+ <div class="status-dot"></div>
187
+ <div class="status-dot"></div>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Title -->
192
+ <div class="title-area">
193
+ <h1>Men Solid Divine Slip On Shoes</h1>
194
+ </div>
195
+
196
+ <!-- Price Row -->
197
+ <div class="price-row">
198
+ <span class="strike">Rs. 4499</span>
199
+ <span class="now">2789</span>
200
+ <span class="off">(Flat 38% off)</span>
201
+ <span class="info">i</span>
202
+ </div>
203
+
204
+ <!-- Color selector -->
205
+ <div class="color-block">
206
+ <div class="swatch"></div>
207
+ <div class="color-label">Color : Black</div>
208
+ </div>
209
+
210
+ <!-- Size / Qty / Share -->
211
+ <div class="action-row">
212
+ <div class="action">
213
+ <svg viewBox="0 0 24 24" fill="none" stroke="#ef305e" stroke-width="2">
214
+ <rect x="2" y="6" width="20" height="6" rx="1" fill="none"></rect>
215
+ <path d="M6 6v6M10 6v6M14 6v6M18 6v6" />
216
+ </svg>
217
+ <div class="label">Size</div>
218
+ </div>
219
+ <div class="action">
220
+ <svg viewBox="0 0 24 24" fill="none" stroke="#5fbf9f" stroke-width="2">
221
+ <circle cx="12" cy="12" r="9"></circle>
222
+ <path d="M12 8v8M8 12h8" />
223
+ </svg>
224
+ <div class="label">Qty</div>
225
+ </div>
226
+ <div class="action">
227
+ <svg viewBox="0 0 24 24" fill="none" stroke="#3b8ed6" stroke-width="2">
228
+ <circle cx="18" cy="5" r="3"></circle>
229
+ <circle cx="6" cy="12" r="3"></circle>
230
+ <circle cx="18" cy="19" r="3"></circle>
231
+ <path d="M8.7 10.7l6-3.6M8.7 13.3l6 3.6" />
232
+ </svg>
233
+ <div class="label">Share</div>
234
+ </div>
235
+ </div>
236
+
237
+ <div class="divider"></div>
238
+
239
+ <!-- More Offers -->
240
+ <div class="section-title">MORE OFFERS</div>
241
+
242
+ <div class="offer-card">
243
+ <div class="offer-badge blue">1</div>
244
+ <div class="offer-text">
245
+ <div class="headline">SHOP FOR 2999 GET EXTRA 10% OFF</div>
246
+ <div class="code">FW10</div>
247
+ <div class="link">Other Eligible products</div>
248
+ </div>
249
+ </div>
250
+
251
+ <div class="offer-card">
252
+ <div class="offer-badge green">2</div>
253
+ <div class="offer-text">
254
+ <div class="headline">EXTRA 20% OFF UPTO RS 500 ON FIRST PURCHASE</div>
255
+ <div class="code">NEW20</div>
256
+ <div class="link">Other Eligible products</div>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="section-title">DELIVERY OPTIONS</div>
261
+
262
+ <div class="banner">
263
+ <div class="img">[IMG: Pickup in store banner]</div>
264
+ </div>
265
+
266
+ <!-- Bottom CTA -->
267
+ <div class="cta-bar">
268
+ <div class="cta add">ADD TO BAG</div>
269
+ <div class="cta buy">BUY NNNOW</div>
270
+ </div>
271
+ </div>
272
+ </body>
273
+ </html>
code/3479/3479_3.html ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Delivery Options - UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ border: 1px solid #dcdcdc;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 120px;
23
+ background: #2d2d2d;
24
+ color: #fff;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 40px;
28
+ box-sizing: border-box;
29
+ font-size: 36px;
30
+ letter-spacing: 1px;
31
+ }
32
+ .status-bar .time { font-weight: 600; }
33
+ .status-icons { margin-left: auto; display: flex; align-items: center; gap: 24px; }
34
+ .status-icons svg { fill: none; stroke: #fff; stroke-width: 4px; }
35
+
36
+ /* Page header */
37
+ .page-header {
38
+ position: absolute;
39
+ top: 120px;
40
+ left: 0;
41
+ width: 1080px;
42
+ padding: 36px 40px;
43
+ box-sizing: border-box;
44
+ text-align: center;
45
+ color: #111;
46
+ font-size: 60px;
47
+ font-weight: 700;
48
+ letter-spacing: 2px;
49
+ }
50
+
51
+ /* Illustration/banner placeholder */
52
+ .banner {
53
+ position: absolute;
54
+ top: 220px;
55
+ left: 0;
56
+ width: 1080px;
57
+ height: 740px;
58
+ background: #E0E0E0;
59
+ border-top: 1px solid #BDBDBD;
60
+ border-bottom: 1px solid #BDBDBD;
61
+ display: flex;
62
+ align-items: center;
63
+ justify-content: center;
64
+ color: #757575;
65
+ text-align: center;
66
+ padding: 20px;
67
+ box-sizing: border-box;
68
+ font-size: 42px;
69
+ line-height: 1.3;
70
+ }
71
+
72
+ /* Pincode input */
73
+ .pincode-wrap {
74
+ position: absolute;
75
+ top: 980px;
76
+ left: 60px;
77
+ width: 960px;
78
+ box-sizing: border-box;
79
+ }
80
+ .pincode-field {
81
+ display: flex;
82
+ align-items: center;
83
+ gap: 20px;
84
+ padding-bottom: 18px;
85
+ border-bottom: 6px solid #111;
86
+ }
87
+ .pincode-field input {
88
+ flex: 1;
89
+ font-size: 46px;
90
+ border: none;
91
+ outline: none;
92
+ color: #333;
93
+ }
94
+ .pincode-field input::placeholder { color: #999; }
95
+ .pincode-field .search-icon svg {
96
+ width: 64px;
97
+ height: 64px;
98
+ stroke: #111;
99
+ stroke-width: 8px;
100
+ fill: none;
101
+ }
102
+
103
+ /* Product info section */
104
+ .section-title {
105
+ position: absolute;
106
+ top: 1110px;
107
+ left: 0;
108
+ width: 1080px;
109
+ text-align: center;
110
+ font-size: 56px;
111
+ font-weight: 700;
112
+ color: #111;
113
+ letter-spacing: 1px;
114
+ }
115
+
116
+ .list {
117
+ position: absolute;
118
+ top: 1240px;
119
+ left: 0;
120
+ width: 1080px;
121
+ box-sizing: border-box;
122
+ border-top: 1px solid #eee;
123
+ }
124
+ .list-item {
125
+ display: flex;
126
+ align-items: center;
127
+ justify-content: space-between;
128
+ padding: 40px 60px;
129
+ font-size: 44px;
130
+ color: #222;
131
+ border-bottom: 1px solid #f0f0f0;
132
+ }
133
+ .list-item .chev {
134
+ width: 36px;
135
+ height: 36px;
136
+ }
137
+ .list-item .chev svg {
138
+ width: 36px; height: 36px;
139
+ stroke: #111; stroke-width: 10px; fill: none;
140
+ }
141
+
142
+ /* Bottom action bar */
143
+ .bottom-bar {
144
+ position: absolute;
145
+ bottom: 0;
146
+ left: 0;
147
+ width: 1080px;
148
+ height: 200px;
149
+ display: flex;
150
+ }
151
+ .btn-left, .btn-right {
152
+ flex: 1;
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: center;
156
+ font-size: 46px;
157
+ font-weight: 700;
158
+ letter-spacing: 1px;
159
+ }
160
+ .btn-left {
161
+ background: #f2f2f2;
162
+ color: #d6007e;
163
+ }
164
+ .btn-right {
165
+ background: #e30083;
166
+ color: #fff;
167
+ }
168
+
169
+ /* Home indicator (subtle) */
170
+ .home-indicator {
171
+ position: absolute;
172
+ bottom: 210px;
173
+ left: 50%;
174
+ transform: translateX(-50%);
175
+ width: 500px;
176
+ height: 16px;
177
+ border-radius: 8px;
178
+ background: #cfcfcf;
179
+ }
180
+ </style>
181
+ </head>
182
+ <body>
183
+ <div id="render-target">
184
+
185
+ <!-- Status bar -->
186
+ <div class="status-bar">
187
+ <div class="time">11:41</div>
188
+ <div class="status-icons">
189
+ <!-- Home icon -->
190
+ <svg viewBox="0 0 24 24"><path d="M3 12 L12 3 L21 12 M6 10 V21 H18 V10"/></svg>
191
+ <!-- Signal bars -->
192
+ <svg viewBox="0 0 24 24">
193
+ <path d="M3 21 H5 V15 H3 Z"/>
194
+ <path d="M8 21 H10 V13 H8 Z"/>
195
+ <path d="M13 21 H15 V11 H13 Z"/>
196
+ <path d="M18 21 H20 V9 H18 Z"/>
197
+ </svg>
198
+ <!-- Battery -->
199
+ <svg viewBox="0 0 32 18">
200
+ <rect x="1" y="3" width="26" height="12" rx="2"></rect>
201
+ <rect x="28" y="6" width="3" height="6"></rect>
202
+ <rect x="3" y="5" width="20" height="8" fill="#fff" stroke="none"></rect>
203
+ </svg>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- Page header -->
208
+ <div class="page-header">DELIVERY OPTIONS</div>
209
+
210
+ <!-- Illustration banner -->
211
+ <div class="banner">[IMG: Delivery options illustration – "want to pick up in store?" (left) / "get express delivery?" (right)]</div>
212
+
213
+ <!-- Pincode Input -->
214
+ <div class="pincode-wrap">
215
+ <div class="pincode-field">
216
+ <input type="text" placeholder="Enter Your Pincode">
217
+ <div class="search-icon">
218
+ <svg viewBox="0 0 24 24">
219
+ <circle cx="10" cy="10" r="7"></circle>
220
+ <line x1="15" y1="15" x2="22" y2="22"></line>
221
+ </svg>
222
+ </div>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- Product Info Title -->
227
+ <div class="section-title">PRODUCT INFO</div>
228
+
229
+ <!-- List items -->
230
+ <div class="list">
231
+ <div class="list-item">
232
+ <div>The Finer Details</div>
233
+ <div class="chev">
234
+ <svg viewBox="0 0 24 24"><polyline points="8,4 16,12 8,20"></polyline></svg>
235
+ </div>
236
+ </div>
237
+ <div class="list-item">
238
+ <div>NNNOW Says</div>
239
+ <div class="chev">
240
+ <svg viewBox="0 0 24 24"><polyline points="8,4 16,12 8,20"></polyline></svg>
241
+ </div>
242
+ </div>
243
+ <div class="list-item">
244
+ <div>About Arrow</div>
245
+ <div class="chev">
246
+ <svg viewBox="0 0 24 24"><polyline points="8,4 16,12 8,20"></polyline></svg>
247
+ </div>
248
+ </div>
249
+ <div class="list-item">
250
+ <div>Returns</div>
251
+ <div class="chev">
252
+ <svg viewBox="0 0 24 24"><polyline points="8,4 16,12 8,20"></polyline></svg>
253
+ </div>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Home indicator -->
258
+ <div class="home-indicator"></div>
259
+
260
+ <!-- Bottom action bar -->
261
+ <div class="bottom-bar">
262
+ <div class="btn-left">ADD TO BAG</div>
263
+ <div class="btn-right">BUY NNNOW</div>
264
+ </div>
265
+
266
+ </div>
267
+ </body>
268
+ </html>
code/3479/3479_4.html ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>The Finer Details - UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #0A8FBE; /* bright teal-blue panel */
14
+ color: #FFFFFF;
15
+ }
16
+ /* Close icon */
17
+ .close-btn {
18
+ position: absolute;
19
+ top: 120px;
20
+ left: 48px;
21
+ width: 72px;
22
+ height: 72px;
23
+ }
24
+ .close-btn line { stroke: #FF2C8A; stroke-width: 10; stroke-linecap: round; }
25
+
26
+ .content {
27
+ position: absolute;
28
+ left: 60px;
29
+ right: 60px;
30
+ top: 260px;
31
+ }
32
+ .title {
33
+ font-size: 110px;
34
+ font-weight: 800;
35
+ letter-spacing: 2px;
36
+ margin: 0 0 90px 0;
37
+ }
38
+ .subhead {
39
+ font-size: 60px;
40
+ font-weight: 800;
41
+ margin: 0 0 36px 0;
42
+ }
43
+ .list, .plain {
44
+ list-style: none;
45
+ padding: 0;
46
+ margin: 0;
47
+ }
48
+ .list li, .plain li {
49
+ font-size: 48px;
50
+ line-height: 1.6;
51
+ margin: 26px 0;
52
+ opacity: 0.98;
53
+ }
54
+ .section {
55
+ margin-bottom: 80px;
56
+ }
57
+
58
+ /* Shoe image placeholder at bottom-right */
59
+ .shoe-img {
60
+ position: absolute;
61
+ right: -40px;
62
+ bottom: 320px;
63
+ width: 760px;
64
+ height: 400px;
65
+ background: #E0E0E0;
66
+ border: 1px solid #BDBDBD;
67
+ display: flex;
68
+ justify-content: center;
69
+ align-items: center;
70
+ color: #757575;
71
+ font-size: 34px;
72
+ border-radius: 6px;
73
+ }
74
+
75
+ /* Subtle transparency similar to overlay feel */
76
+ .washed { opacity: 0.9; }
77
+ </style>
78
+ </head>
79
+ <body>
80
+ <div id="render-target">
81
+
82
+ <!-- Pink Close Icon -->
83
+ <svg class="close-btn" viewBox="0 0 72 72">
84
+ <line x1="10" y1="10" x2="62" y2="62"></line>
85
+ <line x1="62" y1="10" x2="10" y2="62"></line>
86
+ </svg>
87
+
88
+ <div class="content">
89
+ <h1 class="title">THE FINER DETAILS</h1>
90
+
91
+ <div class="section">
92
+ <div class="subhead">Specs</div>
93
+ <ul class="list">
94
+ <li>Pointed toe</li>
95
+ <li>Panelled upper</li>
96
+ <li>Reinforced heel counter</li>
97
+ <li>Cushioned footbed</li>
98
+ <li>Textured outsole</li>
99
+ <li>Solid pattern</li>
100
+ <li>Country Of Origin - India</li>
101
+ </ul>
102
+ </div>
103
+
104
+ <div class="section">
105
+ <div class="subhead">Composition and care</div>
106
+ <ul class="plain">
107
+ <li>Upper: Leather</li>
108
+ <li>Sole: TPR</li>
109
+ <li>Spot clean</li>
110
+ </ul>
111
+ </div>
112
+ </div>
113
+
114
+ <div class="shoe-img washed">[IMG: Black Formal Shoe]</div>
115
+
116
+ </div>
117
+ </body>
118
+ </html>
code/3480/3480_0.html ADDED
@@ -0,0 +1,339 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Hotel List UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ color: #111;
15
+ }
16
+
17
+ /* Header */
18
+ .header {
19
+ background: #0a4ea2;
20
+ height: 300px;
21
+ position: relative;
22
+ }
23
+ .status-bar {
24
+ height: 90px;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ padding: 0 36px;
29
+ color: #fff;
30
+ font-size: 38px;
31
+ letter-spacing: 0.2px;
32
+ }
33
+ .status-right { display: flex; align-items: center; gap: 24px; }
34
+ .search-box {
35
+ position: absolute;
36
+ left: 36px;
37
+ right: 36px;
38
+ bottom: -36px;
39
+ height: 120px;
40
+ background: #fff;
41
+ border: 8px solid #f5a623;
42
+ border-radius: 28px;
43
+ display: flex;
44
+ align-items: center;
45
+ padding: 0 36px;
46
+ box-shadow: 0 4px 12px rgba(0,0,0,0.15);
47
+ color: #222;
48
+ font-size: 40px;
49
+ font-weight: 600;
50
+ gap: 24px;
51
+ }
52
+ .search-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
53
+
54
+ /* Toolbar */
55
+ .toolbar {
56
+ margin-top: 72px; /* space below the overlapping search-box */
57
+ padding: 18px 56px 24px 56px;
58
+ display: flex;
59
+ align-items: center;
60
+ justify-content: space-between;
61
+ border-bottom: 1px solid #e5e5e5;
62
+ color: #222;
63
+ font-size: 34px;
64
+ }
65
+ .tool {
66
+ display: flex; align-items: center; gap: 16px;
67
+ }
68
+
69
+ /* List heading */
70
+ .results-info {
71
+ font-size: 32px;
72
+ color: #666;
73
+ padding: 28px 56px;
74
+ border-bottom: 1px solid #ededed;
75
+ }
76
+
77
+ /* Cards */
78
+ .card {
79
+ display: flex;
80
+ padding: 28px 32px 40px 32px;
81
+ gap: 28px;
82
+ border-bottom: 1px solid #eee;
83
+ }
84
+ .photo {
85
+ width: 330px;
86
+ height: 330px;
87
+ background: #E0E0E0;
88
+ border: 1px solid #BDBDBD;
89
+ border-radius: 40px;
90
+ display: flex; align-items: center; justify-content: center;
91
+ color: #757575; font-size: 28px; text-align: center;
92
+ flex-shrink: 0;
93
+ }
94
+ .content { flex: 1; }
95
+ .title-row {
96
+ display: flex; align-items: center; justify-content: space-between;
97
+ margin-top: 6px;
98
+ }
99
+ .title {
100
+ font-size: 44px;
101
+ font-weight: 800;
102
+ color: #111;
103
+ line-height: 1.2;
104
+ }
105
+ .heart { width: 48px; height: 48px; }
106
+ .badges { display: flex; gap: 10px; margin: 12px 0 8px 0; }
107
+ .badge-square {
108
+ width: 36px; height: 36px; background: #FFC107; border-radius: 6px; display: inline-block;
109
+ }
110
+ .rating-row {
111
+ display: flex; align-items: center; gap: 16px; margin: 4px 0 10px 0;
112
+ }
113
+ .rating-pill {
114
+ background: #0b57c9; color: #fff; font-weight: 800;
115
+ padding: 8px 14px; border-radius: 14px; font-size: 32px; min-width: 70px; text-align: center;
116
+ }
117
+ .reviews { color: #6b6b6b; font-size: 32px; }
118
+ .info-row { display: flex; align-items: center; gap: 12px; color: #444; font-size: 32px; margin: 6px 0; }
119
+ .muted { color: #6b6b6b; }
120
+ .leafs { display: flex; align-items: center; gap: 8px; }
121
+ .features { color: #444; font-size: 30px; margin-top: 8px; }
122
+ .price-block { margin-top: 22px; }
123
+ .price-title { font-size: 34px; color: #222; }
124
+ .price-value { font-size: 56px; font-weight: 800; margin-top: 8px; }
125
+ .price-sub { font-size: 28px; color: #7a7a7a; margin-top: 8px; }
126
+ .alert { font-size: 28px; color: #d92929; margin-top: 8px; }
127
+ .label-green {
128
+ display: inline-block; background: #1a8f41; color: #fff; border-radius: 10px;
129
+ padding: 6px 12px; font-size: 28px; margin-left: 8px;
130
+ }
131
+ .strike { text-decoration: line-through; color: #c05e5e; margin-right: 12px; font-size: 40px; }
132
+
133
+ /* Bottom gesture bar */
134
+ .gesture {
135
+ position: absolute; left: 50%; transform: translateX(-50%);
136
+ bottom: 28px; width: 240px; height: 12px; background: #000; opacity: .85; border-radius: 12px;
137
+ }
138
+
139
+ /* Small icon helpers */
140
+ .icon { width: 42px; height: 42px; }
141
+ .pin { width: 34px; height: 34px; }
142
+ </style>
143
+ </head>
144
+ <body>
145
+ <div id="render-target">
146
+
147
+ <!-- Header with status bar -->
148
+ <div class="header">
149
+ <div class="status-bar">
150
+ <div style="display:flex; align-items:center; gap:16px;">
151
+ <span>7:48</span>
152
+ <svg class="icon" viewBox="0 0 48 48">
153
+ <circle cx="24" cy="24" r="9" fill="none" stroke="#fff" stroke-width="3"/>
154
+ <line x1="24" y1="3" x2="24" y2="11" stroke="#fff" stroke-width="3"/>
155
+ <line x1="24" y1="37" x2="24" y2="45" stroke="#fff" stroke-width="3"/>
156
+ <line x1="3" y1="24" x2="11" y2="24" stroke="#fff" stroke-width="3"/>
157
+ <line x1="37" y1="24" x2="45" y2="24" stroke="#fff" stroke-width="3"/>
158
+ <line x1="9" y1="9" x2="14" y2="14" stroke="#fff" stroke-width="3"/>
159
+ <line x1="34" y1="34" x2="39" y2="39" stroke="#fff" stroke-width="3"/>
160
+ <line x1="34" y1="14" x2="39" y2="9" stroke="#fff" stroke-width="3"/>
161
+ <line x1="9" y1="39" x2="14" y2="34" stroke="#fff" stroke-width="3"/>
162
+ </svg>
163
+ </div>
164
+ <div class="status-right">
165
+ <svg class="icon" viewBox="0 0 48 48">
166
+ <path d="M6 30a18 18 0 0 1 36 0" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
167
+ <path d="M12 30a12 12 0 0 1 24 0" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
168
+ <circle cx="24" cy="33" r="2" fill="#fff"/>
169
+ </svg>
170
+ <svg class="icon" viewBox="0 0 48 48">
171
+ <rect x="6" y="12" width="34" height="24" rx="4" ry="4" fill="none" stroke="#fff" stroke-width="3"/>
172
+ <rect x="8" y="14" width="30" height="20" fill="#fff"/>
173
+ <rect x="40" y="20" width="4" height="8" fill="#fff"/>
174
+ </svg>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Search box -->
179
+ <div class="search-box">
180
+ <svg class="icon" viewBox="0 0 48 48">
181
+ <path d="M30 8 L14 24 L30 40" fill="none" stroke="#222" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
182
+ </svg>
183
+ <div class="search-text">Berlin · Oct 18 - Oct 22</div>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Toolbar -->
188
+ <div class="toolbar">
189
+ <div class="tool">
190
+ <svg class="icon" viewBox="0 0 48 48">
191
+ <path d="M16 10 L8 18 L16 26" stroke="#222" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
192
+ <line x1="8" y1="18" x2="26" y2="18" stroke="#222" stroke-width="3" stroke-linecap="round"/>
193
+ <path d="M32 38 L40 30 L32 22" stroke="#222" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
194
+ <line x1="22" y1="30" x2="40" y2="30" stroke="#222" stroke-width="3" stroke-linecap="round"/>
195
+ </svg>
196
+ <span>Sort</span>
197
+ </div>
198
+ <div class="tool">
199
+ <svg class="icon" viewBox="0 0 48 48">
200
+ <line x1="6" y1="14" x2="42" y2="14" stroke="#222" stroke-width="3" stroke-linecap="round"/>
201
+ <circle cx="18" cy="14" r="4" fill="#222"/>
202
+ <line x1="6" y1="24" x2="42" y2="24" stroke="#222" stroke-width="3" stroke-linecap="round"/>
203
+ <circle cx="30" cy="24" r="4" fill="#222"/>
204
+ <line x1="6" y1="34" x2="42" y2="34" stroke="#222" stroke-width="3" stroke-linecap="round"/>
205
+ <circle cx="12" cy="34" r="4" fill="#222"/>
206
+ </svg>
207
+ <span>Filter</span>
208
+ </div>
209
+ <div class="tool">
210
+ <svg class="icon" viewBox="0 0 48 48">
211
+ <path d="M24 9c7 0 12 6 12 12s-12 18-12 18S12 28 12 21 17 9 24 9z" fill="none" stroke="#222" stroke-width="3"/>
212
+ <circle cx="24" cy="21" r="4" fill="#222"/>
213
+ </svg>
214
+ <span>Map</span>
215
+ </div>
216
+ </div>
217
+
218
+ <div class="results-info">418 properties</div>
219
+
220
+ <!-- Card 1 -->
221
+ <div class="card">
222
+ <div class="photo">[IMG: Bedroom photo]</div>
223
+ <div class="content">
224
+ <div class="title-row">
225
+ <div class="title">Secret Studio Lux SPECIAL OFFER</div>
226
+ <svg class="heart" viewBox="0 0 48 48">
227
+ <path d="M24 40 L10 26 A9 9 0 0 1 24 14 A9 9 0 0 1 38 26 L24 40 Z" fill="none" stroke="#666" stroke-width="3" stroke-linejoin="round"/>
228
+ </svg>
229
+ </div>
230
+ <div class="badges">
231
+ <span class="badge-square"></span>
232
+ <span class="badge-square"></span>
233
+ <span class="badge-square"></span>
234
+ </div>
235
+ <div class="rating-row">
236
+ <div class="rating-pill">6.9</div>
237
+ <div class="reviews"><strong>Pleasant</strong> · 117 reviews</div>
238
+ </div>
239
+ <div class="info-row">
240
+ <svg class="pin" viewBox="0 0 48 48">
241
+ <path d="M24 9c7 0 12 6 12 12s-12 18-12 18S12 28 12 21 17 9 24 9z" fill="none" stroke="#555" stroke-width="3"/>
242
+ <circle cx="24" cy="21" r="4" fill="#555"/>
243
+ </svg>
244
+ <span class="muted">Neukölln · 7 miles from center</span>
245
+ </div>
246
+ <div class="info-row leafs">
247
+ <svg class="pin" viewBox="0 0 48 48">
248
+ <path d="M10 30c10-2 18-14 28-12-6 12-14 18-28 12z" fill="none" stroke="#333" stroke-width="3"/>
249
+ </svg>
250
+ <svg class="pin" viewBox="0 0 48 48">
251
+ <path d="M10 30c10-2 18-14 28-12-6 12-14 18-28 12z" fill="none" stroke="#333" stroke-width="3"/>
252
+ </svg>
253
+ <svg class="pin" viewBox="0 0 48 48">
254
+ <path d="M10 30c10-2 18-14 28-12-6 12-14 18-28 12z" fill="none" stroke="#333" stroke-width="3"/>
255
+ </svg>
256
+ <span class="muted">Travel Sustainable</span>
257
+ </div>
258
+ <div class="features">Entire studio – 236.8 ft² · 1 bed · 1 bedroom · 1 bathroom</div>
259
+
260
+ <div class="price-block">
261
+ <div class="price-title">Price for 4 nights, 1 adult</div>
262
+ <div class="price-value">€ 500</div>
263
+ <div class="price-sub">Includes taxes and fees</div>
264
+ <div class="alert">Only 2 left at this price on Booking.com</div>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Card 2 -->
270
+ <div class="card">
271
+ <div class="photo">[IMG: Hotel room photo]</div>
272
+ <div class="content">
273
+ <div class="title-row">
274
+ <div class="title">Märkischer Hof Hotel</div>
275
+ <svg class="heart" viewBox="0 0 48 48">
276
+ <path d="M24 40 L10 26 A9 9 0 0 1 24 14 A9 9 0 0 1 38 26 L24 40 Z" fill="none" stroke="#666" stroke-width="3" stroke-linejoin="round"/>
277
+ </svg>
278
+ </div>
279
+ <div class="rating-row">
280
+ <div class="rating-pill">4.0</div>
281
+ <div class="reviews"><strong>Disappointing</strong> · 1933 reviews</div>
282
+ </div>
283
+ <div class="info-row">
284
+ <svg class="pin" viewBox="0 0 48 48">
285
+ <path d="M24 9c7 0 12 6 12 12s-12 18-12 18S12 28 12 21 17 9 24 9z" fill="none" stroke="#555" stroke-width="3"/>
286
+ <circle cx="24" cy="21" r="4" fill="#555"/>
287
+ </svg>
288
+ <span class="muted">Mitte · 4,500 feet from center</span>
289
+ <span class="label-green">Mobile-only price</span>
290
+ </div>
291
+ <div class="features">Hotel room: 2 beds</div>
292
+
293
+ <div class="price-block">
294
+ <div class="price-title">Price for 4 nights, 1 adult</div>
295
+ <div style="display:flex; align-items: baseline; gap: 14px; margin-top: 8px;">
296
+ <span class="strike">€ 440</span>
297
+ <span class="price-value" style="margin-top:0;">€ 396</span>
298
+ </div>
299
+ <div class="price-sub">Includes taxes and fees</div>
300
+ <div class="alert">Only 2 left at this price on Booking.com</div>
301
+ </div>
302
+ </div>
303
+ </div>
304
+
305
+ <!-- Card 3 -->
306
+ <div class="card">
307
+ <div class="photo">[IMG: Hostel room photo]</div>
308
+ <div class="content">
309
+ <div class="title-row">
310
+ <div class="title">PREMIUM Hostel</div>
311
+ <svg class="heart" viewBox="0 0 48 48">
312
+ <path d="M24 40 L10 26 A9 9 0 0 1 24 14 A9 9 0 0 1 38 26 L24 40 Z" fill="none" stroke="#666" stroke-width="3" stroke-linejoin="round"/>
313
+ </svg>
314
+ </div>
315
+ <div class="rating-row">
316
+ <div class="rating-pill">4.7</div>
317
+ <div class="reviews"><strong>Disappointing</strong> · 874 reviews</div>
318
+ </div>
319
+ <div class="info-row">
320
+ <svg class="pin" viewBox="0 0 48 48">
321
+ <path d="M24 9c7 0 12 6 12 12s-12 18-12 18S12 28 12 21 17 9 24 9z" fill="none" stroke="#555" stroke-width="3"/>
322
+ <circle cx="24" cy="21" r="4" fill="#555"/>
323
+ </svg>
324
+ <span class="muted">Reinickendorf · 4 miles from center</span>
325
+ </div>
326
+ <div class="features">Bed in dorm: 1 bed</div>
327
+
328
+ <div class="price-block">
329
+ <div class="price-title">Price for 4 nights, 1 adult</div>
330
+ <div class="price-value">€ 72</div>
331
+ <div class="price-sub">Includes taxes and fees</div>
332
+ </div>
333
+ </div>
334
+ </div>
335
+
336
+ <div class="gesture"></div>
337
+ </div>
338
+ </body>
339
+ </html>
code/3480/3480_1.html ADDED
@@ -0,0 +1,414 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Berlin Hotels List Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: #1b1b1b; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Header / Status */
18
+ .top-header {
19
+ position: relative;
20
+ height: 330px;
21
+ background: #0a51a1; /* deep blue */
22
+ color: #fff;
23
+ }
24
+ .status-row {
25
+ height: 80px;
26
+ padding: 20px 32px;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ font-weight: 600;
31
+ font-size: 34px;
32
+ letter-spacing: 0.2px;
33
+ }
34
+ .status-left, .status-right { display: flex; align-items: center; gap: 18px; }
35
+ .search-pill {
36
+ position: absolute;
37
+ left: 40px;
38
+ right: 40px;
39
+ top: 140px;
40
+ height: 110px;
41
+ background: #ffffff;
42
+ border: 8px solid #f7a900; /* orange outline */
43
+ border-radius: 24px;
44
+ box-shadow: 0 6px 14px rgba(0,0,0,0.15);
45
+ display: flex;
46
+ align-items: center;
47
+ padding: 0 28px;
48
+ color: #222;
49
+ font-size: 36px;
50
+ font-weight: 600;
51
+ gap: 22px;
52
+ }
53
+ .search-pill .muted { font-weight: 500; color: #333; }
54
+
55
+ /* Toolbar */
56
+ .toolbar {
57
+ height: 120px;
58
+ background: #fff;
59
+ display: flex;
60
+ align-items: center;
61
+ padding: 0 36px;
62
+ gap: 48px;
63
+ border-bottom: 1px solid #e6e6e6;
64
+ box-shadow: 0 6px 12px rgba(0,0,0,0.06);
65
+ }
66
+ .tool-item {
67
+ display: inline-flex;
68
+ align-items: center;
69
+ gap: 16px;
70
+ color: #333;
71
+ font-size: 34px;
72
+ font-weight: 600;
73
+ padding: 16px 18px;
74
+ border-radius: 14px;
75
+ }
76
+
77
+ /* List content */
78
+ .content {
79
+ padding: 26px 32px 140px;
80
+ background: #fff;
81
+ }
82
+ .hotel-card {
83
+ display: grid;
84
+ grid-template-columns: 330px 1fr;
85
+ gap: 36px;
86
+ margin-bottom: 48px;
87
+ }
88
+ .img-box {
89
+ width: 330px;
90
+ height: 330px;
91
+ background: #E0E0E0;
92
+ border: 1px solid #BDBDBD;
93
+ border-radius: 28px;
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ color: #757575;
98
+ font-size: 28px;
99
+ text-align: center;
100
+ padding: 12px;
101
+ }
102
+
103
+ .hotel-info { padding-right: 24px; }
104
+ .title {
105
+ font-size: 42px;
106
+ font-weight: 800;
107
+ margin-bottom: 10px;
108
+ color: #111;
109
+ }
110
+ .stars { display: inline-flex; gap: 6px; vertical-align: middle; }
111
+ .badge-blue {
112
+ display: inline-flex;
113
+ background: #0a51a1;
114
+ color: #fff;
115
+ font-weight: 800;
116
+ padding: 6px 12px;
117
+ border-radius: 8px;
118
+ font-size: 28px;
119
+ margin-left: 12px;
120
+ align-items: center;
121
+ }
122
+ .rating-line {
123
+ display: flex;
124
+ align-items: center;
125
+ gap: 14px;
126
+ margin: 10px 0 14px;
127
+ font-size: 30px;
128
+ color: #333;
129
+ }
130
+ .score {
131
+ background: #1e66d2;
132
+ color: #fff;
133
+ font-weight: 800;
134
+ padding: 8px 12px;
135
+ border-radius: 10px;
136
+ font-size: 30px;
137
+ }
138
+ .location {
139
+ display: flex;
140
+ align-items: center;
141
+ gap: 14px;
142
+ color: #444;
143
+ font-size: 30px;
144
+ margin: 8px 0 8px;
145
+ }
146
+ .sustainable {
147
+ display: flex;
148
+ align-items: center;
149
+ gap: 12px;
150
+ color: #333;
151
+ font-size: 30px;
152
+ margin: 8px 0 14px;
153
+ }
154
+ .leaf-icons { display: inline-flex; gap: 8px; margin-right: 8px; }
155
+ .badge-green {
156
+ display: inline-flex;
157
+ background: #14863d;
158
+ color: #fff;
159
+ font-weight: 800;
160
+ padding: 8px 12px;
161
+ border-radius: 12px;
162
+ font-size: 28px;
163
+ margin: 6px 0 12px;
164
+ }
165
+
166
+ .subtle { color: #666; font-size: 28px; }
167
+ .price-block { margin-top: 8px; }
168
+ .price-title { font-size: 34px; font-weight: 700; color: #111; }
169
+ .price-row { display: flex; align-items: baseline; gap: 16px; margin: 8px 0; }
170
+ .old-price { color: #d54a4a; text-decoration: line-through; font-size: 32px; font-weight: 700; }
171
+ .main-price { font-size: 48px; font-weight: 800; color: #111; }
172
+ .fees { color: #777; font-size: 28px; }
173
+
174
+ .alert-red { color: #d54a4a; font-size: 28px; margin-top: 8px; }
175
+ .check-row { color: #138f3d; font-size: 30px; display: flex; align-items: center; gap: 12px; margin-top: 8px; }
176
+
177
+ /* safe area bar */
178
+ .safe-bar {
179
+ position: absolute;
180
+ left: 0; right: 0; bottom: 0;
181
+ height: 96px;
182
+ background: #000;
183
+ border-radius: 24px 24px 0 0;
184
+ margin: 0 360px;
185
+ }
186
+
187
+ /* SVG helpers */
188
+ svg { display: inline-block; }
189
+ </style>
190
+ </head>
191
+ <body>
192
+ <div id="render-target">
193
+
194
+ <!-- Top Header -->
195
+ <div class="top-header">
196
+ <div class="status-row">
197
+ <div class="status-left">
198
+ <span>7:49</span>
199
+ <!-- Sun icon -->
200
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff">
201
+ <circle cx="12" cy="12" r="4" fill="#fff"/>
202
+ <path d="M12 2v3M12 19v3M2 12h3M19 12h3M4.2 4.2l2.1 2.1M17.7 17.7l2.1 2.1M4.2 19.8l2.1-2.1M17.7 6.3l2.1-2.1" stroke="#fff" stroke-width="2"/>
203
+ </svg>
204
+ </div>
205
+ <div class="status-right">
206
+ <!-- WiFi -->
207
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
208
+ <path d="M2 8c5-4 15-4 20 0"/>
209
+ <path d="M5 12c3-3 11-3 14 0"/>
210
+ <path d="M8 16c2-2 6-2 8 0"/>
211
+ <circle cx="12" cy="19" r="1.5" fill="#fff"/>
212
+ </svg>
213
+ <!-- Battery -->
214
+ <svg width="36" height="34" viewBox="0 0 26 18" fill="none" stroke="#fff" stroke-width="2">
215
+ <rect x="2" y="3" width="18" height="12" rx="2"></rect>
216
+ <rect x="4" y="5" width="10" height="8" rx="1" fill="#fff"></rect>
217
+ <rect x="21" y="6" width="3" height="6" rx="1" fill="#fff" stroke="none"></rect>
218
+ </svg>
219
+ </div>
220
+ </div>
221
+
222
+ <!-- Search pill -->
223
+ <div class="search-pill">
224
+ <!-- Back arrow -->
225
+ <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="3">
226
+ <path d="M15 6l-6 6 6 6"/>
227
+ </svg>
228
+ <span>Berlin · <span class="muted">Oct 18 - Oct 22</span></span>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Toolbar -->
233
+ <div class="toolbar">
234
+ <div class="tool-item">
235
+ <!-- Sort icon (up/down) -->
236
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2">
237
+ <path d="M6 4l-3 3h6zM6 20l3-3H3zM12 6h9M12 18h9"/>
238
+ </svg>
239
+ <span>Sort</span>
240
+ </div>
241
+ <div class="tool-item">
242
+ <!-- Filter sliders -->
243
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2">
244
+ <circle cx="7" cy="7" r="2" fill="#333"></circle>
245
+ <path d="M3 7h4M9 7h12M3 17h10M15 17h6"/>
246
+ <circle cx="13" cy="17" r="2" fill="#333"></circle>
247
+ </svg>
248
+ <span>Filter</span>
249
+ </div>
250
+ <div class="tool-item">
251
+ <!-- Map icon -->
252
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2">
253
+ <path d="M3 6l6-2 6 2 6-2v14l-6 2-6-2-6 2zM9 4v14M15 6v14"/>
254
+ </svg>
255
+ <span>Map</span>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Content -->
260
+ <div class="content">
261
+
262
+ <!-- Card 1 -->
263
+ <div class="hotel-card">
264
+ <div class="img-box">[IMG: Hotel room photo]</div>
265
+ <div class="hotel-info">
266
+ <div class="location">
267
+ <!-- pin icon -->
268
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#555">
269
+ <path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/>
270
+ </svg>
271
+ <span>Reinickendorf · 4 miles from center</span>
272
+ </div>
273
+ <div class="subtle">Bed in dorm: 1 bed</div>
274
+
275
+ <div class="price-block">
276
+ <div class="price-title">Price for 4 nights, 1 adult</div>
277
+ <div class="main-price">€ 72</div>
278
+ <div class="fees">Includes taxes and fees</div>
279
+ <div class="alert-red">Only 3 left at this price on Booking.com</div>
280
+ <div class="check-row">
281
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#138f3d">
282
+ <path d="M20 6l-11 11-5-5" stroke="#138f3d" stroke-width="3" fill="none"/>
283
+ </svg>
284
+ <span>Free cancellation</span>
285
+ </div>
286
+ </div>
287
+ </div>
288
+ </div>
289
+
290
+ <!-- Card 2 -->
291
+ <div class="hotel-card">
292
+ <div class="img-box">[IMG: Hotel room photo]</div>
293
+ <div class="hotel-info">
294
+ <div class="title">Park Plaza Berlin Kudamm</div>
295
+ <div class="stars">
296
+ <!-- 4 stars + thumbs -->
297
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400"><path d="M12 17l-5.2 3 1.6-5.9L3 9.8l6-.5L12 4l3 5.3 6 .5-5.4 4.3 1.6 5.9z"/></svg>
298
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400"><path d="M12 17l-5.2 3 1.6-5.9L3 9.8l6-.5L12 4l3 5.3 6 .5-5.4 4.3 1.6 5.9z"/></svg>
299
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400"><path d="M12 17l-5.2 3 1.6-5.9L3 9.8l6-.5L12 4l3 5.3 6 .5-5.4 4.3 1.6 5.9z"/></svg>
300
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400"><path d="M12 17l-5.2 3 1.6-5.9L3 9.8l6-.5L12 4l3 5.3 6 .5-5.4 4.3 1.6 5.9z"/></svg>
301
+ <!-- thumbs up -->
302
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400">
303
+ <path d="M9 11V5l5-3v7h6l-1 9H9l1-8zM4 11h4v9H4z"/>
304
+ </svg>
305
+ </div>
306
+ <span class="badge-blue">Genius</span>
307
+
308
+ <div class="rating-line">
309
+ <span class="score">7.8</span>
310
+ <span>Good · 4462 reviews</span>
311
+ </div>
312
+
313
+ <div class="location">
314
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#555">
315
+ <path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/>
316
+ </svg>
317
+ <span>Charlottenburg-Wilmersdorf · 2.2 miles from center</span>
318
+ </div>
319
+
320
+ <div class="sustainable">
321
+ <div class="leaf-icons">
322
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#2c7a3f"><path d="M12 2c5 3 8 7 8 11 0 5-4 9-8 9S4 18 4 13C4 8 7 5 12 2z"/></svg>
323
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#2c7a3f"><path d="M12 2c5 3 8 7 8 11 0 5-4 9-8 9S4 18 4 13C4 8 7 5 12 2z"/></svg>
324
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#2c7a3f"><path d="M12 2c5 3 8 7 8 11 0 5-4 9-8 9S4 18 4 13C4 8 7 5 12 2z"/></svg>
325
+ </div>
326
+ <span>Travel Sustainable</span>
327
+ </div>
328
+
329
+ <div class="badge-green">Mobile-only price</div>
330
+
331
+ <div class="subtle">Hotel room: 2 beds</div>
332
+
333
+ <div class="price-block">
334
+ <div class="price-title">Price for 4 nights, 1 adult</div>
335
+ <div class="price-row">
336
+ <div class="old-price">€ 716</div>
337
+ <div class="main-price">€ 580</div>
338
+ </div>
339
+ <div class="fees">+€ 29 taxes and charges</div>
340
+ <div class="check-row">
341
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#138f3d">
342
+ <path d="M20 6l-11 11-5-5" stroke="#138f3d" stroke-width="3" fill="none"/>
343
+ </svg>
344
+ <span>Free cancellation</span>
345
+ </div>
346
+ <div class="check-row">
347
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#138f3d">
348
+ <path d="M20 6l-11 11-5-5" stroke="#138f3d" stroke-width="3" fill="none"/>
349
+ </svg>
350
+ <span>No prepayment needed</span>
351
+ </div>
352
+ </div>
353
+ </div>
354
+ </div>
355
+
356
+ <!-- Card 3 -->
357
+ <div class="hotel-card">
358
+ <div class="img-box">[IMG: Hotel room photo]</div>
359
+ <div class="hotel-info">
360
+ <div class="title">Park Plaza Berlin</div>
361
+ <div class="stars">
362
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400"><path d="M12 17l-5.2 3 1.6-5.9L3 9.8l6-.5L12 4l3 5.3 6 .5-5.4 4.3 1.6 5.9z"/></svg>
363
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400"><path d="M12 17l-5.2 3 1.6-5.9L3 9.8l6-.5L12 4l3 5.3 6 .5-5.4 4.3 1.6 5.9z"/></svg>
364
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400"><path d="M12 17l-5.2 3 1.6-5.9L3 9.8l6-.5L12 4l3 5.3 6 .5-5.4 4.3 1.6 5.9z"/></svg>
365
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400"><path d="M12 17l-5.2 3 1.6-5.9L3 9.8l6-.5L12 4l3 5.3 6 .5-5.4 4.3 1.6 5.9z"/></svg>
366
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#f4b400">
367
+ <path d="M9 11V5l5-3v7h6l-1 9H9l1-8zM4 11h4v9H4z"/>
368
+ </svg>
369
+ </div>
370
+ <span class="badge-blue">Genius</span>
371
+
372
+ <div class="rating-line">
373
+ <span class="score">7.8</span>
374
+ <span>Good · 5311 reviews</span>
375
+ </div>
376
+
377
+ <div class="location">
378
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#555">
379
+ <path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/>
380
+ </svg>
381
+ <span>Charlottenburg-Wilmersdorf · 2.5 miles from center</span>
382
+ </div>
383
+
384
+ <div class="sustainable">
385
+ <div class="leaf-icons">
386
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#2c7a3f"><path d="M12 2c5 3 8 7 8 11 0 5-4 9-8 9S4 18 4 13C4 8 7 5 12 2z"/></svg>
387
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#2c7a3f"><path d="M12 2c5 3 8 7 8 11 0 5-4 9-8 9S4 18 4 13C4 8 7 5 12 2z"/></svg>
388
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#2c7a3f"><path d="M12 2c5 3 8 7 8 11 0 5-4 9-8 9S4 18 4 13C4 8 7 5 12 2z"/></svg>
389
+ </div>
390
+ <span>Travel Sustainable</span>
391
+ </div>
392
+
393
+ <div class="badge-green">Mobile-only price</div>
394
+
395
+ <div class="subtle">Hotel room: 1 bed</div>
396
+
397
+ <div class="price-block">
398
+ <div class="price-title">Price for 4 nights, 1 adult</div>
399
+ <div class="price-row">
400
+ <div class="old-price">€ 690</div>
401
+ <div class="main-price">€ 560</div>
402
+ </div>
403
+ <div class="fees">+€ 29 taxes and charges</div>
404
+ </div>
405
+ </div>
406
+ </div>
407
+
408
+ </div>
409
+
410
+ <!-- Safe area bar -->
411
+ <div class="safe-bar"></div>
412
+ </div>
413
+ </body>
414
+ </html>
code/3480/3480_3.html ADDED
@@ -0,0 +1,390 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Hotel Detail UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ * { box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
10
+ #render-target {
11
+ width: 1080px;
12
+ height: 2400px;
13
+ position: relative;
14
+ overflow: hidden;
15
+ background: #ffffff;
16
+ }
17
+
18
+ /* Status + Header */
19
+ .appbar {
20
+ position: relative;
21
+ width: 100%;
22
+ background: #0a4c8b; /* deep blue */
23
+ color: #fff;
24
+ }
25
+ .status-bar {
26
+ height: 90px;
27
+ padding: 0 32px;
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: space-between;
31
+ font-weight: 600;
32
+ font-size: 36px;
33
+ opacity: 0.95;
34
+ }
35
+ .status-right {
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 24px;
39
+ }
40
+ .header {
41
+ height: 140px;
42
+ padding: 0 32px;
43
+ display: flex;
44
+ align-items: center;
45
+ justify-content: space-between;
46
+ }
47
+ .header-left {
48
+ display: flex;
49
+ align-items: center;
50
+ gap: 28px;
51
+ }
52
+ .header-title {
53
+ font-size: 44px;
54
+ font-weight: 700;
55
+ white-space: nowrap;
56
+ }
57
+ .header-right {
58
+ display: flex;
59
+ align-items: center;
60
+ gap: 36px;
61
+ }
62
+ .icon-btn {
63
+ width: 56px;
64
+ height: 56px;
65
+ }
66
+
67
+ /* Content */
68
+ .content {
69
+ background: #f6f7f9;
70
+ padding-top: 20px;
71
+ border-top: 6px solid #e5e7ea;
72
+ }
73
+ .section {
74
+ padding: 0 36px;
75
+ }
76
+ .card {
77
+ background: #fff;
78
+ border: 1px solid #e3e6ea;
79
+ border-radius: 12px;
80
+ box-shadow: 0 2px 0 rgba(0,0,0,0.03);
81
+ }
82
+
83
+ .map-card {
84
+ margin-top: 24px;
85
+ padding: 24px;
86
+ }
87
+ .img-placeholder {
88
+ width: 100%;
89
+ height: 360px;
90
+ background: #E0E0E0;
91
+ border: 1px solid #BDBDBD;
92
+ border-radius: 8px;
93
+ display: flex;
94
+ align-items: center;
95
+ justify-content: center;
96
+ color: #757575;
97
+ font-size: 32px;
98
+ font-weight: 600;
99
+ }
100
+ .address {
101
+ padding: 24px 36px 26px 36px;
102
+ color: #424242;
103
+ font-size: 32px;
104
+ line-height: 1.45;
105
+ border-top: 1px solid #efefef;
106
+ }
107
+
108
+ /* Green notice */
109
+ .notice {
110
+ margin: 20px 36px;
111
+ background: #eaf7ec;
112
+ border: 1px solid #d6ead8;
113
+ border-radius: 12px;
114
+ padding: 28px;
115
+ position: relative;
116
+ }
117
+ .notice-top {
118
+ display: flex;
119
+ align-items: center;
120
+ justify-content: space-between;
121
+ margin-bottom: 16px;
122
+ }
123
+ .notice-title {
124
+ display: flex;
125
+ align-items: center;
126
+ gap: 18px;
127
+ font-size: 36px;
128
+ font-weight: 800;
129
+ color: #168f3f;
130
+ }
131
+ .notice-desc {
132
+ font-size: 32px;
133
+ color: #222;
134
+ margin: 10px 0 26px 66px; /* indent under icon */
135
+ }
136
+ .outline-btn {
137
+ display: inline-flex;
138
+ align-items: center;
139
+ justify-content: center;
140
+ height: 98px;
141
+ padding: 0 40px;
142
+ border: 2px solid #0a64b1;
143
+ color: #0a64b1;
144
+ border-radius: 12px;
145
+ font-size: 36px;
146
+ font-weight: 700;
147
+ margin-left: 66px; /* align with notice text */
148
+ background: #fff;
149
+ }
150
+
151
+ /* Rating summary */
152
+ .rating-section {
153
+ margin: 24px 36px;
154
+ background: #fff;
155
+ border: 1px solid #e3e6ea;
156
+ border-radius: 12px;
157
+ padding: 28px;
158
+ }
159
+ .rating-header {
160
+ display: flex;
161
+ align-items: center;
162
+ gap: 22px;
163
+ margin-bottom: 8px;
164
+ }
165
+ .rating-pill {
166
+ background: #0a4c8b;
167
+ color: #fff;
168
+ border-radius: 12px;
169
+ padding: 12px 16px;
170
+ font-size: 36px;
171
+ font-weight: 800;
172
+ min-width: 110px;
173
+ text-align: center;
174
+ }
175
+ .rating-title {
176
+ font-size: 38px;
177
+ font-weight: 800;
178
+ color: #1d1d1d;
179
+ }
180
+ .rating-sub {
181
+ font-size: 30px;
182
+ color: #6b6f75;
183
+ margin-bottom: 26px;
184
+ }
185
+ .divider {
186
+ height: 2px;
187
+ background: #e9ecef;
188
+ margin: 12px 0 24px 0;
189
+ }
190
+
191
+ .score-row {
192
+ margin: 18px 0;
193
+ }
194
+ .score-top {
195
+ display: flex;
196
+ align-items: center;
197
+ justify-content: space-between;
198
+ font-size: 34px;
199
+ color: #2a2a2a;
200
+ margin-bottom: 12px;
201
+ }
202
+ .progress-track {
203
+ width: 100%;
204
+ height: 18px;
205
+ background: #e9e9ed;
206
+ border-radius: 10px;
207
+ overflow: hidden;
208
+ }
209
+ .progress-bar {
210
+ height: 100%;
211
+ background: #0a4c8b;
212
+ border-radius: 10px 0 0 10px;
213
+ width: 78%;
214
+ }
215
+
216
+ .link-row {
217
+ margin-top: 26px;
218
+ color: #0a64b1;
219
+ font-size: 34px;
220
+ font-weight: 600;
221
+ display: inline-flex;
222
+ align-items: center;
223
+ gap: 12px;
224
+ cursor: default;
225
+ }
226
+
227
+ /* Bottom CTA */
228
+ .bottom-cta {
229
+ position: absolute;
230
+ left: 0;
231
+ right: 0;
232
+ bottom: 84px;
233
+ padding: 0 12px;
234
+ }
235
+ .cta-button {
236
+ height: 130px;
237
+ background: #0b71c8;
238
+ color: #fff;
239
+ font-size: 40px;
240
+ font-weight: 800;
241
+ border-radius: 12px;
242
+ display: flex;
243
+ align-items: center;
244
+ justify-content: center;
245
+ box-shadow: 0 -2px 0 rgba(0,0,0,0.06);
246
+ }
247
+ .home-indicator {
248
+ position: absolute;
249
+ left: 50%;
250
+ transform: translateX(-50%);
251
+ bottom: 20px;
252
+ width: 240px;
253
+ height: 16px;
254
+ background: #cfcfcf;
255
+ border-radius: 10px;
256
+ }
257
+
258
+ /* Small helpers */
259
+ .muted { color: #6b6f75; }
260
+ .close-btn { width: 52px; height: 52px; }
261
+ </style>
262
+ </head>
263
+ <body>
264
+ <div id="render-target">
265
+ <div class="appbar">
266
+ <div class="status-bar">
267
+ <div>7:51</div>
268
+ <div class="status-right">
269
+ <!-- Wifi icon -->
270
+ <svg width="52" height="52" viewBox="0 0 32 32">
271
+ <path d="M4 12c10-8 20-8 28 0" stroke="#fff" stroke-width="2.6" fill="none" stroke-linecap="round"/>
272
+ <path d="M8 16c6-5 12-5 20 0" stroke="#fff" stroke-width="2.6" fill="none" stroke-linecap="round" opacity="0.8"/>
273
+ <path d="M12 20c4-3 8-3 12 0" stroke="#fff" stroke-width="2.6" fill="none" stroke-linecap="round" opacity="0.7"/>
274
+ <circle cx="20" cy="24" r="2.5" fill="#fff"/>
275
+ </svg>
276
+ <!-- Battery icon -->
277
+ <svg width="52" height="52" viewBox="0 0 36 36">
278
+ <rect x="4" y="10" width="24" height="16" rx="3" ry="3" fill="none" stroke="#fff" stroke-width="2.8"/>
279
+ <rect x="6.5" y="12.5" width="19" height="11" rx="2" fill="#fff"/>
280
+ <rect x="29" y="14" width="3" height="8" rx="1.5" fill="#fff"/>
281
+ </svg>
282
+ </div>
283
+ </div>
284
+ <div class="header">
285
+ <div class="header-left">
286
+ <!-- Back arrow -->
287
+ <svg class="icon-btn" viewBox="0 0 36 36">
288
+ <path d="M22 8 L10 18 L22 28" stroke="#fff" stroke-width="3.6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
289
+ <path d="M10 18 H32" stroke="#fff" stroke-width="3.6" fill="none" stroke-linecap="round"/>
290
+ </svg>
291
+ <div class="header-title">Park Plaza Berlin Kudamm</div>
292
+ </div>
293
+ <div class="header-right">
294
+ <!-- Heart outline -->
295
+ <svg class="icon-btn" viewBox="0 0 36 36">
296
+ <path d="M18 30 L8 21 C4 17 4 11 8 8 C11 6 14 7 16 10 C18 7 22 6 25 8 C30 11 30 17 26 21 L18 30 Z" fill="none" stroke="#fff" stroke-width="2.8" stroke-linejoin="round"/>
297
+ </svg>
298
+ <!-- Share icon -->
299
+ <svg class="icon-btn" viewBox="0 0 36 36">
300
+ <circle cx="9" cy="18" r="3.5" fill="none" stroke="#fff" stroke-width="2.6"/>
301
+ <circle cx="27" cy="10" r="3.5" fill="none" stroke="#fff" stroke-width="2.6"/>
302
+ <circle cx="27" cy="26" r="3.5" fill="none" stroke="#fff" stroke-width="2.6"/>
303
+ <path d="M12 18 L23 12 M12 18 L23 24" stroke="#fff" stroke-width="2.6" fill="none" stroke-linecap="round"/>
304
+ </svg>
305
+ </div>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="content">
310
+ <div class="section card map-card">
311
+ <div class="img-placeholder">[IMG: Google Map - Hotel location]</div>
312
+ </div>
313
+
314
+ <div class="address">
315
+ Joachimstaler Str. 29, 10719 Berlin, Germany • 1000 feet from subway/metro station (U Kurfürstendamm) • 2.2 miles from downtown/center
316
+ </div>
317
+
318
+ <div class="notice">
319
+ <div class="notice-top">
320
+ <div class="notice-title">
321
+ <!-- Clock icon -->
322
+ <svg width="52" height="52" viewBox="0 0 36 36">
323
+ <circle cx="18" cy="18" r="14" fill="none" stroke="#168f3f" stroke-width="3"/>
324
+ <path d="M18 9 V18 L25 22" stroke="#168f3f" stroke-width="3" fill="none" stroke-linecap="round"/>
325
+ </svg>
326
+ <span>You have an unfinished booking</span>
327
+ </div>
328
+ <!-- Close X -->
329
+ <svg class="close-btn" viewBox="0 0 36 36">
330
+ <path d="M10 10 L26 26 M26 10 L10 26" stroke="#7a7f86" stroke-width="3.2" stroke-linecap="round"/>
331
+ </svg>
332
+ </div>
333
+ <div class="notice-desc">1 selection 4 nights for € 579.96</div>
334
+ <button class="outline-btn">Book now</button>
335
+ </div>
336
+
337
+ <div class="rating-section">
338
+ <div class="rating-header">
339
+ <div class="rating-pill">7.8</div>
340
+ <div class="rating-title">Good</div>
341
+ </div>
342
+ <div class="rating-sub">See all 4462 reviews</div>
343
+ <div class="divider"></div>
344
+
345
+ <div class="score-row">
346
+ <div class="score-top">
347
+ <div>Cleanliness</div>
348
+ <div class="muted">7.9</div>
349
+ </div>
350
+ <div class="progress-track">
351
+ <div class="progress-bar" style="width:79%;"></div>
352
+ </div>
353
+ </div>
354
+
355
+ <div class="score-row">
356
+ <div class="score-top">
357
+ <div>Comfort</div>
358
+ <div class="muted">7.9</div>
359
+ </div>
360
+ <div class="progress-track">
361
+ <div class="progress-bar" style="width:79%;"></div>
362
+ </div>
363
+ </div>
364
+
365
+ <div class="score-row">
366
+ <div class="score-top">
367
+ <div>Facilities</div>
368
+ <div class="muted">7.8</div>
369
+ </div>
370
+ <div class="progress-track">
371
+ <div class="progress-bar" style="width:78%;"></div>
372
+ </div>
373
+ </div>
374
+
375
+ <div class="link-row">
376
+ Show summary
377
+ <svg width="36" height="36" viewBox="0 0 36 36">
378
+ <path d="M10 15 L18 23 L26 15" stroke="#0a64b1" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
379
+ </svg>
380
+ </div>
381
+ </div>
382
+ </div>
383
+
384
+ <div class="bottom-cta">
385
+ <div class="cta-button">See room options</div>
386
+ </div>
387
+ <div class="home-indicator"></div>
388
+ </div>
389
+ </body>
390
+ </html>
code/3480/3480_4.html ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Hotel Reviews UI</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width:1080px; height:2400px;
11
+ position:relative; overflow:hidden;
12
+ background:#ffffff;
13
+ }
14
+
15
+ /* Top app bar */
16
+ .status-bar {
17
+ position:absolute; top:16px; left:32px; right:32px;
18
+ height:60px; color:#fff; display:flex; align-items:center; justify-content:space-between;
19
+ font-weight:600; font-size:36px;
20
+ pointer-events:none;
21
+ }
22
+ .status-icons { display:flex; align-items:center; gap:24px; font-size:32px; }
23
+ .sun-icon { display:inline-block; width:32px; height:32px; }
24
+ .sun-icon svg { width:32px; height:32px; }
25
+ .wifi-icon { font-size:34px; }
26
+ .battery {
27
+ width:72px; height:34px; border:4px solid #fff; border-radius:6px; position:relative;
28
+ }
29
+ .battery::after {
30
+ content:""; position:absolute; right:-10px; top:8px; width:10px; height:18px; background:#fff; border-radius:2px;
31
+ }
32
+ .battery .level { background:#fff; width:46px; height:22px; margin:6px; }
33
+
34
+ .appbar {
35
+ position:absolute; top:0; left:0; right:0; height:220px;
36
+ background:#0b4ea2; color:#fff;
37
+ box-sizing:border-box;
38
+ padding-top:80px;
39
+ }
40
+ .appbar-inner {
41
+ display:flex; align-items:center; justify-content:center; position:relative; padding:0 32px;
42
+ }
43
+ .appbar-title { font-size:44px; font-weight:700; text-align:center; }
44
+ .appbar-left, .appbar-right {
45
+ position:absolute; top:0; height:64px; display:flex; align-items:center;
46
+ }
47
+ .appbar-left { left:16px; }
48
+ .appbar-right { right:20px; gap:28px; }
49
+
50
+ .icon-btn { width:64px; height:64px; display:flex; align-items:center; justify-content:center; }
51
+ .icon-btn svg { width:48px; height:48px; }
52
+ .heart-icon path { stroke:#fff; stroke-width:6; fill:none; stroke-linecap:round; stroke-linejoin:round; }
53
+ .share-icon circle { fill:#fff; }
54
+ .share-icon line { stroke:#fff; stroke-width:6; stroke-linecap:round; }
55
+
56
+ /* Content */
57
+ .content {
58
+ position:absolute; top:220px; left:0; right:0; bottom:0;
59
+ padding:48px 56px 220px 56px; box-sizing:border-box; overflow-y:auto;
60
+ }
61
+ .link { color:#1976D2; font-size:38px; font-weight:700; display:inline-flex; align-items:center; gap:12px; }
62
+ .chev svg { width:30px; height:30px; }
63
+ h2.section-title { margin:36px 0 24px; font-size:56px; font-weight:800; color:#202020; }
64
+
65
+ .review {
66
+ padding:24px 0 36px; border-bottom:2px solid #e6e6e6;
67
+ }
68
+ .review:last-child { border-bottom:none; }
69
+ .head {
70
+ display:flex; align-items:flex-start; gap:24px; margin-bottom:10px;
71
+ }
72
+ .avatar {
73
+ width:96px; height:96px; border-radius:50%;
74
+ background:#E0E0E0; border:1px solid #BDBDBD;
75
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:22px;
76
+ flex-shrink:0;
77
+ }
78
+ .name-role { font-size:40px; font-weight:800; color:#222; }
79
+ .country-row { display:flex; align-items:center; gap:16px; margin-top:6px; color:#666; font-size:34px; }
80
+ .flag {
81
+ width:72px; height:44px; background:#E0E0E0; border:1px solid #BDBDBD;
82
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:18px;
83
+ }
84
+ .text { margin-top:18px; font-size:38px; line-height:1.45; color:#333; }
85
+
86
+ /* CTA */
87
+ .cta {
88
+ position:absolute; left:56px; right:56px; bottom:140px;
89
+ height:120px; background:#0b4ea2; color:#fff; border-radius:14px;
90
+ display:flex; align-items:center; justify-content:center; font-size:44px; font-weight:700;
91
+ box-shadow:0 4px 10px rgba(0,0,0,0.15);
92
+ }
93
+ .home-indicator {
94
+ position:absolute; left:50%; transform:translateX(-50%);
95
+ bottom:56px; width:280px; height:12px; background:#000; opacity:.20; border-radius:8px;
96
+ }
97
+ </style>
98
+ </head>
99
+ <body>
100
+ <div id="render-target">
101
+
102
+ <!-- Status bar -->
103
+ <div class="status-bar">
104
+ <div>8:03</div>
105
+ <div class="status-icons">
106
+ <div class="sun-icon">
107
+ <svg viewBox="0 0 24 24">
108
+ <circle cx="12" cy="12" r="4" fill="#fff"></circle>
109
+ <g stroke="#fff" stroke-width="2">
110
+ <line x1="12" y1="1" x2="12" y2="5"></line>
111
+ <line x1="12" y1="19" x2="12" y2="23"></line>
112
+ <line x1="1" y1="12" x2="5" y2="12"></line>
113
+ <line x1="19" y1="12" x2="23" y2="12"></line>
114
+ <line x1="4" y1="4" x2="7" y2="7"></line>
115
+ <line x1="17" y1="17" x2="20" y2="20"></line>
116
+ <line x1="4" y1="20" x2="7" y2="17"></line>
117
+ <line x1="17" y1="7" x2="20" y2="4"></line>
118
+ </g>
119
+ </svg>
120
+ </div>
121
+ <div class="wifi-icon">📶</div>
122
+ <div class="battery"><div class="level"></div></div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- App bar -->
127
+ <div class="appbar">
128
+ <div class="appbar-inner">
129
+ <div class="appbar-left">
130
+ <div class="icon-btn">
131
+ <svg viewBox="0 0 48 48">
132
+ <path d="M28 8 L12 24 L28 40" stroke="#fff" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
133
+ </svg>
134
+ </div>
135
+ </div>
136
+ <div class="appbar-title">Park Plaza Berlin Kudamm</div>
137
+ <div class="appbar-right">
138
+ <div class="icon-btn heart-icon">
139
+ <svg viewBox="0 0 48 48">
140
+ <path d="M24 40 L10 26 C6 22 6 16 10 12 C14 8 20 9 24 13 C28 9 34 8 38 12 C42 16 42 22 38 26 L24 40"></path>
141
+ </svg>
142
+ </div>
143
+ <div class="icon-btn share-icon">
144
+ <svg viewBox="0 0 48 48">
145
+ <circle cx="10" cy="24" r="5"></circle>
146
+ <circle cx="38" cy="12" r="5"></circle>
147
+ <circle cx="38" cy="36" r="5"></circle>
148
+ <line x1="14" y1="23" x2="33" y2="14"></line>
149
+ <line x1="14" y1="25" x2="33" y2="34"></line>
150
+ </svg>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Content -->
157
+ <div class="content">
158
+ <div class="link">Show summary
159
+ <span class="chev">
160
+ <svg viewBox="0 0 24 24">
161
+ <polyline points="5,9 12,16 19,9" stroke="#1976D2" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></polyline>
162
+ </svg>
163
+ </span>
164
+ </div>
165
+
166
+ <h2 class="section-title">What guests loved the most:</h2>
167
+
168
+ <!-- Review 1 -->
169
+ <div class="review">
170
+ <div class="head">
171
+ <div class="avatar">[IMG: Avatar]</div>
172
+ <div>
173
+ <div class="name-role">Armin – Family</div>
174
+ <div class="country-row">
175
+ <div class="flag">[IMG: Flag]</div>
176
+ <div>Bosnia and Herzegovina</div>
177
+ </div>
178
+ </div>
179
+ </div>
180
+ <div class="text">"Room, super large room with a lot of space. The receptionist team was great. Big U and S Bahn station within 10 minutes walk"</div>
181
+ </div>
182
+
183
+ <!-- Review 2 -->
184
+ <div class="review">
185
+ <div class="head">
186
+ <div class="avatar" style="background:#E0E0E0;">[IMG: Avatar]</div>
187
+ <div>
188
+ <div class="name-role">Itay – Family</div>
189
+ <div class="country-row">
190
+ <div class="flag">[IMG: Flag]</div>
191
+ <div>Israel</div>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ <div class="text">"Such a nice staff! Clean and close to everything! I enjoyed it so much!"</div>
196
+ </div>
197
+
198
+ <!-- Review 3 -->
199
+ <div class="review">
200
+ <div class="head">
201
+ <div class="avatar">[IMG: Avatar]</div>
202
+ <div>
203
+ <div class="name-role">Anna – Family</div>
204
+ <div class="country-row">
205
+ <div class="flag">[IMG: Flag]</div>
206
+ <div>United Kingdom</div>
207
+ </div>
208
+ </div>
209
+ </div>
210
+ <div class="text">"Staff were friendly and location was excellent for zoo, shopping and station. Comfortable beds"</div>
211
+ </div>
212
+
213
+ <!-- Review 4 -->
214
+ <div class="review">
215
+ <div class="head">
216
+ <div class="avatar">[IMG: Avatar]</div>
217
+ <div>
218
+ <div class="name-role">Piotr – Solo traveler</div>
219
+ <div class="country-row">
220
+ <div class="flag">[IMG: Flag]</div>
221
+ <div>Germany</div>
222
+ </div>
223
+ </div>
224
+ </div>
225
+ <div class="text">"It was better than expected! Having seen other reviews, I wasn't too sure how it'll turn out but there's nothing I could complain about. The room was clean, all the facilities were present and the staff very pleasant. Also, for the price - perfect."</div>
226
+ </div>
227
+
228
+ </div>
229
+
230
+ <!-- CTA -->
231
+ <div class="cta">See room options</div>
232
+
233
+ <!-- Home indicator -->
234
+ <div class="home-indicator"></div>
235
+
236
+ </div>
237
+ </body>
238
+ </html>
code/3480/3480_5.html ADDED
@@ -0,0 +1,324 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Park Plaza Berlin Kudamm - UI Mock</title>
7
+ <style>
8
+ * { box-sizing: border-box; }
9
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif; }
10
+ #render-target {
11
+ width: 1080px;
12
+ height: 2400px;
13
+ position: relative;
14
+ overflow: hidden;
15
+ background: #ffffff;
16
+ }
17
+
18
+ /* Top bars */
19
+ .top-area { position: absolute; top: 0; left: 0; width: 100%; background: #0a4da2; }
20
+ .status-bar {
21
+ height: 110px;
22
+ color: #fff;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 36px;
26
+ font-size: 32px;
27
+ justify-content: space-between;
28
+ }
29
+ .status-left { display: flex; align-items: center; gap: 18px; }
30
+ .status-right { display: flex; align-items: center; gap: 22px; }
31
+ .header {
32
+ height: 170px;
33
+ display: flex;
34
+ align-items: center;
35
+ padding: 0 32px;
36
+ color: #fff;
37
+ }
38
+ .header .title {
39
+ font-size: 44px;
40
+ font-weight: 600;
41
+ flex: 1;
42
+ padding-left: 22px;
43
+ }
44
+ .header .icon-btn { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; }
45
+
46
+ /* Content */
47
+ .content {
48
+ position: absolute;
49
+ top: 280px; /* status + header */
50
+ left: 0;
51
+ right: 0;
52
+ bottom: 0;
53
+ overflow: hidden;
54
+ }
55
+ .section { padding: 0 36px; }
56
+ .q-list { background: #fff; }
57
+ .q-item {
58
+ display: flex;
59
+ align-items: center;
60
+ padding: 36px 0;
61
+ border-top: 1px solid #e9e9e9;
62
+ }
63
+ .q-item:first-child { border-top: none; }
64
+ .q-icon { width: 52px; height: 52px; margin-right: 26px; }
65
+ .q-text { font-size: 38px; color: #222; flex: 1; }
66
+ .chev { width: 40px; height: 40px; }
67
+ .link {
68
+ color: #1672d6;
69
+ font-size: 36px;
70
+ font-weight: 600;
71
+ padding: 36px 0 18px 0;
72
+ }
73
+
74
+ .ask-btn {
75
+ margin: 20px 36px 8px 36px;
76
+ height: 120px;
77
+ border: 2px solid #1672d6;
78
+ border-radius: 12px;
79
+ color: #1672d6;
80
+ display: flex;
81
+ align-items: center;
82
+ justify-content: center;
83
+ gap: 20px;
84
+ font-size: 40px;
85
+ font-weight: 600;
86
+ background: #fff;
87
+ }
88
+ .subnote {
89
+ text-align: center;
90
+ color: #7a7a7a;
91
+ font-size: 30px;
92
+ margin-bottom: 28px;
93
+ }
94
+ .divider {
95
+ height: 22px;
96
+ background: #efefef;
97
+ width: 100%;
98
+ margin: 18px 0 0 0;
99
+ }
100
+
101
+ .section-title {
102
+ font-size: 44px;
103
+ font-weight: 700;
104
+ margin: 36px 0 20px 0;
105
+ color: #222;
106
+ }
107
+ .paragraph {
108
+ font-size: 36px;
109
+ line-height: 1.5;
110
+ color: #333;
111
+ }
112
+
113
+ .card {
114
+ margin: 30px 36px;
115
+ border: 1px solid #dddddd;
116
+ border-radius: 12px;
117
+ background: #ffffff;
118
+ box-shadow: 0 2px 0 rgba(0,0,0,0.04);
119
+ padding: 32px;
120
+ }
121
+ .card-header {
122
+ display: flex;
123
+ align-items: center;
124
+ gap: 22px;
125
+ margin-bottom: 12px;
126
+ }
127
+ .card-title {
128
+ font-size: 40px;
129
+ font-weight: 700;
130
+ color: #222;
131
+ }
132
+ .card-text {
133
+ font-size: 34px;
134
+ color: #555;
135
+ line-height: 1.5;
136
+ margin-top: 10px;
137
+ }
138
+
139
+ .genius {
140
+ padding: 18px 36px 160px 36px; /* leave room for CTA */
141
+ }
142
+ .genius h2 {
143
+ font-size: 46px;
144
+ font-weight: 800;
145
+ margin: 20px 0 10px 0;
146
+ color: #222;
147
+ }
148
+ .genius p {
149
+ font-size: 34px;
150
+ color: #555;
151
+ }
152
+
153
+ /* Bottom CTA */
154
+ .cta {
155
+ position: absolute;
156
+ left: 36px;
157
+ right: 36px;
158
+ bottom: 120px;
159
+ height: 140px;
160
+ background: #0a63b8;
161
+ border-radius: 10px;
162
+ color: #fff;
163
+ display: flex;
164
+ align-items: center;
165
+ justify-content: center;
166
+ font-size: 42px;
167
+ font-weight: 700;
168
+ box-shadow: 0 4px 10px rgba(0,0,0,0.15);
169
+ }
170
+
171
+ /* Gesture bar */
172
+ .gesture {
173
+ position: absolute;
174
+ bottom: 34px;
175
+ left: 50%;
176
+ transform: translateX(-50%);
177
+ width: 420px;
178
+ height: 16px;
179
+ background: #cfcfcf;
180
+ border-radius: 10px;
181
+ }
182
+ </style>
183
+ </head>
184
+ <body>
185
+ <div id="render-target">
186
+
187
+ <!-- Top bars -->
188
+ <div class="top-area">
189
+ <div class="status-bar">
190
+ <div class="status-left">
191
+ <span style="font-weight:700;">8:03</span>
192
+ <!-- Sun icon -->
193
+ <svg width="32" height="32" viewBox="0 0 48 48" fill="none">
194
+ <circle cx="24" cy="24" r="8" stroke="#fff" stroke-width="3"></circle>
195
+ <path d="M24 4v8M24 36v8M4 24h8M36 24h8M9 9l6 6M33 33l6 6M9 39l6-6M33 15l6-6" stroke="#fff" stroke-width="3" stroke-linecap="round"></path>
196
+ </svg>
197
+ </div>
198
+ <div class="status-right">
199
+ <!-- WiFi icon -->
200
+ <svg width="40" height="40" viewBox="0 0 48 48">
201
+ <path d="M8 16c9-8 23-8 32 0M14 22c6-5 14-5 20 0M20 28c3-3 5-3 8 0M24 34a3 3 0 1 0 0 6a3 3 0 0 0 0-6" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round"></path>
202
+ </svg>
203
+ <!-- Battery icon -->
204
+ <svg width="44" height="44" viewBox="0 0 60 40">
205
+ <rect x="2" y="8" width="48" height="24" rx="4" ry="4" stroke="#fff" stroke-width="3" fill="none"></rect>
206
+ <rect x="6" y="12" width="34" height="16" fill="#fff"></rect>
207
+ <rect x="52" y="14" width="6" height="12" rx="2" fill="#fff"></rect>
208
+ </svg>
209
+ </div>
210
+ </div>
211
+
212
+ <div class="header">
213
+ <!-- Back arrow -->
214
+ <div class="icon-btn">
215
+ <svg width="56" height="56" viewBox="0 0 48 48">
216
+ <path d="M28 10L16 24l12 14" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
217
+ </svg>
218
+ </div>
219
+ <div class="title">Park Plaza Berlin Kudamm</div>
220
+ <!-- Heart -->
221
+ <div class="icon-btn">
222
+ <svg width="56" height="56" viewBox="0 0 48 48">
223
+ <path d="M24 40s-14-9-14-18a9 9 0 0 1 16-6a9 9 0 0 1 16 6c0 9-18 18-18 18z" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
224
+ </svg>
225
+ </div>
226
+ <!-- Share -->
227
+ <div class="icon-btn">
228
+ <svg width="56" height="56" viewBox="0 0 48 48">
229
+ <circle cx="10" cy="24" r="4" stroke="#fff" stroke-width="3" fill="none"></circle>
230
+ <circle cx="34" cy="12" r="4" stroke="#fff" stroke-width="3" fill="none"></circle>
231
+ <circle cx="34" cy="36" r="4" stroke="#fff" stroke-width="3" fill="none"></circle>
232
+ <path d="M14 23l16-9M14 25l16 9" stroke="#fff" stroke-width="3" stroke-linecap="round"></path>
233
+ </svg>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Content -->
239
+ <div class="content">
240
+ <div class="section q-list">
241
+ <div class="q-item">
242
+ <div class="q-icon">
243
+ <svg viewBox="0 0 48 48" width="52" height="52">
244
+ <path d="M8 10h24a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H20l-8 6v-6H8a6 6 0 0 1-6-6V16a6 6 0 0 1 6-6z" fill="none" stroke="#6c6c6c" stroke-width="3"></path>
245
+ </svg>
246
+ </div>
247
+ <div class="q-text">Can I book a family room here?</div>
248
+ <div class="chev">
249
+ <svg viewBox="0 0 48 48" width="40" height="40">
250
+ <path d="M18 10l12 14-12 14" fill="none" stroke="#444" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
251
+ </svg>
252
+ </div>
253
+ </div>
254
+
255
+ <div class="q-item">
256
+ <div class="q-icon">
257
+ <svg viewBox="0 0 48 48" width="52" height="52">
258
+ <path d="M8 10h24a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H20l-8 6v-6H8a6 6 0 0 1-6-6V16a6 6 0 0 1 6-6z" fill="none" stroke="#6c6c6c" stroke-width="3"></path>
259
+ </svg>
260
+ </div>
261
+ <div class="q-text">Is there an airport shuttle service?</div>
262
+ <div class="chev">
263
+ <svg viewBox="0 0 48 48" width="40" height="40">
264
+ <path d="M18 10l12 14-12 14" fill="none" stroke="#444" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
265
+ </svg>
266
+ </div>
267
+ </div>
268
+ </div>
269
+
270
+ <div class="section">
271
+ <div class="link">See more questions (1)</div>
272
+ </div>
273
+
274
+ <div class="ask-btn">
275
+ <svg width="48" height="48" viewBox="0 0 48 48">
276
+ <circle cx="24" cy="24" r="20" fill="none" stroke="#1672d6" stroke-width="3"></circle>
277
+ <path d="M18 18c2-6 12-6 12 0c0 4-6 4-6 8" fill="none" stroke="#1672d6" stroke-width="3" stroke-linecap="round"></path>
278
+ <circle cx="24" cy="34" r="2.5" fill="#1672d6"></circle>
279
+ </svg>
280
+ <span>Ask a question</span>
281
+ </div>
282
+ <div class="subnote">Instant answer to most questions</div>
283
+
284
+ <div class="divider"></div>
285
+
286
+ <div class="section">
287
+ <div class="section-title">Description</div>
288
+ <div class="paragraph">
289
+ Park Plaza Berlin Kudamm hotel is 984 feet from the Kurfürstendamm shopping boulevard with its many boutiques and art galleries. It offers free Wi‑Fi, modern interiors and rooms with a flat‑screen TV.
290
+ </div>
291
+ <div class="link">Read full description</div>
292
+ </div>
293
+
294
+ <div class="card">
295
+ <div class="card-header">
296
+ <svg width="54" height="54" viewBox="0 0 48 48">
297
+ <path d="M24 6l14 6v10c0 10-8 16-14 18-6-2-14-8-14-18V12l14-6z" fill="none" stroke="#17a764" stroke-width="3"></path>
298
+ <path d="M16 24l5 5 11-11" fill="none" stroke="#17a764" stroke-width="3" stroke-linecap="round"></path>
299
+ </svg>
300
+ <div class="card-title">Health & hygiene</div>
301
+ </div>
302
+ <div class="card-text">
303
+ This property has taken extra measures to ensure that your safety is their priority
304
+ </div>
305
+ <div class="link" style="padding-top:22px;">See more details</div>
306
+ </div>
307
+
308
+ <div class="divider"></div>
309
+
310
+ <div class="genius">
311
+ <h2>You’re at Genius Level 1</h2>
312
+ <p>Available on select options:</p>
313
+ </div>
314
+ </div>
315
+
316
+ <!-- Bottom CTA -->
317
+ <div class="cta">See room options</div>
318
+
319
+ <!-- Gesture bar -->
320
+ <div class="gesture"></div>
321
+
322
+ </div>
323
+ </body>
324
+ </html>
code/3485/3485_0.html ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Book Viewer Mock</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: "Roboto", Arial, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px;
10
+ position:relative; overflow:hidden;
11
+ background:#101214; /* device chrome dark */
12
+ color:#fff;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar{
17
+ height:100px;
18
+ padding:0 36px;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ color:#eaecef; font-size:38px; letter-spacing:1px;
21
+ }
22
+ .status-icons{ display:flex; align-items:center; gap:26px; }
23
+ .battery{
24
+ display:flex; align-items:center; gap:12px; font-size:34px;
25
+ }
26
+ .battery .cell{
27
+ width:64px; height:30px; border:3px solid #eaecef; border-radius:5px; position:relative;
28
+ }
29
+ .battery .cell::after{
30
+ content:""; position:absolute; right:-10px; top:8px; width:6px; height:14px; background:#eaecef; border-radius:2px;
31
+ }
32
+ .battery .level{
33
+ position:absolute; left:2px; top:2px; height:24px; width:54px; background:#7CFC00; border-radius:2px;
34
+ }
35
+
36
+ /* App bar */
37
+ .app-bar{
38
+ height:140px; background:#2b2f33;
39
+ display:flex; align-items:center; padding:0 24px;
40
+ box-shadow:0 1px 0 rgba(255,255,255,0.06) inset;
41
+ }
42
+ .app-left { width:120px; display:flex; align-items:center; justify-content:center; }
43
+ .title{
44
+ flex:1; color:#e6e9ee; font-weight:600; font-size:42px;
45
+ white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
46
+ }
47
+ .actions{ display:flex; align-items:center; gap:28px; }
48
+ .icon-btn{
49
+ width:84px; height:84px; display:flex; align-items:center; justify-content:center;
50
+ }
51
+
52
+ /* Content */
53
+ .content{
54
+ position:absolute; left:0; right:0; top:240px; bottom:180px; /* leaves space for bottom bar */
55
+ overflow:hidden; background:#111;
56
+ }
57
+ .page-wrap{ position:absolute; inset:0; overflow:auto; }
58
+ .book-cover{
59
+ height:1700px; margin:0 16px; border-left:10px solid #3b3f39;
60
+ background:
61
+ repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 6px),
62
+ #6c745e;
63
+ display:flex; align-items:center; justify-content:center; color:#cfd5c7; font-size:46px; letter-spacing:.5px;
64
+ border-radius:2px;
65
+ }
66
+ .watermark{
67
+ height:280px; margin:0 0 0 0; background:#e7dcb1; color:#6b5e3a;
68
+ display:flex; align-items:center; justify-content:center; font-size:38px;
69
+ }
70
+
71
+ /* Floating edit chip */
72
+ .edit-chip{
73
+ position:absolute; left:40px; bottom:230px;
74
+ display:flex; align-items:center; gap:18px;
75
+ background:rgba(18,18,18,0.92); border:1px solid rgba(255,255,255,0.18);
76
+ color:#e9edf4; padding:20px 30px; border-radius:34px; font-size:40px;
77
+ box-shadow:0 6px 18px rgba(0,0,0,0.35);
78
+ }
79
+
80
+ /* Bottom bar */
81
+ .bottom-bar{
82
+ position:absolute; left:0; right:0; bottom:0; height:180px; background:#0c0d0f;
83
+ display:flex; align-items:center; padding:0 30px; gap:28px; box-shadow:0 -1px 0 rgba(255,255,255,0.06) inset;
84
+ }
85
+ .mini-btn{
86
+ width:124px; height:124px; border-radius:18px; background:#1a1d21;
87
+ display:flex; align-items:center; justify-content:center;
88
+ border:1px solid rgba(255,255,255,0.1);
89
+ }
90
+ .spacer { flex:1; }
91
+ .share-btn{
92
+ background:#2b68ff; color:#fff; font-weight:700; font-size:50px;
93
+ padding:0 46px; height:126px; border-radius:22px; display:flex; align-items:center; gap:22px;
94
+ box-shadow:0 6px 16px rgba(43,104,255,0.45);
95
+ }
96
+ .share-btn .label{ transform:translateY(2px); }
97
+ /* Simple helper for white stroke icons */
98
+ svg{ display:block; }
99
+ </style>
100
+ </head>
101
+ <body>
102
+ <div id="render-target">
103
+
104
+ <!-- Status bar -->
105
+ <div class="status-bar">
106
+ <div>11:40</div>
107
+ <div class="status-icons">
108
+ <!-- small mail, wifi, alert dots as simple circles -->
109
+ <svg width="34" height="34" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#cfd3d8"/></svg>
110
+ <svg width="34" height="34" viewBox="0 0 24 24"><path d="M2 8c5-5 15-5 20 0l-4 4c-3-3-9-3-12 0L2 8zm6 6l4 4 4-4c-2-2-6-2-8 0z" fill="#cfd3d8"/></svg>
111
+ <svg width="34" height="34" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1010 10A10 10 0 0012 2zm1 5v8h-2V7zm0 10v2h-2v-2z" fill="#ffc107"/></svg>
112
+ <div class="battery">
113
+ <div class="cell"><div class="level"></div></div>
114
+ <div>100%</div>
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ <!-- App bar -->
120
+ <div class="app-bar">
121
+ <div class="app-left icon-btn">
122
+ <!-- Back arrow -->
123
+ <svg width="54" height="54" viewBox="0 0 24 24">
124
+ <path d="M15.4 3.4L6.8 12l8.6 8.6L14 22l-10-10 10-10 1.4 1.4z" fill="#ffffff"/>
125
+ </svg>
126
+ </div>
127
+ <div class="title">A_short_history_of_...</div>
128
+ <div class="actions">
129
+ <!-- star outline -->
130
+ <div class="icon-btn">
131
+ <svg width="52" height="52" viewBox="0 0 24 24">
132
+ <path d="M12 2l2.7 5.5 6.1.9-4.4 4.2 1 6-5.4-2.9L6.6 18l1-6-4.4-4.2 6.1-.9L12 2z" fill="none" stroke="#ffffff" stroke-width="1.6"/>
133
+ </svg>
134
+ </div>
135
+ <!-- search -->
136
+ <div class="icon-btn">
137
+ <svg width="52" height="52" viewBox="0 0 24 24">
138
+ <circle cx="11" cy="11" r="6.5" stroke="#ffffff" stroke-width="2" fill="none"/>
139
+ <path d="M16 16l5 5" stroke="#ffffff" stroke-width="2" fill="none" />
140
+ </svg>
141
+ </div>
142
+ <!-- kebab -->
143
+ <div class="icon-btn">
144
+ <svg width="44" height="44" viewBox="0 0 24 24">
145
+ <circle cx="12" cy="5" r="2.2" fill="#ffffff"/>
146
+ <circle cx="12" cy="12" r="2.2" fill="#ffffff"/>
147
+ <circle cx="12" cy="19" r="2.2" fill="#ffffff"/>
148
+ </svg>
149
+ </div>
150
+ </div>
151
+ </div>
152
+
153
+ <!-- Main content -->
154
+ <div class="content">
155
+ <div class="page-wrap">
156
+ <div class="book-cover">[IMG: Green Cloth Book Cover]</div>
157
+ <div class="watermark">[IMG: Library of Congress watermark strip]</div>
158
+ </div>
159
+
160
+ <!-- Floating "Edit" chip -->
161
+ <div class="edit-chip">
162
+ <svg width="44" height="44" viewBox="0 0 24 24">
163
+ <path d="M3 17.2V21h3.8l11-11.1-3.8-3.8L3 17.2zM20.7 7.3a1 1 0 000-1.4L18.1 3.3a1 1 0 00-1.4 0l-1.6 1.6 3.8 3.8 1.6-1.4z" fill="#ffffff"/>
164
+ </svg>
165
+ <div>Edit</div>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- Bottom action bar -->
170
+ <div class="bottom-bar">
171
+ <div class="mini-btn">
172
+ <!-- chat bubble -->
173
+ <svg width="58" height="58" viewBox="0 0 24 24">
174
+ <path d="M4 4h16v11H7l-3 3V4z" fill="none" stroke="#ffffff" stroke-width="2"/>
175
+ </svg>
176
+ </div>
177
+ <div class="mini-btn">
178
+ <!-- open in new -->
179
+ <svg width="58" height="58" viewBox="0 0 24 24">
180
+ <path d="M14 3h7v7h-2V6.4L10 15.4 8.6 14 17.6 5H14V3z" fill="#ffffff"/>
181
+ <path d="M4 5h8v2H6v11h11v-6h2v8H4V5z" fill="#ffffff"/>
182
+ </svg>
183
+ </div>
184
+ <div class="mini-btn">
185
+ <!-- link -->
186
+ <svg width="58" height="58" viewBox="0 0 24 24">
187
+ <path d="M7.5 12a3.5 3.5 0 013.5-3.5h4v2h-4a1.5 1.5 0 000 3h4v2h-4A3.5 3.5 0 017.5 12z" fill="#ffffff"/>
188
+ <path d="M16.5 12a3.5 3.5 0 01-3.5 3.5h-1v-2h1a1.5 1.5 0 000-3h-1v-2h1a3.5 3.5 0 013.5 3.5z" fill="#ffffff" opacity=".9"/>
189
+ </svg>
190
+ </div>
191
+ <div class="spacer"></div>
192
+ <div class="share-btn">
193
+ <svg width="56" height="56" viewBox="0 0 24 24">
194
+ <path d="M18 16a3 3 0 00-2.4 1.2l-6-3A3 3 0 009.6 12a3 3 0 00-.1-1.2l6-3A3 3 0 0018 9a3 3 0 100-6 3 3 0 00-2.8 1.9l-6 3A3 3 0 006 8a3 3 0 100 6 3 3 0 003.2-1.9l6 3A3 3 0 0018 22a3 3 0 100-6z" fill="#ffffff"/>
195
+ </svg>
196
+ <div class="label">Share</div>
197
+ </div>
198
+ </div>
199
+
200
+ </div>
201
+ </body>
202
+ </html>
code/3485/3485_1.html ADDED
@@ -0,0 +1,506 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Dropbox Mobile UI Mock</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ background: transparent;
10
+ font-family: Arial, Helvetica, sans-serif;
11
+ }
12
+ #render-target {
13
+ width: 1080px;
14
+ height: 2400px;
15
+ position: relative;
16
+ overflow: hidden;
17
+ background: #121212;
18
+ color: #FFFFFF;
19
+ }
20
+
21
+ /* Status bar */
22
+ .status-bar {
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ width: 1080px;
27
+ height: 70px;
28
+ padding: 0 30px;
29
+ box-sizing: border-box;
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ color: #EAEAEA;
34
+ font-size: 32px;
35
+ letter-spacing: 0.5px;
36
+ }
37
+ .status-icons {
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 18px;
41
+ }
42
+ .dot {
43
+ width: 18px;
44
+ height: 18px;
45
+ background: #EAEAEA;
46
+ border-radius: 50%;
47
+ opacity: 0.9;
48
+ }
49
+ .battery {
50
+ font-size: 28px;
51
+ color: #EAEAEA;
52
+ }
53
+
54
+ /* Header with hamburger and actions */
55
+ .header {
56
+ position: absolute;
57
+ top: 70px;
58
+ left: 0;
59
+ width: 1080px;
60
+ height: 120px;
61
+ padding: 0 36px;
62
+ display: flex;
63
+ align-items: center;
64
+ justify-content: space-between;
65
+ box-sizing: border-box;
66
+ }
67
+ .header-left {
68
+ display: flex;
69
+ align-items: center;
70
+ gap: 28px;
71
+ }
72
+ .title {
73
+ font-size: 64px;
74
+ font-weight: 700;
75
+ letter-spacing: 0.2px;
76
+ }
77
+ .header-actions {
78
+ display: flex;
79
+ align-items: center;
80
+ gap: 34px;
81
+ }
82
+ .icon-btn {
83
+ width: 60px;
84
+ height: 60px;
85
+ display: inline-flex;
86
+ align-items: center;
87
+ justify-content: center;
88
+ }
89
+ .icon svg {
90
+ width: 56px;
91
+ height: 56px;
92
+ fill: none;
93
+ stroke: #FFFFFF;
94
+ stroke-width: 4;
95
+ opacity: 0.92;
96
+ }
97
+
98
+ /* Search bar */
99
+ .search-wrap {
100
+ position: absolute;
101
+ top: 190px;
102
+ left: 36px;
103
+ width: 1008px;
104
+ height: 110px;
105
+ background: #1C1C1C;
106
+ border-radius: 55px;
107
+ display: flex;
108
+ align-items: center;
109
+ padding: 0 30px;
110
+ box-sizing: border-box;
111
+ }
112
+ .search-wrap input {
113
+ background: transparent;
114
+ border: none;
115
+ outline: none;
116
+ color: #DADADA;
117
+ font-size: 36px;
118
+ flex: 1;
119
+ }
120
+ .search-wrap .placeholder {
121
+ color: #9E9E9E;
122
+ }
123
+
124
+ /* Banner */
125
+ .banner {
126
+ position: absolute;
127
+ top: 320px;
128
+ left: 0;
129
+ width: 1080px;
130
+ height: 150px;
131
+ background: #1A1A1A;
132
+ display: flex;
133
+ align-items: center;
134
+ justify-content: space-between;
135
+ padding: 0 36px;
136
+ box-sizing: border-box;
137
+ border-top: 1px solid #202020;
138
+ border-bottom: 1px solid #202020;
139
+ }
140
+ .banner .text {
141
+ line-height: 1.35;
142
+ }
143
+ .banner .text .title-line {
144
+ font-size: 36px;
145
+ color: #EDEDED;
146
+ }
147
+ .banner .text .sub-line {
148
+ font-size: 32px;
149
+ color: #9FA4A8;
150
+ margin-top: 6px;
151
+ }
152
+ .banner .close {
153
+ width: 60px;
154
+ height: 60px;
155
+ }
156
+ .banner .close svg {
157
+ width: 40px;
158
+ height: 40px;
159
+ stroke: #DADADA;
160
+ stroke-width: 6;
161
+ }
162
+
163
+ /* Sections */
164
+ .section {
165
+ position: absolute;
166
+ left: 36px;
167
+ width: 1008px;
168
+ }
169
+ .recent-section {
170
+ top: 500px;
171
+ }
172
+ .section-header {
173
+ display: flex;
174
+ align-items: center;
175
+ justify-content: space-between;
176
+ margin-bottom: 24px;
177
+ }
178
+ .section-header-left {
179
+ display: flex;
180
+ align-items: center;
181
+ gap: 18px;
182
+ }
183
+ .section-title {
184
+ font-size: 44px;
185
+ font-weight: 700;
186
+ }
187
+ .see-all {
188
+ font-size: 40px;
189
+ color: #4EA3FF;
190
+ }
191
+
192
+ /* File item */
193
+ .file-item {
194
+ display: flex;
195
+ align-items: center;
196
+ gap: 26px;
197
+ padding: 24px 10px;
198
+ border-radius: 14px;
199
+ }
200
+ .thumb {
201
+ width: 170px;
202
+ height: 170px;
203
+ background: #546055;
204
+ border-radius: 16px;
205
+ border: 2px solid #2A2A2A;
206
+ display: flex;
207
+ align-items: center;
208
+ justify-content: center;
209
+ color: #D0D0D0;
210
+ font-size: 24px;
211
+ text-align: center;
212
+ }
213
+ .file-info {
214
+ flex: 1;
215
+ }
216
+ .file-name {
217
+ font-size: 38px;
218
+ line-height: 1.25;
219
+ color: #FFFFFF;
220
+ }
221
+ .file-meta {
222
+ margin-top: 8px;
223
+ font-size: 30px;
224
+ color: #9DA3A6;
225
+ }
226
+ .more-btn {
227
+ width: 60px;
228
+ height: 60px;
229
+ }
230
+ .more-btn svg {
231
+ width: 12px;
232
+ height: 48px;
233
+ fill: #BFBFBF;
234
+ }
235
+
236
+ /* Starred section */
237
+ .starred-section {
238
+ top: 860px;
239
+ }
240
+ .starred-desc {
241
+ color: #B8B8B8;
242
+ font-size: 36px;
243
+ line-height: 1.4;
244
+ margin-top: 16px;
245
+ }
246
+ .illustration {
247
+ margin-top: 50px;
248
+ width: 640px;
249
+ height: 360px;
250
+ background: #E0E0E0;
251
+ border: 1px solid #BDBDBD;
252
+ border-radius: 12px;
253
+ color: #757575;
254
+ display: flex;
255
+ align-items: center;
256
+ justify-content: center;
257
+ }
258
+
259
+ /* Shared section */
260
+ .shared-section {
261
+ top: 1550px;
262
+ }
263
+ .shared-title {
264
+ font-size: 48px;
265
+ font-weight: 700;
266
+ }
267
+
268
+ /* Floating Action Button */
269
+ .fab {
270
+ position: absolute;
271
+ right: 56px;
272
+ bottom: 260px;
273
+ width: 160px;
274
+ height: 160px;
275
+ border-radius: 50%;
276
+ background: #2A7BF5;
277
+ box-shadow: 0 12px 24px rgba(0,0,0,0.4);
278
+ display: flex;
279
+ align-items: center;
280
+ justify-content: center;
281
+ }
282
+ .fab svg {
283
+ width: 82px;
284
+ height: 82px;
285
+ stroke: #FFFFFF;
286
+ stroke-width: 10;
287
+ }
288
+
289
+ /* Bottom navigation */
290
+ .bottom-nav {
291
+ position: absolute;
292
+ bottom: 0;
293
+ left: 0;
294
+ width: 1080px;
295
+ height: 190px;
296
+ background: #171717;
297
+ border-top: 1px solid #222;
298
+ display: flex;
299
+ align-items: center;
300
+ justify-content: space-around;
301
+ box-sizing: border-box;
302
+ }
303
+ .nav-item {
304
+ width: 200px;
305
+ display: flex;
306
+ flex-direction: column;
307
+ align-items: center;
308
+ gap: 12px;
309
+ color: #CFCFCF;
310
+ font-size: 34px;
311
+ }
312
+ .nav-item.active {
313
+ color: #FFFFFF;
314
+ }
315
+ .nav-icon svg {
316
+ width: 64px;
317
+ height: 64px;
318
+ stroke: #CFCFCF;
319
+ stroke-width: 4;
320
+ }
321
+ .nav-item.active .nav-icon svg {
322
+ stroke: #FFFFFF;
323
+ }
324
+ .orange-dot {
325
+ position: absolute;
326
+ left: 110px;
327
+ bottom: 180px;
328
+ width: 22px;
329
+ height: 22px;
330
+ background: #FF8C4A;
331
+ border-radius: 50%;
332
+ }
333
+ </style>
334
+ </head>
335
+ <body>
336
+ <div id="render-target">
337
+
338
+ <!-- Status Bar -->
339
+ <div class="status-bar">
340
+ <div>11:40</div>
341
+ <div class="status-icons">
342
+ <div class="dot"></div>
343
+ <div class="dot"></div>
344
+ <div class="dot"></div>
345
+ <div style="font-size:28px;">M</div>
346
+ <div class="battery">100%</div>
347
+ </div>
348
+ </div>
349
+
350
+ <!-- Header -->
351
+ <div class="header">
352
+ <div class="header-left">
353
+ <div class="icon-btn icon">
354
+ <svg viewBox="0 0 24 24">
355
+ <path d="M3 5h18M3 12h18M3 19h18"></path>
356
+ </svg>
357
+ </div>
358
+ <div class="title">Home</div>
359
+ </div>
360
+ <div class="header-actions">
361
+ <div class="icon-btn icon" title="Notifications">
362
+ <svg viewBox="0 0 24 24">
363
+ <path d="M12 22c1.3 0 2-.8 2-2H10c0 1.2.7 2 2 2z"></path>
364
+ <path d="M6 16h12l-1.5-3V9a5.5 5.5 0 0 0-11 0v4L6 16z"></path>
365
+ </svg>
366
+ </div>
367
+ <div class="icon-btn icon" title="Upload">
368
+ <svg viewBox="0 0 24 24">
369
+ <path d="M12 17V5"></path>
370
+ <path d="M7 9l5-5 5 5"></path>
371
+ <path d="M4 19h16"></path>
372
+ </svg>
373
+ </div>
374
+ <div class="icon-btn icon" title="Theme">
375
+ <svg viewBox="0 0 24 24">
376
+ <circle cx="12" cy="12" r="9"></circle>
377
+ <path d="M6 12h12M12 6v12"></path>
378
+ </svg>
379
+ </div>
380
+ </div>
381
+ </div>
382
+
383
+ <!-- Search -->
384
+ <div class="search-wrap">
385
+ <div class="icon" style="margin-right:18px;">
386
+ <svg viewBox="0 0 24 24">
387
+ <circle cx="11" cy="11" r="8"></circle>
388
+ <path d="M20 20l-4.5-4.5"></path>
389
+ </svg>
390
+ </div>
391
+ <div class="placeholder">Search</div>
392
+ </div>
393
+
394
+ <!-- Banner -->
395
+ <div class="banner">
396
+ <div class="text">
397
+ <div class="title-line">Get these files on your computer</div>
398
+ <div class="sub-line">Sync files</div>
399
+ </div>
400
+ <div class="close">
401
+ <svg viewBox="0 0 24 24">
402
+ <path d="M5 5l14 14M19 5L5 19"></path>
403
+ </svg>
404
+ </div>
405
+ </div>
406
+
407
+ <!-- Recent Section -->
408
+ <div class="section recent-section">
409
+ <div class="section-header">
410
+ <div class="section-header-left">
411
+ <div class="icon">
412
+ <svg viewBox="0 0 24 24">
413
+ <circle cx="12" cy="12" r="9"></circle>
414
+ <path d="M12 7v6l4 2"></path>
415
+ </svg>
416
+ </div>
417
+ <div class="section-title">Recent</div>
418
+ </div>
419
+ <div class="see-all">See all</div>
420
+ </div>
421
+
422
+ <div class="file-item">
423
+ <div class="thumb">[IMG: PDF Thumbnail]</div>
424
+ <div class="file-info">
425
+ <div class="file-name">A_short_history_of_Germany_(IA_shorthistoryofge00hawt).pdf</div>
426
+ <div class="file-meta">Dropbox</div>
427
+ </div>
428
+ <div class="more-btn">
429
+ <svg viewBox="0 0 4 24">
430
+ <circle cx="2" cy="4" r="2" />
431
+ <circle cx="2" cy="12" r="2" />
432
+ <circle cx="2" cy="20" r="2" />
433
+ </svg>
434
+ </div>
435
+ </div>
436
+ </div>
437
+
438
+ <!-- Starred Section -->
439
+ <div class="section starred-section">
440
+ <div class="section-header">
441
+ <div class="section-title">Starred</div>
442
+ <div class="see-all">See all</div>
443
+ </div>
444
+ <div class="starred-desc">
445
+ Anything you star shows<br>
446
+ up here for quick access.
447
+ </div>
448
+ <div class="illustration">[IMG: Illustration of hand placing star stickers]</div>
449
+ </div>
450
+
451
+ <!-- Shared Section -->
452
+ <div class="section shared-section">
453
+ <div class="shared-title">Shared</div>
454
+ </div>
455
+
456
+ <!-- Floating Action Button -->
457
+ <div class="fab">
458
+ <svg viewBox="0 0 24 24">
459
+ <path d="M5 12h14M12 5v14"></path>
460
+ </svg>
461
+ </div>
462
+
463
+ <!-- Bottom Navigation -->
464
+ <div class="bottom-nav">
465
+ <div class="nav-item active">
466
+ <div class="nav-icon">
467
+ <svg viewBox="0 0 24 24">
468
+ <path d="M3 11l9-7 9 7"></path>
469
+ <path d="M6 10v9h12v-9"></path>
470
+ </svg>
471
+ </div>
472
+ <div>Home</div>
473
+ </div>
474
+ <div class="nav-item">
475
+ <div class="nav-icon">
476
+ <svg viewBox="0 0 24 24">
477
+ <path d="M3 7h18M3 12h18M3 17h18"></path>
478
+ <path d="M5 5h14v14H5z" opacity="0.2"></path>
479
+ </svg>
480
+ </div>
481
+ <div>Files</div>
482
+ </div>
483
+ <div class="nav-item">
484
+ <div class="nav-icon">
485
+ <svg viewBox="0 0 24 24">
486
+ <rect x="3" y="5" width="18" height="14" rx="2"></rect>
487
+ <path d="M3 16l6-6 5 4 5-6"></path>
488
+ </svg>
489
+ </div>
490
+ <div>Photos</div>
491
+ </div>
492
+ <div class="nav-item">
493
+ <div class="nav-icon">
494
+ <svg viewBox="0 0 24 24">
495
+ <circle cx="12" cy="8" r="4"></circle>
496
+ <path d="M4 20c0-4.4 4-7 8-7s8 2.6 8 7"></path>
497
+ </svg>
498
+ </div>
499
+ <div>Account</div>
500
+ </div>
501
+ <div class="orange-dot"></div>
502
+ </div>
503
+
504
+ </div>
505
+ </body>
506
+ </html>
code/3485/3485_2.html ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Dropbox Home - Mock</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target{
9
+ width:1080px; height:2400px; position:relative; overflow:hidden;
10
+ background:#0e0e0f; color:#eaeaea;
11
+ }
12
+ .status-bar{
13
+ height:100px; padding:0 32px; display:flex; align-items:center; justify-content:space-between;
14
+ color:#d9d9d9; font-size:34px;
15
+ }
16
+ .top-row{
17
+ height:120px; display:flex; align-items:center; padding:0 32px; gap:26px;
18
+ }
19
+ .hamburger{
20
+ width:64px; height:48px; position:relative;
21
+ }
22
+ .hamburger span{
23
+ position:absolute; left:0; right:0; height:6px; background:#e9e9e9; border-radius:3px;
24
+ }
25
+ .hamburger span:nth-child(1){ top:0; }
26
+ .hamburger span:nth-child(2){ top:18px; }
27
+ .hamburger span:nth-child(3){ top:36px; }
28
+ .title{ font-size:64px; font-weight:600; flex:1; }
29
+ .icon-btn{ width:64px; height:64px; display:flex; align-items:center; justify-content:center; }
30
+ .icon-btn svg{ width:44px; height:44px; fill:#dcdcdc; }
31
+ .search-wrap{ padding:0 32px; }
32
+ .search-bar{
33
+ height:120px; background:#1e1e1f; border-radius:60px; border:1px solid #2c2c2e;
34
+ display:flex; align-items:center; padding:0 36px; gap:24px; color:#bdbdbd; font-size:40px;
35
+ }
36
+ .banner{
37
+ margin:28px 0; padding:36px 32px; background:#1a1a1c; border-top:1px solid #262629; border-bottom:1px solid #262629;
38
+ display:flex; align-items:center; justify-content:space-between; color:#cfcfcf; font-size:42px;
39
+ }
40
+ .banner .secondary{ margin-top:8px; color:#a3a3a8; font-size:36px; }
41
+ .section{
42
+ padding:24px 32px; display:flex; align-items:center; justify-content:space-between;
43
+ }
44
+ .section .left{ display:flex; align-items:center; gap:18px; color:#e8e8e8; }
45
+ .section .left .clock{
46
+ width:40px; height:40px;
47
+ }
48
+ .section .right{ color:#4b86ff; font-size:40px; }
49
+ .recent-item{
50
+ padding:12px 32px 40px 32px; display:flex; align-items:center; gap:28px;
51
+ }
52
+ .thumb{
53
+ width:160px; height:160px; background:#E0E0E0; border:1px solid #BDBDBD; border-radius:16px;
54
+ display:flex; align-items:center; justify-content:center; color:#6b6b6b; font-size:26px;
55
+ }
56
+ .file-meta{ flex:1; }
57
+ .file-title{
58
+ font-size:44px; color:#e8e8e8; line-height:1.2;
59
+ max-width:760px;
60
+ }
61
+ .file-sub{ margin-top:10px; color:#a6a6aa; font-size:34px; }
62
+ .kebab{ width:56px; height:56px; display:flex; align-items:center; justify-content:center; }
63
+ .kebab span{
64
+ width:8px; height:8px; background:#d8d8d8; border-radius:50%; display:block; margin:5px 0;
65
+ }
66
+
67
+ /* Bottom sheet */
68
+ .sheet{
69
+ position:absolute; left:0; right:0; bottom:0; height:1480px; background:#222223;
70
+ border-top-left-radius:26px; border-top-right-radius:26px; border-top:1px solid #323236;
71
+ box-shadow:0 -10px 40px rgba(0,0,0,0.6);
72
+ padding:34px 32px 40px;
73
+ }
74
+ .sheet h2{
75
+ margin:6px 4px 26px; font-size:56px; color:#e9e9ea; font-weight:700;
76
+ }
77
+ .action-list{ margin-top:10px; }
78
+ .row{
79
+ display:flex; align-items:center; gap:28px; padding:30px 6px; border-bottom:1px solid #2f2f33;
80
+ }
81
+ .row:last-child{ border-bottom:none; }
82
+ .aicon{
83
+ width:64px; height:64px; background:#2f2f35; border-radius:14px; display:flex; align-items:center; justify-content:center;
84
+ border:1px solid #3b3b40;
85
+ }
86
+ .aicon svg{ width:40px; height:40px; fill:#d7d7db; }
87
+ .row span{ font-size:46px; color:#e9e9ea; }
88
+ /* helper tiny pill near bell to mimic dot */
89
+ .dot{
90
+ position:absolute; top:-4px; right:-2px; width:16px; height:16px; background:#c87a5d; border-radius:50%;
91
+ border:2px solid #0e0e0f;
92
+ }
93
+ </style>
94
+ </head>
95
+ <body>
96
+ <div id="render-target">
97
+
98
+ <!-- Status bar -->
99
+ <div class="status-bar">
100
+ <div>11:41</div>
101
+ <div style="display:flex; align-items:center; gap:18px;">
102
+ <span style="opacity:.85;">⌁</span>
103
+ <span style="opacity:.85;">✉</span>
104
+ <span style="opacity:.85;">▲</span>
105
+ <span style="opacity:.85;">!</span>
106
+ <span style="opacity:.85;">📶</span>
107
+ <span style="opacity:.85;">🔋 100%</span>
108
+ </div>
109
+ </div>
110
+
111
+ <!-- Top row -->
112
+ <div class="top-row">
113
+ <div class="hamburger" aria-label="menu">
114
+ <span></span><span></span><span></span>
115
+ </div>
116
+ <div class="title">Home</div>
117
+ <div class="icon-btn" style="position:relative;">
118
+ <!-- bell -->
119
+ <svg viewBox="0 0 24 24"><path d="M12 22c1.1 0 2-.9 2-2h-4a2 2 0 0 0 2 2zm6-6V11a6 6 0 1 0-12 0v5L4 18v2h16v-2l-2-2z"/></svg>
120
+ <span class="dot"></span>
121
+ </div>
122
+ <div class="icon-btn">
123
+ <!-- upload up -->
124
+ <svg viewBox="0 0 24 24"><path d="M5 19h14v2H5v-2zm7-16l5 5h-3v6h-4V8H7l5-5z"/></svg>
125
+ </div>
126
+ <div class="icon-btn">
127
+ <!-- palette/simple circle icon -->
128
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 0 0 20c3.3 0 4-2 4-3a2 2 0 0 0-2-2h-3a3 3 0 0 1 0-6h1a2 2 0 1 0 0-4z"/></svg>
129
+ </div>
130
+ </div>
131
+
132
+ <!-- Search -->
133
+ <div class="search-wrap">
134
+ <div class="search-bar">
135
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#bdbdbd"><path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 1 0-.7.7l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0A4.5 4.5 0 1 1 14 9.5 4.5 4.5 0 0 1 9.5 14z"/></svg>
136
+ <span>Search</span>
137
+ </div>
138
+ </div>
139
+
140
+ <!-- Banner -->
141
+ <div class="banner">
142
+ <div>
143
+ <div>Get these files on your computer</div>
144
+ <div class="secondary">Sync files</div>
145
+ </div>
146
+ <div style="width:64px; height:64px; display:flex; align-items:center; justify-content:center; color:#9e9ea3;">✕</div>
147
+ </div>
148
+
149
+ <!-- Recent header -->
150
+ <div class="section">
151
+ <div class="left">
152
+ <svg class="clock" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 2a10 10 0 1 0 .001 20.001A10 10 0 0 0 12 2zm1 11h5v-2h-4V6h-2v7z"/></svg>
153
+ <div style="font-size:48px;">Recent</div>
154
+ </div>
155
+ <div class="right">See all</div>
156
+ </div>
157
+
158
+ <!-- Recent item -->
159
+ <div class="recent-item">
160
+ <div class="thumb">[IMG: PDF Cover]</div>
161
+ <div class="file-meta">
162
+ <div class="file-title">A_short_history_of_Germany_(IA_shorthistoryofge00hawt).pdf</div>
163
+ <div class="file-sub">Dropbox</div>
164
+ </div>
165
+ <div class="kebab"><span></span><span></span><span></span></div>
166
+ </div>
167
+
168
+ <!-- Bottom Sheet -->
169
+ <div class="sheet">
170
+ <h2>Add to Dropbox</h2>
171
+ <div class="action-list">
172
+
173
+ <div class="row">
174
+ <div class="aicon">
175
+ <svg viewBox="0 0 24 24"><path d="M19 9h-4V3H9v6H5l7 7 7-7zM5 18h14v2H5z"/></svg>
176
+ </div>
177
+ <span>Upload photos or videos</span>
178
+ </div>
179
+
180
+ <div class="row">
181
+ <div class="aicon">
182
+ <svg viewBox="0 0 24 24"><path d="M10 4H4v16h16V8h-6V4h-4zm4 0v4h4l-4-4z"/></svg>
183
+ </div>
184
+ <span>Upload folder</span>
185
+ </div>
186
+
187
+ <div class="row">
188
+ <div class="aicon">
189
+ <svg viewBox="0 0 24 24"><path d="M7 2h10v4H7zM5 8h14v10H5zM8 10h8v2H8z"/></svg>
190
+ </div>
191
+ <span>Scan document</span>
192
+ </div>
193
+
194
+ <div class="row">
195
+ <div class="aicon">
196
+ <svg viewBox="0 0 24 24"><path d="M17 10H7V7l-5 5 5 5v-3h10v3l5-5-5-5v3z"/></svg>
197
+ </div>
198
+ <span>Send copy of files</span>
199
+ </div>
200
+
201
+ <div class="row">
202
+ <div class="aicon">
203
+ <svg viewBox="0 0 24 24"><path d="M12 5v8m0 0l-3-3m3 3l3-3M5 19h14v2H5z" stroke="#d7d7db" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
204
+ </div>
205
+ <span>Take a photo</span>
206
+ </div>
207
+
208
+ <div class="row">
209
+ <div class="aicon">
210
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v12H4zM4 18h10v2H4z"/></svg>
211
+ </div>
212
+ <span>Create or upload file</span>
213
+ </div>
214
+
215
+ <div class="row">
216
+ <div class="aicon">
217
+ <svg viewBox="0 0 24 24"><path d="M10 4H4v16h16V8h-6V4h-4zM8 12h8v2H8z"/></svg>
218
+ </div>
219
+ <span>Create new folder</span>
220
+ </div>
221
+
222
+ <div class="row">
223
+ <div class="aicon">
224
+ <svg viewBox="0 0 24 24"><path d="M14 3v4h4M6 3h8l4 4v14H6z"/></svg>
225
+ </div>
226
+ <span>Add file from a computer</span>
227
+ </div>
228
+
229
+ </div>
230
+ </div>
231
+
232
+ <!-- gesture pill -->
233
+ <div style="position:absolute; bottom:24px; left:50%; transform:translateX(-50%); width:420px; height:12px; background:#9aa0a6; opacity:.45; border-radius:8px;"></div>
234
+
235
+ </div>
236
+ </body>
237
+ </html>
code/3485/3485_3.html ADDED
@@ -0,0 +1,311 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Dropbox Mobile Mock</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; }
8
+ #render-target{
9
+ position:relative;
10
+ width:1080px;
11
+ height:2400px;
12
+ overflow:hidden;
13
+ background:#0f0f10;
14
+ color:#fff;
15
+ font-family: Arial, Helvetica, sans-serif;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar{
20
+ height:90px;
21
+ padding:0 28px;
22
+ display:flex;
23
+ align-items:center;
24
+ justify-content:space-between;
25
+ color:#fff;
26
+ font-size:34px;
27
+ letter-spacing:1px;
28
+ }
29
+ .status-left, .status-right{ display:flex; align-items:center; gap:18px; }
30
+ .dot{ width:14px; height:14px; border-radius:50%; background:#cfd8dc; opacity:0.7; }
31
+ .battery{
32
+ display:flex; align-items:center; gap:10px; font-size:34px;
33
+ }
34
+ .battery .icon{
35
+ width:46px; height:26px; border:3px solid #fff; border-radius:6px; position:relative;
36
+ }
37
+ .battery .icon:after{
38
+ content:""; position:absolute; right:-10px; top:6px; width:6px; height:14px; background:#fff; border-radius:2px;
39
+ }
40
+ .battery .level{
41
+ position:absolute; left:3px; top:3px; bottom:3px; right:3px; background:#fff;
42
+ }
43
+
44
+ /* App header */
45
+ .app-header{
46
+ padding:18px 34px 8px 34px;
47
+ }
48
+ .top-actions{
49
+ display:flex; align-items:center; justify-content:space-between; margin-top:6px;
50
+ }
51
+ .hamburger{ width:64px; height:64px; display:flex; align-items:center; justify-content:center; }
52
+ .ham-svg line{ stroke:#fff; stroke-width:8; }
53
+ .title{ font-size:72px; font-weight:700; margin-top:8px; }
54
+ .icon-btn{ width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center; }
55
+ .icon-row{ display:flex; align-items:center; gap:28px; }
56
+
57
+ /* Search */
58
+ .search-bar{
59
+ margin:18px 30px 26px 30px;
60
+ height:120px;
61
+ background:#1a1b1f;
62
+ border:1px solid #2b2c31;
63
+ border-radius:60px;
64
+ display:flex; align-items:center; padding:0 40px; gap:24px;
65
+ color:#b0b4bb;
66
+ font-size:40px;
67
+ }
68
+ .search-icon circle, .search-icon line{ stroke:#b0b4bb; stroke-width:8; fill:none; }
69
+
70
+ /* Info card */
71
+ .info-card{
72
+ margin:0 30px;
73
+ background:#15161a;
74
+ border:1px solid #24262b;
75
+ color:#c6cad1;
76
+ border-radius:22px;
77
+ padding:34px 34px;
78
+ display:flex; justify-content:space-between; align-items:center;
79
+ font-size:40px;
80
+ }
81
+ .muted{ color:#8f949e; margin-top:8px; font-size:34px; }
82
+
83
+ /* Sections */
84
+ .section{ padding:34px 30px 0 30px; }
85
+ .section-head{
86
+ display:flex; align-items:center; justify-content:space-between; color:#e6e8ed;
87
+ margin-bottom:24px;
88
+ }
89
+ .left-head{ display:flex; align-items:center; gap:20px; }
90
+ .see-all{ color:#6ea2ff; font-size:40px; }
91
+ .clock{ width:42px; height:42px; border-radius:50%; border:3px solid #e6e8ed; position:relative; }
92
+ .clock:before{ content:""; position:absolute; width:3px; height:12px; background:#e6e8ed; left:50%; top:20%; transform:translateX(-50%); }
93
+ .clock:after{ content:""; position:absolute; width:12px; height:3px; background:#e6e8ed; left:50%; top:50%; }
94
+
95
+ /* File item */
96
+ .file-item{
97
+ display:flex; align-items:center; gap:26px;
98
+ padding:18px 10px;
99
+ }
100
+ .thumb{
101
+ width:140px; height:140px; background:#2a2c30; border:1px solid #3a3d43; border-radius:16px;
102
+ display:flex; align-items:center; justify-content:center; color:#9aa0a6; font-size:28px;
103
+ }
104
+ .file-info{ flex:1; }
105
+ .file-title{ font-size:42px; line-height:1.25; color:#e7e9ef; }
106
+ .file-sub{ font-size:32px; color:#8a8f98; margin-top:8px; }
107
+ .kebab{ width:14px; height:60px; display:flex; flex-direction:column; justify-content:space-between; align-items:center; margin-right:14px; }
108
+ .kebab span{ width:10px; height:10px; background:#cfd2d8; border-radius:50%; display:block; }
109
+
110
+ /* Starred illustration placeholder */
111
+ .illustration{
112
+ position:absolute; right:0; bottom:540px; width:560px; height:320px;
113
+ background:#202228; border:1px solid #343741; color:#a4aab3;
114
+ display:flex; align-items:center; justify-content:center; border-top-left-radius:24px;
115
+ }
116
+
117
+ /* Bottom sheet */
118
+ .scrim{
119
+ position:absolute; left:0; right:0; top:0; bottom:0;
120
+ background:rgba(0,0,0,0.35);
121
+ }
122
+ .sheet{
123
+ position:absolute; left:0; right:0; bottom:0;
124
+ background:#232429;
125
+ border-top-left-radius:26px; border-top-right-radius:26px;
126
+ border-top:1px solid #32343a;
127
+ padding-top:18px;
128
+ height:520px;
129
+ box-shadow:0 -8px 20px rgba(0,0,0,0.6);
130
+ }
131
+ .sheet .handle{
132
+ width:120px; height:8px; border-radius:8px; background:#4a4d55; margin:16px auto 10px;
133
+ }
134
+ .sheet-item{
135
+ display:flex; align-items:center; gap:28px; padding:34px 40px;
136
+ border-top:1px solid #2f3138;
137
+ }
138
+ .sheet-item:first-of-type{ border-top:none; }
139
+ .sheet-icon{
140
+ width:70px; height:70px; border-radius:14px; background:#2d2f36; border:1px solid #3c3e47;
141
+ display:flex; align-items:center; justify-content:center;
142
+ }
143
+ .sheet-text{ font-size:46px; color:#e9ecf2; }
144
+ .gesture{
145
+ position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
146
+ width:360px; height:10px; border-radius:6px; background:#8b8f96;
147
+ opacity:0.75;
148
+ }
149
+ .star-icon{
150
+ width:42px; height:42px; position:relative;
151
+ }
152
+ .star-icon:before{
153
+ content:"★"; color:#e6e8ed; font-size:42px; position:absolute; top:-2px; left:0;
154
+ }
155
+ </style>
156
+ </head>
157
+ <body>
158
+ <div id="render-target">
159
+
160
+ <!-- Status bar -->
161
+ <div class="status-bar">
162
+ <div class="status-left">
163
+ <div style="font-weight:600;">11:41</div>
164
+ <div class="dot"></div>
165
+ <div class="dot"></div>
166
+ <div class="dot"></div>
167
+ </div>
168
+ <div class="status-right">
169
+ <div class="dot"></div>
170
+ <div class="battery">
171
+ <div class="icon"><div class="level"></div></div>
172
+ <div>100%</div>
173
+ </div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- App header with actions -->
178
+ <div class="app-header">
179
+ <div class="top-actions">
180
+ <div class="hamburger">
181
+ <svg class="ham-svg" width="54" height="44" viewBox="0 0 54 44">
182
+ <line x1="2" y1="6" x2="52" y2="6"></line>
183
+ <line x1="2" y1="22" x2="52" y2="22"></line>
184
+ <line x1="2" y1="38" x2="40" y2="38"></line>
185
+ </svg>
186
+ </div>
187
+ <div class="icon-row">
188
+ <div class="icon-btn">
189
+ <svg width="40" height="40" viewBox="0 0 40 40">
190
+ <circle cx="20" cy="20" r="16" fill="none" stroke="#fff" stroke-width="3"></circle>
191
+ <circle cx="28" cy="12" r="5" fill="#ff906e"></circle>
192
+ </svg>
193
+ </div>
194
+ <div class="icon-btn">
195
+ <svg width="40" height="40" viewBox="0 0 40 40">
196
+ <path d="M20 28 L20 10 M12 18 L20 10 L28 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
197
+ </svg>
198
+ </div>
199
+ <div class="icon-btn">
200
+ <svg width="40" height="40" viewBox="0 0 40 40">
201
+ <circle cx="20" cy="20" r="16" fill="none" stroke="#fff" stroke-width="3"></circle>
202
+ <circle cx="20" cy="12" r="4" fill="#fff"></circle>
203
+ </svg>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ <div class="title">Home</div>
208
+ </div>
209
+
210
+ <!-- Search -->
211
+ <div class="search-bar">
212
+ <svg class="search-icon" width="56" height="56" viewBox="0 0 56 56">
213
+ <circle cx="24" cy="24" r="16"></circle>
214
+ <line x1="36" y1="36" x2="52" y2="52"></line>
215
+ </svg>
216
+ <div>Search</div>
217
+ </div>
218
+
219
+ <!-- Info card -->
220
+ <div class="info-card">
221
+ <div>
222
+ <div>Get these files on your computer</div>
223
+ <div class="muted">Sync files</div>
224
+ </div>
225
+ <div>
226
+ <svg width="40" height="40" viewBox="0 0 40 40">
227
+ <line x1="8" y1="8" x2="32" y2="32" stroke="#8c9099" stroke-width="4"></line>
228
+ <line x1="32" y1="8" x2="8" y2="32" stroke="#8c9099" stroke-width="4"></line>
229
+ </svg>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- Recent Section -->
234
+ <div class="section">
235
+ <div class="section-head">
236
+ <div class="left-head">
237
+ <div class="clock"></div>
238
+ <div style="font-size:48px; font-weight:700;">Recent</div>
239
+ </div>
240
+ <div class="see-all">See all</div>
241
+ </div>
242
+
243
+ <div class="file-item">
244
+ <div class="thumb">[IMG: PDF cover]</div>
245
+ <div class="file-info">
246
+ <div class="file-title">A_short_history_of_Germany_(IA_short​historyofge00hawt).pdf</div>
247
+ <div class="file-sub">Dropbox</div>
248
+ </div>
249
+ <div class="kebab">
250
+ <span></span><span></span><span></span>
251
+ </div>
252
+ </div>
253
+ </div>
254
+
255
+ <!-- Starred Section -->
256
+ <div class="section" style="padding-top:80px;">
257
+ <div class="section-head">
258
+ <div class="left-head">
259
+ <div class="star-icon"></div>
260
+ <div style="font-size:48px; font-weight:700;">Starred</div>
261
+ </div>
262
+ <div class="see-all">See all</div>
263
+ </div>
264
+ <div style="color:#9aa0a6; font-size:36px; padding:0 16px;">
265
+ Anything you star shows up here for quick access.
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Illustration placeholder -->
270
+ <div class="illustration">[IMG: Stars illustration]</div>
271
+
272
+ <!-- Bottom sheet overlay -->
273
+ <div class="scrim"></div>
274
+ <div class="sheet">
275
+ <div class="handle"></div>
276
+ <div class="sheet-item">
277
+ <div class="sheet-icon">
278
+ <svg width="40" height="40" viewBox="0 0 40 40">
279
+ <rect x="6" y="8" width="28" height="24" fill="none" stroke="#e6e8ee" stroke-width="3" rx="4"></rect>
280
+ <line x1="12" y1="16" x2="28" y2="16" stroke="#e6e8ee" stroke-width="3"></line>
281
+ <line x1="12" y1="22" x2="24" y2="22" stroke="#e6e8ee" stroke-width="3"></line>
282
+ </svg>
283
+ </div>
284
+ <div class="sheet-text">Paper</div>
285
+ </div>
286
+ <div class="sheet-item">
287
+ <div class="sheet-icon">
288
+ <svg width="40" height="40" viewBox="0 0 40 40">
289
+ <rect x="6" y="6" width="28" height="28" fill="none" stroke="#e6e8ee" stroke-width="3" rx="4"></rect>
290
+ <line x1="12" y1="16" x2="28" y2="16" stroke="#e6e8ee" stroke-width="3"></line>
291
+ <line x1="12" y1="22" x2="24" y2="22" stroke="#e6e8ee" stroke-width="3"></line>
292
+ </svg>
293
+ </div>
294
+ <div class="sheet-text">Text file</div>
295
+ </div>
296
+ <div class="sheet-item">
297
+ <div class="sheet-icon">
298
+ <svg width="40" height="40" viewBox="0 0 40 40">
299
+ <path d="M20 28 L20 10 M12 18 L20 10 L28 18" stroke="#e6e8ee" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
300
+ <rect x="8" y="28" width="24" height="6" fill="#e6e8ee"></rect>
301
+ </svg>
302
+ </div>
303
+ <div class="sheet-text">Upload files</div>
304
+ </div>
305
+ </div>
306
+
307
+ <!-- Gesture bar -->
308
+ <div class="gesture"></div>
309
+ </div>
310
+ </body>
311
+ </html>
code/3485/3485_4.html ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Files UI Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#0f1214; color:#e9ecef;
11
+ font-family: Arial, Helvetica, sans-serif;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position:absolute; top:0; left:0; right:0;
17
+ height:120px; padding:0 36px;
18
+ display:flex; align-items:center; justify-content:space-between;
19
+ color:#ffffff; font-weight:600; font-size:44px;
20
+ }
21
+ .status-left, .status-right { display:flex; align-items:center; gap:24px; }
22
+ .status-icon {
23
+ width:34px; height:34px; border-radius:6px; background:#1e2327;
24
+ border:1px solid #2a2f34;
25
+ }
26
+ .wifi-icon {
27
+ width:42px; height:28px; position:relative;
28
+ }
29
+ .wifi-icon::before, .wifi-icon::after {
30
+ content:""; position:absolute; border:3px solid #cfd8dc; border-radius:50%;
31
+ }
32
+ .wifi-icon::before { width:40px; height:20px; left:1px; top:2px; border-top-color:#cfd8dc; border-left-color:transparent; border-right-color:transparent; border-bottom-color:transparent; }
33
+ .wifi-icon::after { width:20px; height:10px; left:11px; top:10px; border-top-color:#cfd8dc; border-left-color:transparent; border-right-color:transparent; border-bottom-color:transparent; }
34
+ .battery {
35
+ width:70px; height:28px; border:3px solid #cfd8dc; border-radius:6px; position:relative; margin-left:10px;
36
+ }
37
+ .battery::before {
38
+ content:""; position:absolute; right:-10px; top:6px; width:8px; height:16px; background:#cfd8dc; border-radius:2px;
39
+ }
40
+ .battery::after {
41
+ content:""; position:absolute; left:4px; top:4px; width:56px; height:18px; background:#cfd8dc; border-radius:4px;
42
+ }
43
+
44
+ /* Search header */
45
+ .search-wrap {
46
+ position:absolute; top:140px; left:24px; right:24px;
47
+ }
48
+ .search-bar {
49
+ height:120px; background:#1a1e22; border:1px solid #2a2f34; border-radius:20px;
50
+ display:flex; align-items:center; padding:0 32px; gap:28px;
51
+ font-size:42px; color:#cfd8dc;
52
+ }
53
+ .hamburger { width:48px; height:48px; position:relative; }
54
+ .hamburger span {
55
+ position:absolute; left:0; right:0; height:6px; background:#cfd8dc; border-radius:3px;
56
+ }
57
+ .hamburger span:nth-child(1){ top:6px; }
58
+ .hamburger span:nth-child(2){ top:20px; }
59
+ .hamburger span:nth-child(3){ top:34px; }
60
+ .kebab { width:40px; height:40px; position:relative; margin-left:auto; }
61
+ .kebab span {
62
+ width:8px; height:8px; background:#cfd8dc; border-radius:50%; position:absolute; right:0;
63
+ }
64
+ .kebab span:nth-child(1){ top:6px; }
65
+ .kebab span:nth-child(2){ top:18px; }
66
+ .kebab span:nth-child(3){ top:30px; }
67
+
68
+ /* Category chips */
69
+ .chips {
70
+ margin-top:24px; display:flex; gap:18px;
71
+ }
72
+ .chip {
73
+ display:flex; align-items:center; gap:16px;
74
+ background:#1a1e22; border:1px solid #2a2f34; border-radius:18px;
75
+ padding:24px 28px; color:#e9ecef; font-size:36px;
76
+ }
77
+ .chip-icon {
78
+ width:48px; height:48px; border-radius:10px; background:#2a3138; border:1px solid #3a424a;
79
+ }
80
+
81
+ /* Section title */
82
+ .section-title {
83
+ margin:56px 0 18px 12px; font-size:34px; color:#b0b6bd; letter-spacing:0.5px;
84
+ }
85
+
86
+ /* Other apps cards */
87
+ .other-apps { display:flex; gap:70px; padding:0 18px; }
88
+ .app-card {
89
+ width:300px; background:transparent; text-align:center;
90
+ }
91
+ .circle {
92
+ width:120px; height:120px; border-radius:60px; margin:0 auto 16px;
93
+ background:#2b3137; border:1px solid #3a424a; position:relative;
94
+ }
95
+ .bug-shape { width:60px; height:60px; background:#8bc34a; border-radius:8px; position:absolute; left:30px; top:30px; }
96
+ .drive-triangle {
97
+ position:absolute; left:25px; top:25px; width:70px; height:70px; background:#ffd54f; clip-path:polygon(50% 0, 0 100%, 100% 100%);
98
+ }
99
+ .app-title { font-size:36px; color:#cfd8dc; }
100
+ .app-sub { font-size:30px; color:#9aa1a8; margin-top:6px; }
101
+
102
+ /* Recent files header */
103
+ .recent-header {
104
+ margin:46px 18px 0 18px; display:flex; align-items:center; justify-content:space-between;
105
+ }
106
+ .recent-header .title { font-size:44px; font-weight:600; }
107
+ .grid-icon { width:48px; height:48px; position:relative; }
108
+ .grid-icon span{
109
+ position:absolute; width:16px; height:16px; background:#cfd8dc; border-radius:3px;
110
+ }
111
+ .grid-icon span:nth-child(1){ left:4px; top:4px; }
112
+ .grid-icon span:nth-child(2){ left:28px; top:4px; }
113
+ .grid-icon span:nth-child(3){ left:4px; top:28px; }
114
+ .grid-icon span:nth-child(4){ left:28px; top:28px; }
115
+
116
+ /* File list */
117
+ .file-list { margin:16px 18px 0 18px; border-top:1px solid #2a2f34; }
118
+ .file-item {
119
+ display:flex; align-items:flex-start; gap:24px;
120
+ padding:36px 0; border-bottom:1px solid #2a2f34;
121
+ }
122
+ .file-icon {
123
+ width:64px; height:64px; border-radius:12px;
124
+ display:flex; justify-content:center; align-items:center;
125
+ font-size:26px; font-weight:700; color:#000;
126
+ border:1px solid rgba(255,255,255,0.15);
127
+ }
128
+ .pdf { background:#e57373; color:#000; }
129
+ .txt { background:#4db6ac; color:#073b3a; }
130
+ .img { background:#E0E0E0; color:#757575; border-color:#bdbdbd; }
131
+ .file-info { flex:1; }
132
+ .file-name { font-size:40px; color:#e9ecef; }
133
+ .file-meta { margin-top:10px; font-size:32px; color:#a5adb5; }
134
+
135
+ .actions {
136
+ display:flex; flex-direction:column; gap:16px; align-items:flex-end; padding-right:12px;
137
+ }
138
+ .action-icon {
139
+ width:44px; height:44px; border-radius:8px; border:1px solid #3a424a; background:#1a1e22; position:relative;
140
+ }
141
+ .action-icon::after {
142
+ content:""; position:absolute; right:8px; top:8px; width:18px; height:18px; border-right:3px solid #cfd8dc; border-bottom:3px solid #cfd8dc; transform:rotate(45deg);
143
+ }
144
+
145
+ /* Bottom image thumbnail placeholder */
146
+ .img-thumb {
147
+ width:140px; height:140px; background:#E0E0E0; border:1px solid #BDBDBD;
148
+ display:flex; justify-content:center; align-items:center; color:#757575; font-size:26px; border-radius:12px;
149
+ }
150
+ </style>
151
+ </head>
152
+ <body>
153
+ <div id="render-target">
154
+
155
+ <!-- Status Bar -->
156
+ <div class="status-bar">
157
+ <div class="status-left">
158
+ <div>11:42</div>
159
+ <div class="status-icon"></div>
160
+ <div class="status-icon"></div>
161
+ <div class="status-icon"></div>
162
+ <div class="status-icon"></div>
163
+ </div>
164
+ <div class="status-right" style="font-size:36px;">
165
+ <div class="wifi-icon"></div>
166
+ <div class="battery"></div>
167
+ <div style="font-size:36px; color:#cfd8dc;">100%</div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Search and chips -->
172
+ <div class="search-wrap">
173
+ <div class="search-bar">
174
+ <div class="hamburger">
175
+ <span></span><span></span><span></span>
176
+ </div>
177
+ <div>Search this phone</div>
178
+ <div class="kebab"><span></span><span></span><span></span></div>
179
+ </div>
180
+
181
+ <div class="chips">
182
+ <div class="chip">
183
+ <div class="chip-icon"></div>
184
+ <div>Images</div>
185
+ </div>
186
+ <div class="chip">
187
+ <div class="chip-icon"></div>
188
+ <div>Audio</div>
189
+ </div>
190
+ <div class="chip">
191
+ <div class="chip-icon"></div>
192
+ <div>Videos</div>
193
+ </div>
194
+ <div class="chip">
195
+ <div class="chip-icon"></div>
196
+ <div>Documents</div>
197
+ </div>
198
+ </div>
199
+
200
+ <div class="section-title">BROWSE FILES IN OTHER APPS</div>
201
+ <div class="other-apps">
202
+ <div class="app-card">
203
+ <div class="circle"><div class="bug-shape"></div></div>
204
+ <div class="app-title">Bug reports</div>
205
+ </div>
206
+ <div class="app-card">
207
+ <div class="circle">
208
+ <div class="drive-triangle"></div>
209
+ </div>
210
+ <div class="app-title">Drive</div>
211
+ <div class="app-sub">andreaswagner98b@g…</div>
212
+ </div>
213
+ <div class="app-card">
214
+ <div class="circle">
215
+ <div class="drive-triangle" style="background:#4fc3f7;"></div>
216
+ </div>
217
+ <div class="app-title">Drive</div>
218
+ <div class="app-sub">clarawagner98b@gmail…</div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+
223
+ <!-- Recent files -->
224
+ <div class="recent-header" style="margin-top:520px;">
225
+ <div class="title">Recent files</div>
226
+ <div class="grid-icon">
227
+ <span></span><span></span><span></span><span></span>
228
+ </div>
229
+ </div>
230
+
231
+ <div class="file-list">
232
+ <div class="file-item">
233
+ <div class="file-icon pdf">PDF</div>
234
+ <div class="file-info">
235
+ <div class="file-name">germanycountryst00sols-1.pdf</div>
236
+ <div class="file-meta">8:52 AM, 51.00 MB, PDF document</div>
237
+ </div>
238
+ <div class="actions">
239
+ <div class="action-icon"></div>
240
+ <div class="action-icon"></div>
241
+ </div>
242
+ </div>
243
+
244
+ <div class="file-item">
245
+ <div class="file-icon pdf">PDF</div>
246
+ <div class="file-info">
247
+ <div class="file-name">germanycountryst00sols.pdf</div>
248
+ <div class="file-meta">8:04 AM, 51.00 MB, PDF document</div>
249
+ </div>
250
+ <div class="actions">
251
+ <div class="action-icon"></div>
252
+ <div class="action-icon"></div>
253
+ </div>
254
+ </div>
255
+
256
+ <div class="file-item">
257
+ <div class="file-icon pdf">PDF</div>
258
+ <div class="file-info">
259
+ <div class="file-name">iess303.pdf</div>
260
+ <div class="file-meta">8:00 AM, 5.90 MB, PDF document</div>
261
+ </div>
262
+ <div class="actions">
263
+ <div class="action-icon"></div>
264
+ <div class="action-icon"></div>
265
+ </div>
266
+ </div>
267
+
268
+ <div class="file-item">
269
+ <div class="file-icon txt">TXT</div>
270
+ <div class="file-info">
271
+ <div class="file-name">screenshot.txt</div>
272
+ <div class="file-meta">Nov 7, 1.41 MB, TXT document</div>
273
+ </div>
274
+ <div class="actions">
275
+ <div class="action-icon"></div>
276
+ <div class="action-icon"></div>
277
+ </div>
278
+ </div>
279
+
280
+ <div class="file-item">
281
+ <div class="file-icon txt">TXT</div>
282
+ <div class="file-info">
283
+ <div class="file-name">actuation_result.txt</div>
284
+ <div class="file-meta">Nov 7, 8 B, TXT document</div>
285
+ </div>
286
+ <div class="actions">
287
+ <div class="action-icon"></div>
288
+ <div class="action-icon"></div>
289
+ </div>
290
+ </div>
291
+
292
+ <div class="file-item">
293
+ <div class="file-icon txt">TXT</div>
294
+ <div class="file-info">
295
+ <div class="file-name">agents.txt</div>
296
+ <div class="file-meta">Nov 7, 1.15 kB, TXT document</div>
297
+ </div>
298
+ <div class="actions">
299
+ <div class="action-icon"></div>
300
+ <div class="action-icon"></div>
301
+ </div>
302
+ </div>
303
+
304
+ <div class="file-item">
305
+ <div class="file-icon txt">TXT</div>
306
+ <div class="file-info">
307
+ <div class="file-name">os_info.txt</div>
308
+ <div class="file-meta">Nov 7, 32 B, TXT document</div>
309
+ </div>
310
+ <div class="actions">
311
+ <div class="action-icon"></div>
312
+ <div class="action-icon"></div>
313
+ </div>
314
+ </div>
315
+
316
+ <div class="file-item">
317
+ <div class="img-thumb">[IMG: Photo Thumbnail]</div>
318
+ <div class="file-info">
319
+ <div class="file-name">PXL_20231020_143650361.jpg</div>
320
+ <div class="file-meta">Recent image</div>
321
+ </div>
322
+ <div class="actions">
323
+ <div class="action-icon"></div>
324
+ <div class="action-icon"></div>
325
+ </div>
326
+ </div>
327
+
328
+ </div>
329
+
330
+ </div>
331
+ </body>
332
+ </html>
code/3485/3485_5.html ADDED
@@ -0,0 +1,369 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Android File Picker Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #0e1418;
14
+ color: #eaeef2;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 84px;
20
+ padding: 0 28px;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: space-between;
24
+ color: #b8c2c8;
25
+ font-size: 34px;
26
+ letter-spacing: 0.5px;
27
+ }
28
+ .status-icons {
29
+ display: flex;
30
+ gap: 24px;
31
+ align-items: center;
32
+ }
33
+ .battery {
34
+ display: inline-flex; align-items: center; gap: 10px;
35
+ }
36
+ .battery .box {
37
+ width: 48px; height: 24px; border: 3px solid #b8c2c8; border-radius: 4px; position: relative;
38
+ }
39
+ .battery .box:after {
40
+ content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 12px; background: #b8c2c8; border-radius: 2px;
41
+ }
42
+ .battery .level {
43
+ position: absolute; left: 2px; top: 2px; bottom: 2px; width: 80%; background: #b8c2c8;
44
+ }
45
+
46
+ /* App bar */
47
+ .app-bar {
48
+ height: 108px;
49
+ padding: 0 28px;
50
+ display: flex; align-items: center; justify-content: space-between;
51
+ border-bottom: 1px solid #1a232a;
52
+ }
53
+ .app-left, .app-right { display: flex; align-items: center; gap: 24px; }
54
+ .title { font-size: 46px; font-weight: 600; }
55
+ .text-btn { color: #cfd8dc; font-size: 34px; }
56
+ .icon-btn { width: 64px; height: 64px; display:flex;align-items:center;justify-content:center; border-radius: 50%; }
57
+ .icon-btn svg { width: 36px; height: 36px; fill: #cfd8dc; }
58
+
59
+ /* Chips */
60
+ .chips {
61
+ padding: 24px 28px 10px;
62
+ display: flex; gap: 22px; flex-wrap: nowrap;
63
+ }
64
+ .chip {
65
+ display: inline-flex; align-items: center; gap: 16px;
66
+ padding: 18px 26px;
67
+ border: 1px solid #2a343b;
68
+ background: #0f1820;
69
+ color: #e5ecf0;
70
+ border-radius: 18px;
71
+ font-size: 34px;
72
+ }
73
+ .chip svg { width: 36px; height: 36px; fill: #8fb1ff; }
74
+
75
+ /* Section headings */
76
+ .section-title {
77
+ padding: 26px 28px 14px;
78
+ color: #8fa1ad; font-size: 30px; text-transform: none; letter-spacing: 0.2px;
79
+ }
80
+
81
+ /* Browse grid */
82
+ .browse-grid {
83
+ display: grid;
84
+ grid-template-columns: repeat(3, 1fr);
85
+ padding: 8px 28px 8px;
86
+ gap: 18px;
87
+ align-items: start;
88
+ }
89
+ .browse-item {
90
+ display: flex; flex-direction: column; align-items: center; gap: 16px;
91
+ }
92
+ .circle {
93
+ width: 98px; height: 98px; border-radius: 50%;
94
+ display: flex; align-items: center; justify-content: center;
95
+ background: #1c262d; border: 1px solid #2a343c;
96
+ }
97
+ .circle svg { width: 56px; height: 56px; }
98
+ .browse-label { color: #cfd8dc; font-size: 30px; text-align: center; }
99
+ .sub-label { color: #7e909c; font-size: 26px; text-align: center; max-width: 320px; line-height: 1.2; }
100
+
101
+ .recent-title-wrap {
102
+ display:flex; align-items:center; justify-content: space-between;
103
+ padding: 18px 28px 8px;
104
+ }
105
+ .recent-title { color: #cfd8dc; font-size: 34px; }
106
+ .grid-icon { width: 48px; height: 48px; }
107
+
108
+ /* File list */
109
+ .list {
110
+ margin-top: 6px;
111
+ }
112
+ .row {
113
+ position: relative;
114
+ padding: 26px 28px;
115
+ min-height: 160px;
116
+ border-top: 1px solid #162026;
117
+ display: grid;
118
+ grid-template-columns: 80px 1fr 160px;
119
+ align-items: center;
120
+ column-gap: 24px;
121
+ }
122
+ .row .left-icon {
123
+ width: 64px; height: 64px; display:flex; align-items:center; justify-content:center;
124
+ }
125
+ .file-title { font-size: 36px; color: #e9eef1; line-height: 1.2; }
126
+ .file-meta { font-size: 28px; color: #8fa1ad; margin-top: 8px; }
127
+ .row-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
128
+ .square {
129
+ width: 54px; height: 54px; border: 2px solid #3a4a55; border-radius: 6px;
130
+ }
131
+
132
+ .selected {
133
+ background: #0b2e24;
134
+ box-shadow: inset 0 0 0 2px #1a5e47;
135
+ }
136
+ .check {
137
+ width: 58px; height: 58px; border-radius: 50%;
138
+ background: #0f3f2e; border: 2px solid #2e8b57; display:flex; align-items:center; justify-content:center;
139
+ }
140
+ .check svg { width: 34px; height: 34px; fill: #5fd39d; }
141
+
142
+ /* Small helpers */
143
+ .pdf-icon svg, .txt-icon svg { width: 54px; height: 54px; }
144
+ .pdf-icon svg { fill: #ff8a80; }
145
+ .txt-icon svg { fill: #7ec8ff; }
146
+ </style>
147
+ </head>
148
+ <body>
149
+ <div id="render-target">
150
+
151
+ <!-- Status bar -->
152
+ <div class="status-bar">
153
+ <div>11:43</div>
154
+ <div class="status-icons">
155
+ <span>✓</span>
156
+ <span>G</span>
157
+ <span>M</span>
158
+ <span>M</span>
159
+ <span>!</span>
160
+ <div class="battery">
161
+ <div class="box"><div class="level"></div></div>
162
+ <span>100%</span>
163
+ </div>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- App bar -->
168
+ <div class="app-bar">
169
+ <div class="app-left">
170
+ <div class="icon-btn" aria-label="Back">
171
+ <svg viewBox="0 0 24 24"><path d="M18.3 5.7L12 12l6.3 6.3-1.4 1.4L10.6 12l6.3-7.7z" transform="translate(-2 0) rotate(45 12 12)"/></svg>
172
+ </div>
173
+ <div class="title">1 selected</div>
174
+ </div>
175
+ <div class="app-right">
176
+ <div class="text-btn">Select</div>
177
+ <div class="icon-btn" aria-label="More">
178
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2.2"/><circle cx="12" cy="12" r="2.2"/><circle cx="12" cy="19" r="2.2"/></svg>
179
+ </div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Chips -->
184
+ <div class="chips">
185
+ <div class="chip">
186
+ <svg viewBox="0 0 24 24"><path d="M19 19H5a2 2 0 0 1-2-2V7c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2zm-6-3l3-4 4 5H4l5-7 4 6z"/></svg>
187
+ <span>Images</span>
188
+ </div>
189
+ <div class="chip">
190
+ <svg viewBox="0 0 24 24"><path d="M3 10v4h4l5 5V5L7 10H3zm13.5 2a2.5 2.5 0 0 0 0-5v5z"/></svg>
191
+ <span>Audio</span>
192
+ </div>
193
+ <div class="chip">
194
+ <svg viewBox="0 0 24 24"><path d="M8 5v14l11-7L8 5z"/></svg>
195
+ <span>Videos</span>
196
+ </div>
197
+ <div class="chip">
198
+ <svg viewBox="0 0 24 24"><path d="M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1v5h5"/></svg>
199
+ <span>Documents</span>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Browse files in other apps -->
204
+ <div class="section-title">BROWSE FILES IN OTHER APPS</div>
205
+ <div class="browse-grid">
206
+ <div class="browse-item">
207
+ <div class="circle">
208
+ <!-- Bug icon -->
209
+ <svg viewBox="0 0 24 24" fill="#86d18f"><path d="M14 6V4h-4v2H6.5L5 7.5 6.5 9H10v2H7l-3-3-1 1 3 3H2v2h4l-3 3 1 1 3-3h3v2H6.5L5 18.5 6.5 20H10v2h4v-2h3.5l1.5-1.5L17.5 18H14v-2h3l3 3 1-1-3-3h4v-2h-4l3-3-1-1-3 3h-3V9h3.5L19 7.5 17.5 6H14z"/></svg>
210
+ </div>
211
+ <div class="browse-label">Bug reports</div>
212
+ </div>
213
+ <div class="browse-item">
214
+ <div class="circle">
215
+ <!-- Drive like triangle -->
216
+ <svg viewBox="0 0 24 24">
217
+ <path d="M7 3l5 0 5 8-5 8H7L2 11 7 3z" fill="#8bc34a"/>
218
+ </svg>
219
+ </div>
220
+ <div class="browse-label">Drive</div>
221
+ <div class="sub-label">andreaswagner98b@g...</div>
222
+ </div>
223
+ <div class="browse-item">
224
+ <div class="circle">
225
+ <svg viewBox="0 0 24 24">
226
+ <path d="M7 3l5 0 5 8-5 8H7L2 11 7 3z" fill="#8bc34a"/>
227
+ </svg>
228
+ </div>
229
+ <div class="browse-label">Drive</div>
230
+ <div class="sub-label">clarawagner98b@gmail...</div>
231
+ </div>
232
+ </div>
233
+
234
+ <div class="recent-title-wrap">
235
+ <div class="recent-title">Recent files</div>
236
+ <svg class="grid-icon" viewBox="0 0 24 24" fill="#7b8b95">
237
+ <path d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"/>
238
+ </svg>
239
+ </div>
240
+
241
+ <!-- File list -->
242
+ <div class="list">
243
+
244
+ <!-- Selected Row -->
245
+ <div class="row selected">
246
+ <div class="left-icon">
247
+ <div class="check">
248
+ <svg viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5-1.4 1.4L9 19 20.3 7.7l-1.4-1.4z"/></svg>
249
+ </div>
250
+ </div>
251
+ <div>
252
+ <div class="file-title">germanycountryst00sols-1.pdf</div>
253
+ <div class="file-meta">8:52 AM, 51.00 MB, PDF document</div>
254
+ </div>
255
+ <div class="row-actions">
256
+ <div class="square"></div>
257
+ <div class="square"></div>
258
+ </div>
259
+ </div>
260
+
261
+ <!-- Row 2 -->
262
+ <div class="row">
263
+ <div class="left-icon pdf-icon">
264
+ <svg viewBox="0 0 24 24"><path d="M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1v5h5"/><path d="M8 14h3v-2H8v2zm5 0h3v-2h-3v2z"/></svg>
265
+ </div>
266
+ <div>
267
+ <div class="file-title">germanycountryst00sols.pdf</div>
268
+ <div class="file-meta">8:04 AM, 51.00 MB, PDF document</div>
269
+ </div>
270
+ <div class="row-actions">
271
+ <div class="square"></div>
272
+ <div class="square"></div>
273
+ </div>
274
+ </div>
275
+
276
+ <!-- Row 3 -->
277
+ <div class="row">
278
+ <div class="left-icon pdf-icon">
279
+ <svg viewBox="0 0 24 24"><path d="M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1v5h5"/><path d="M8 14h8v-2H8v2z"/></svg>
280
+ </div>
281
+ <div>
282
+ <div class="file-title">iess303.pdf</div>
283
+ <div class="file-meta">8:00 AM, 5.90 MB, PDF document</div>
284
+ </div>
285
+ <div class="row-actions">
286
+ <div class="square"></div>
287
+ <div class="square"></div>
288
+ </div>
289
+ </div>
290
+
291
+ <!-- Row 4 -->
292
+ <div class="row">
293
+ <div class="left-icon txt-icon">
294
+ <svg viewBox="0 0 24 24"><path d="M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1v5h5"/><path d="M7 13h10v2H7zm0 4h10v2H7z"/></svg>
295
+ </div>
296
+ <div>
297
+ <div class="file-title">screenshot.txt</div>
298
+ <div class="file-meta">Nov 7, 1.41 MB, TXT document</div>
299
+ </div>
300
+ <div class="row-actions">
301
+ <div class="square"></div>
302
+ <div class="square"></div>
303
+ </div>
304
+ </div>
305
+
306
+ <!-- Row 5 -->
307
+ <div class="row">
308
+ <div class="left-icon txt-icon">
309
+ <svg viewBox="0 0 24 24"><path d="M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1v5h5"/><path d="M7 13h10v2H7z"/></svg>
310
+ </div>
311
+ <div>
312
+ <div class="file-title">actuation_result.txt</div>
313
+ <div class="file-meta">Nov 7, 8 B, TXT document</div>
314
+ </div>
315
+ <div class="row-actions">
316
+ <div class="square"></div>
317
+ <div class="square"></div>
318
+ </div>
319
+ </div>
320
+
321
+ <!-- Row 6 -->
322
+ <div class="row">
323
+ <div class="left-icon txt-icon">
324
+ <svg viewBox="0 0 24 24"><path d="M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1v5h5"/><path d="M7 13h8v2H7zm0 4h11v2H7z"/></svg>
325
+ </div>
326
+ <div>
327
+ <div class="file-title">agents.txt</div>
328
+ <div class="file-meta">Nov 7, 1.15 kB, TXT document</div>
329
+ </div>
330
+ <div class="row-actions">
331
+ <div class="square"></div>
332
+ <div class="square"></div>
333
+ </div>
334
+ </div>
335
+
336
+ <!-- Row 7 -->
337
+ <div class="row">
338
+ <div class="left-icon txt-icon">
339
+ <svg viewBox="0 0 24 24"><path d="M6 2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm8 1v5h5"/><path d="M7 13h9v2H7zm0 4h6v2H7z"/></svg>
340
+ </div>
341
+ <div>
342
+ <div class="file-title">os_info.txt</div>
343
+ <div class="file-meta">Nov 7, 32 B, TXT document</div>
344
+ </div>
345
+ <div class="row-actions">
346
+ <div class="square"></div>
347
+ <div class="square"></div>
348
+ </div>
349
+ </div>
350
+
351
+ <!-- Row 8 (image placeholder) -->
352
+ <div class="row">
353
+ <div class="left-icon">
354
+ <div style="width:60px;height:60px;background:#E0E0E0;border:1px solid #BDBDBD;display:flex;align-items:center;justify-content:center;color:#757575;font-size:18px;">IMG</div>
355
+ </div>
356
+ <div>
357
+ <div class="file-title">PXL_20231020_143650361.jpg</div>
358
+ <div class="file-meta">Image • Recent</div>
359
+ </div>
360
+ <div class="row-actions">
361
+ <div class="square"></div>
362
+ <div class="square"></div>
363
+ </div>
364
+ </div>
365
+
366
+ </div>
367
+ </div>
368
+ </body>
369
+ </html>
code/3485/3485_6.html ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Dropbox Mobile UI</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#0f0f0f; color:#fff;
10
+ }
11
+ .status-bar {
12
+ height:92px; padding:0 32px; display:flex; align-items:center; justify-content:space-between; font-size:42px; color:#e6e6e6;
13
+ }
14
+ .status-icons { display:flex; align-items:center; gap:28px; }
15
+ .nav-bar {
16
+ height:120px; padding:0 32px; display:flex; align-items:center; justify-content:space-between;
17
+ }
18
+ .brand { display:flex; align-items:center; gap:28px; font-size:64px; font-weight:700; }
19
+ .icon-btn { width:72px; height:72px; display:flex; align-items:center; justify-content:center; }
20
+ .search {
21
+ margin:22px 32px; height:120px; border-radius:60px; background:#1b1b1b; display:flex; align-items:center; padding:0 36px; color:#bdbdbd; font-size:44px; border:1px solid #2a2a2a;
22
+ }
23
+ .chip-row { display:flex; gap:26px; padding:0 32px; }
24
+ .chip {
25
+ flex:1; height:140px; border-radius:18px; background:#1b1b1b; border:1px solid #2a2a2a;
26
+ display:flex; align-items:center; justify-content:center; gap:20px; font-size:52px; color:#eaeaea; font-weight:600;
27
+ }
28
+ .sub { font-size:38px; color:#9aa0a6; font-weight:600; }
29
+ .sort-row {
30
+ padding:34px 32px 26px; display:flex; align-items:center; justify-content:space-between; font-size:48px; color:#eaeaea;
31
+ }
32
+ .card {
33
+ margin:0 32px; padding:34px; border-radius:22px; background:#121212; border:1px solid #2b2b2b; color:#eaeaea;
34
+ }
35
+ .card .top { display:flex; align-items:center; justify-content:space-between; }
36
+ .file-list { padding:24px 0 0; }
37
+ .file-item {
38
+ padding:34px 32px; display:flex; align-items:flex-start; gap:28px; border-bottom:1px solid #1e1e1e;
39
+ }
40
+ .thumb {
41
+ width:94px; height:94px; background:#5b614e; border-radius:8px; border:1px solid #3a3a3a;
42
+ }
43
+ .file-content { flex:1; }
44
+ .title { font-size:46px; color:#eaeaea; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
45
+ .meta { font-size:36px; color:#9aa0a6; margin-top:10px; }
46
+ .menu { width:72px; height:72px; display:flex; align-items:center; justify-content:center; }
47
+ .pdf-badge {
48
+ width:94px; height:94px; border-radius:12px; background:#fff; color:#e53935; display:flex; align-items:center; justify-content:center;
49
+ font-weight:800; font-size:38px; border:1px solid #cfcfcf;
50
+ }
51
+ .progress {
52
+ height:16px; background:#1c2c4a; border-radius:10px; margin-top:22px; position:relative; overflow:hidden;
53
+ }
54
+ .progress .bar { position:absolute; left:0; top:0; height:100%; width:22%; background:#1e6be7; border-radius:10px; }
55
+ .divider { height:2px; background:#2a2a2a; margin:24px 32px 0; }
56
+ .fab {
57
+ position:absolute; right:42px; bottom:220px; width:156px; height:156px; border-radius:50%;
58
+ background:#2d7ef7; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px rgba(0,0,0,0.5);
59
+ }
60
+ .bottom-nav {
61
+ position:absolute; left:0; bottom:0; width:100%; height:200px; background:#101010; border-top:1px solid #212121;
62
+ display:flex; align-items:center; justify-content:space-around; color:#cfcfcf;
63
+ }
64
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:10px; font-size:40px; }
65
+ .nav-item.active { color:#ffffff; }
66
+ .dot { width:24px; height:24px; background:#ff8a65; border-radius:50%; position:absolute; top:-10px; right:-16px; }
67
+ .icon { width:54px; height:54px; }
68
+ /* simple caret */
69
+ .caret { display:inline-flex; align-items:center; gap:8px; }
70
+ </style>
71
+ </head>
72
+ <body>
73
+ <div id="render-target">
74
+
75
+ <!-- Status bar -->
76
+ <div class="status-bar">
77
+ <div>11:43</div>
78
+ <div class="status-icons">
79
+ <!-- small mail / notif / wifi / battery icons -->
80
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#cfcfcf" d="M3 5h18v14H3V5zm2 2v10h14V7l-7 5-7-5z"/></svg>
81
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#cfcfcf" d="M12 3C7 3 3 7 3 12h3c0-3.3 2.7-6 6-6V3z"/></svg>
82
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#cfcfcf" d="M12 4c5 0 9 4 9 9h-3a6 6 0 10-6-6V4z"/></svg>
83
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#cfcfcf" d="M20 6h2v12h-2zM2 18h16V6H2v12zm10 0h4V8h-4v10z"/></svg>
84
+ </div>
85
+ </div>
86
+
87
+ <!-- App bar -->
88
+ <div class="nav-bar">
89
+ <div class="brand">
90
+ <!-- hamburger -->
91
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#eaeaea" d="M3 5h18v2H3zm0 6h18v2H3zm0 6h18v2H3z"/></svg>
92
+ <div>Dropbox</div>
93
+ </div>
94
+ <div style="display:flex; align-items:center; gap:28px;">
95
+ <!-- upload cloud -->
96
+ <div class="icon-btn">
97
+ <svg viewBox="0 0 24 24" width="60" height="60"><path fill="#2d7ef7" d="M12 16l-4-4h3V7h2v5h3l-4 4z"/><path fill="#2d7ef7" d="M6 18h12a4 4 0 100-8h-.6A6 6 0 006 9a4 4 0 000 9z"/></svg>
98
+ </div>
99
+ <!-- checkbox -->
100
+ <div class="icon-btn">
101
+ <svg viewBox="0 0 24 24" width="60" height="60"><rect x="3" y="3" width="18" height="18" fill="none" stroke="#eaeaea" stroke-width="2"/><path d="M6 12l3 3 7-7" stroke="#eaeaea" stroke-width="2" fill="none"/></svg>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+ <!-- Search -->
107
+ <div class="search">
108
+ <svg class="icon" viewBox="0 0 24 24" style="margin-right:22px;"><circle cx="10" cy="10" r="6" stroke="#9aa0a6" stroke-width="2" fill="none"/><path d="M21 21l-6-6" stroke="#9aa0a6" stroke-width="2"/></svg>
109
+ <div>Search for anything</div>
110
+ </div>
111
+
112
+ <!-- Chips -->
113
+ <div class="chip-row">
114
+ <div class="chip">
115
+ <svg viewBox="0 0 24 24" width="54" height="54"><path fill="#cfcfcf" d="M5 5h14v14H5z"/><path fill="#2d7ef7" d="M11 7h2v6h3l-4 4-4-4h3V7z"/></svg>
116
+ <div>Upload</div>
117
+ </div>
118
+ <div class="chip">
119
+ <svg viewBox="0 0 24 24" width="54" height="54"><path fill="#cfcfcf" d="M4 6h16v12H4z"/><path fill="#2d7ef7" d="M8 10h8v2H8zM8 13h6v2H8z"/></svg>
120
+ <div>Folder</div>
121
+ </div>
122
+ <div class="chip">
123
+ <svg viewBox="0 0 24 24" width="54" height="54"><rect x="4" y="4" width="16" height="16" fill="#cfcfcf"/><rect x="7" y="7" width="10" height="10" fill="#121212"/><path d="M11 7h2v10h-2z" fill="#2d7ef7"/></svg>
124
+ <div>Scan</div>
125
+ </div>
126
+ </div>
127
+
128
+ <!-- Sort -->
129
+ <div class="sort-row">
130
+ <div class="caret">Name
131
+ <svg viewBox="0 0 24 24" width="40" height="40"><path fill="#cfcfcf" d="M7 10l5 5 5-5H7z"/></svg>
132
+ </div>
133
+ <svg viewBox="0 0 24 24" width="56" height="56"><path fill="#cfcfcf" d="M3 3h8v8H3zM13 3h8v8h-8zM3 13h8v8H3zM13 13h8v8h-8z"/></svg>
134
+ </div>
135
+
136
+ <!-- Promo card -->
137
+ <div class="card">
138
+ <div class="top">
139
+ <div style="font-size:48px;">Get these files on your computer</div>
140
+ <svg viewBox="0 0 24 24" width="54" height="54"><path stroke="#cfcfcf" stroke-width="2" d="M6 6l12 12M18 6L6 18"/></svg>
141
+ </div>
142
+ <div class="sub" style="margin-top:16px;">Sync files</div>
143
+ </div>
144
+
145
+ <!-- Files -->
146
+ <div class="file-list">
147
+ <!-- File item 1 -->
148
+ <div class="file-item">
149
+ <div class="thumb"></div>
150
+ <div class="file-content">
151
+ <div class="title">A_short_history_of...yofge00hawt).pdf</div>
152
+ <div class="meta">16 MB, modified 2 hours ago</div>
153
+ </div>
154
+ <div class="menu">
155
+ <svg viewBox="0 0 24 24" width="54" height="54"><circle cx="5" cy="12" r="2" fill="#cfcfcf"/><circle cx="12" cy="12" r="2" fill="#cfcfcf"/><circle cx="19" cy="12" r="2" fill="#cfcfcf"/></svg>
156
+ </div>
157
+ </div>
158
+
159
+ <!-- File item 2 with progress -->
160
+ <div class="file-item" style="border-bottom:none;">
161
+ <div class="pdf-badge">PDF</div>
162
+ <div class="file-content">
163
+ <div class="title" style="color:#bfc4ca;">germanycountryst00sols-1.pdf</div>
164
+ <div class="progress"><div class="bar"></div></div>
165
+ </div>
166
+ <div class="menu">
167
+ <svg viewBox="0 0 24 24" width="54" height="54"><circle cx="5" cy="12" r="2" fill="#cfcfcf"/><circle cx="12" cy="12" r="2" fill="#cfcfcf"/><circle cx="19" cy="12" r="2" fill="#cfcfcf"/></svg>
168
+ </div>
169
+ </div>
170
+ <div class="divider"></div>
171
+ </div>
172
+
173
+ <!-- Floating Add Button -->
174
+ <div class="fab">
175
+ <svg viewBox="0 0 24 24" width="96" height="96"><path d="M11 5h2v14h-2zM5 11h14v2H5z" fill="#fff"/></svg>
176
+ </div>
177
+
178
+ <!-- Bottom navigation -->
179
+ <div class="bottom-nav">
180
+ <div class="nav-item" style="position:relative;">
181
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#cfcfcf" d="M12 3l9 8h-3v10H6V11H3l9-8z"/></svg>
182
+ <div>Home</div>
183
+ <div class="dot"></div>
184
+ </div>
185
+ <div class="nav-item active">
186
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#fff" d="M4 4h16v2H4zM4 10h16v2H4zM4 16h16v2H4z"/></svg>
187
+ <div>Files</div>
188
+ </div>
189
+ <div class="nav-item">
190
+ <svg class="icon" viewBox="0 0 24 24"><rect x="4" y="6" width="16" height="12" fill="#cfcfcf"/><rect x="7" y="9" width="10" height="6" fill="#101010"/><path d="M7 9l3-3h4l3 3" fill="#cfcfcf"/></svg>
191
+ <div>Photos</div>
192
+ </div>
193
+ <div class="nav-item">
194
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="8" r="4" fill="#cfcfcf"/><path fill="#cfcfcf" d="M4 21c0-4 4-7 8-7s8 3 8 7H4z"/></svg>
195
+ <div>Account</div>
196
+ </div>
197
+ </div>
198
+
199
+ </div>
200
+ </body>
201
+ </html>
code/3485/3485_7.html ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Dropbox UI Mock</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px; position:relative; overflow:hidden;
10
+ background:#121212; color:#fff;
11
+ }
12
+ .status-bar {
13
+ height:90px; padding:0 36px; display:flex; align-items:center; justify-content:space-between;
14
+ font-size:34px; color:#eaeaea;
15
+ }
16
+ .row { display:flex; align-items:center; }
17
+ .hdr {
18
+ height:120px; padding:0 36px; display:flex; align-items:center; justify-content:space-between;
19
+ }
20
+ .title { font-size:64px; font-weight:700; margin-left:18px; }
21
+ .search {
22
+ margin:24px 36px 0; height:110px; border-radius:56px; background:#1f1f1f; color:#bdbdbd;
23
+ display:flex; align-items:center; padding:0 36px; font-size:40px;
24
+ }
25
+ .pill-row { display:flex; gap:24px; padding:28px 36px; }
26
+ .pill {
27
+ flex:0 0 310px; height:130px; border-radius:18px; background:#1f1f1f; display:flex; align-items:center; justify-content:center;
28
+ gap:22px; font-size:42px; color:#eaeaea;
29
+ }
30
+ .subtle { color:#bfbfbf; }
31
+ .sort-row {
32
+ padding:10px 36px; height:90px; display:flex; align-items:center; justify-content:space-between; font-size:42px;
33
+ }
34
+ .banner {
35
+ margin:0 36px; background:#1f1f1f; border-radius:18px; padding:28px; color:#eaeaea;
36
+ display:flex; align-items:center; justify-content:space-between; font-size:42px;
37
+ }
38
+ .banner .sub { font-size:36px; color:#bdbdbd; margin-top:8px; }
39
+ .files {
40
+ padding:16px 0 0;
41
+ }
42
+ .item {
43
+ padding:30px 36px; display:flex; align-items:center; justify-content:space-between;
44
+ border-bottom:1px solid #1e1e1e;
45
+ }
46
+ .item-left { display:flex; align-items:center; gap:28px; }
47
+ .thumb {
48
+ width:96px; height:96px; background:#E0E0E0; border:1px solid #BDBDBD; color:#757575;
49
+ display:flex; align-items:center; justify-content:center; font-size:22px; border-radius:6px;
50
+ }
51
+ .meta .name { font-size:44px; color:#eaeaea; }
52
+ .meta .info { font-size:36px; color:#bdbdbd; margin-top:6px; }
53
+ .fab {
54
+ position:absolute; right:48px; bottom:330px; width:150px; height:150px; border-radius:75px;
55
+ background:#4c7bf5; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 18px rgba(0,0,0,0.5);
56
+ }
57
+ .snackbar {
58
+ position:absolute; left:36px; right:36px; bottom:190px; background:#ffffff; color:#222;
59
+ border-radius:18px; padding:28px 32px; display:flex; align-items:center; justify-content:space-between;
60
+ font-size:44px;
61
+ }
62
+ .snackbar .subtle { color:#555; font-size:40px; }
63
+ .copy-link { color:#4c7bf5; font-weight:700; font-size:44px; }
64
+ .bottom-nav {
65
+ position:absolute; bottom:0; left:0; right:0; height:140px; background:#1a1a1a;
66
+ display:flex; align-items:center; justify-content:space-around; border-top:1px solid #222;
67
+ }
68
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:10px; color:#cfcfcf; font-size:36px; }
69
+ .nav-item.active { color:#fff; }
70
+ .dot { position:absolute; left:120px; bottom:160px; width:18px; height:18px; background:#f4aa80; border-radius:9px; }
71
+ /* simple helper for SVG icons */
72
+ svg { fill:none; stroke:#eaeaea; stroke-width:6; }
73
+ .ic-muted svg { stroke:#bfbfbf; }
74
+ .white-fill svg { fill:#eaeaea; stroke:none; }
75
+ </style>
76
+ </head>
77
+ <body>
78
+ <div id="render-target">
79
+
80
+ <!-- Status bar -->
81
+ <div class="status-bar">
82
+ <div class="row" style="gap:18px;">
83
+ <div>11:44</div>
84
+ <span style="font-size:36px; color:#9e9e9e;">✉︎</span>
85
+ <span style="font-size:36px; color:#9e9e9e;">✓</span>
86
+ <span style="font-size:36px; color:#9e9e9e;">M</span>
87
+ <span style="font-size:36px; color:#f0c14b;">⚠︎</span>
88
+ </div>
89
+ <div class="row" style="gap:18px;">
90
+ <!-- WiFi -->
91
+ <svg width="52" height="40" viewBox="0 0 52 40"><path d="M4 12c10-8 34-8 44 0"/><path d="M10 18c7-6 25-6 32 0"/><path d="M18 24c4-3 12-3 16 0"/><circle cx="26" cy="32" r="4" fill="#eaeaea" stroke="none"/></svg>
92
+ <!-- Battery -->
93
+ <svg width="64" height="36" viewBox="0 0 64 36"><rect x="2" y="6" width="54" height="24" rx="4" stroke="#eaeaea"></rect><rect x="56" y="12" width="6" height="12" rx="2" stroke="#eaeaea"></rect><rect x="8" y="10" width="38" height="16" fill="#eaeaea" stroke="none"></rect></svg>
94
+ <div style="font-size:34px;">100%</div>
95
+ </div>
96
+ </div>
97
+
98
+ <!-- Header -->
99
+ <div class="hdr">
100
+ <div class="row" style="gap:24px;">
101
+ <!-- Hamburger -->
102
+ <svg width="60" height="60" viewBox="0 0 60 60"><path d="M10 18h40M10 30h40M10 42h40"/></svg>
103
+ <div class="title">Dropbox</div>
104
+ </div>
105
+ <div class="row" style="gap:30px;">
106
+ <!-- Upload icon -->
107
+ <svg width="60" height="60" viewBox="0 0 60 60"><path d="M30 38V18"/><path d="M22 26l8-8 8 8"/><path d="M12 42h36"/></svg>
108
+ <!-- Checkbox icon -->
109
+ <svg width="60" height="60" viewBox="0 0 60 60"><rect x="10" y="10" width="40" height="40" rx="6"></rect><path d="M18 32l8 8 16-18"/></svg>
110
+ </div>
111
+ </div>
112
+
113
+ <!-- Search -->
114
+ <div class="search">
115
+ <svg width="50" height="50" viewBox="0 0 50 50" class="ic-muted"><circle cx="22" cy="22" r="14"></circle><path d="M34 34l10 10"></path></svg>
116
+ <div style="margin-left:22px;">Search for anything</div>
117
+ </div>
118
+
119
+ <!-- Pills -->
120
+ <div class="pill-row">
121
+ <div class="pill">
122
+ <svg width="52" height="52" viewBox="0 0 52 52"><path d="M26 34V14"/><path d="M18 22l8-8 8 8"/><path d="M10 40h32"/></svg>
123
+ <div>Upload</div>
124
+ </div>
125
+ <div class="pill">
126
+ <svg width="56" height="52" viewBox="0 0 56 52"><path d="M10 16h24l12 10v16H10z"/><path d="M34 16v10h12"/></svg>
127
+ <div>Folder</div>
128
+ </div>
129
+ <div class="pill">
130
+ <svg width="52" height="52" viewBox="0 0 52 52"><rect x="10" y="10" width="32" height="22" rx="4"></rect><path d="M18 38h16"/><circle cx="26" cy="21" r="6"></circle></svg>
131
+ <div>Scan</div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Sort row -->
136
+ <div class="sort-row">
137
+ <div class="row" style="gap:12px;">
138
+ <div>Name</div>
139
+ <svg width="26" height="26" viewBox="0 0 26 26" class="ic-muted"><path d="M6 10l7 7 7-7"/></svg>
140
+ </div>
141
+ <svg width="50" height="50" viewBox="0 0 50 50" class="ic-muted"><rect x="8" y="8" width="12" height="12"></rect><rect x="30" y="8" width="12" height="12"></rect><rect x="8" y="30" width="12" height="12"></rect><rect x="30" y="30" width="12" height="12"></rect></svg>
142
+ </div>
143
+
144
+ <!-- Banner -->
145
+ <div class="banner">
146
+ <div>
147
+ <div>Get these files on your computer</div>
148
+ <div class="sub">Sync files</div>
149
+ </div>
150
+ <svg width="46" height="46" viewBox="0 0 46 46" class="ic-muted"><path d="M12 12l22 22M34 12L12 34"/></svg>
151
+ </div>
152
+
153
+ <!-- Files list -->
154
+ <div class="files">
155
+ <!-- Item 1 -->
156
+ <div class="item">
157
+ <div class="item-left">
158
+ <div class="thumb">[IMG: PDF]</div>
159
+ <div class="meta">
160
+ <div class="name">A_short_history_of...yofge00hawt).pdf</div>
161
+ <div class="info">16 MB, modified 2 hours ago</div>
162
+ </div>
163
+ </div>
164
+ <svg width="16" height="70" viewBox="0 0 16 70" class="ic-muted"><circle cx="8" cy="14" r="4" fill="#bfbfbf" stroke="none"></circle><circle cx="8" cy="34" r="4" fill="#bfbfbf" stroke="none"></circle><circle cx="8" cy="54" r="4" fill="#bfbfbf" stroke="none"></circle></svg>
165
+ </div>
166
+
167
+ <!-- Item 2 -->
168
+ <div class="item">
169
+ <div class="item-left">
170
+ <div class="thumb">[IMG: PDF]</div>
171
+ <div class="meta">
172
+ <div class="name">germanycountryst00sols-1.pdf</div>
173
+ <div class="info">49 MB, modified 1 second ago</div>
174
+ </div>
175
+ </div>
176
+ <svg width="16" height="70" viewBox="0 0 16 70" class="ic-muted"><circle cx="8" cy="14" r="4" fill="#bfbfbf" stroke="none"></circle><circle cx="8" cy="34" r="4" fill="#bfbfbf" stroke="none"></circle><circle cx="8" cy="54" r="4" fill="#bfbfbf" stroke="none"></circle></svg>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Floating action button -->
181
+ <div class="fab">
182
+ <svg width="70" height="70" viewBox="0 0 70 70" class="white-fill"><path d="M35 16v38M16 35h38"/></svg>
183
+ </div>
184
+
185
+ <!-- Snackbar -->
186
+ <div class="snackbar">
187
+ <div>
188
+ <div class="subtle">Uploaded</div>
189
+ <div>"germanycountryst00sols-1.pdf".</div>
190
+ </div>
191
+ <div class="copy-link">Copy link</div>
192
+ </div>
193
+
194
+ <!-- Bottom navigation -->
195
+ <div class="bottom-nav">
196
+ <div class="nav-item">
197
+ <!-- Home icon -->
198
+ <svg width="54" height="54" viewBox="0 0 54 54"><path d="M10 26l17-14 17 14"/><path d="M16 24v16h22V24"/></svg>
199
+ <div>Home</div>
200
+ </div>
201
+ <div class="nav-item active">
202
+ <!-- Files icon -->
203
+ <svg width="54" height="54" viewBox="0 0 54 54"><path d="M10 18h18l6 6h10v20H10z"/><path d="M28 18v6h6"/></svg>
204
+ <div>Files</div>
205
+ </div>
206
+ <div class="nav-item">
207
+ <!-- Photos icon -->
208
+ <svg width="54" height="54" viewBox="0 0 54 54"><rect x="8" y="12" width="38" height="30" rx="4"></rect><circle cx="22" cy="26" r="6"></circle><path d="M30 28l6-6 8 12"/></svg>
209
+ <div>Photos</div>
210
+ </div>
211
+ <div class="nav-item">
212
+ <!-- Account icon -->
213
+ <svg width="54" height="54" viewBox="0 0 54 54"><circle cx="27" cy="20" r="10"></circle><path d="M10 44c6-10 28-10 34 0"/></svg>
214
+ <div>Account</div>
215
+ </div>
216
+ </div>
217
+
218
+ <div class="dot"></div>
219
+ </div>
220
+ </body>
221
+ </html>
code/3486/3486_0.html ADDED
@@ -0,0 +1,273 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI - Restaurant Search</title>
5
+ <style>
6
+ body { margin:0; padding:0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
7
+ #render-target {
8
+ width:1440px; height:3120px; position:relative; overflow:hidden;
9
+ background:#ffffff;
10
+ }
11
+ /* Status bar */
12
+ .status-bar {
13
+ position:absolute; top:0; left:0; width:100%; height:120px; background:#C9C9C9;
14
+ display:flex; align-items:center; justify-content:space-between; padding:0 40px; color:#212121; font-weight:600; font-size:48px;
15
+ }
16
+ .status-left, .status-right { display:flex; align-items:center; gap:24px; }
17
+ .icon-circle { width:54px; height:54px; border-radius:27px; border:2px solid #7a7a7a; display:flex; align-items:center; justify-content:center; color:#7a7a7a; font-size:32px; }
18
+ /* Top controls */
19
+ .content { position:absolute; top:120px; left:0; right:0; bottom:240px; overflow:auto; }
20
+ .top-area { padding:40px; }
21
+ .pill {
22
+ display:flex; align-items:center; gap:24px;
23
+ background:#fff; border:2px solid #E3E3E3; box-shadow:0 6px 20px rgba(0,0,0,0.06);
24
+ border-radius:60px; padding:30px 40px; width:980px;
25
+ color:#333; font-size:44px;
26
+ }
27
+ .pill .count { display:flex; align-items:center; gap:16px; color:#222; }
28
+ .pill .dot { margin:0 8px; color:#666; }
29
+ .search-wrap {
30
+ margin-top:30px; display:flex; align-items:center; gap:24px;
31
+ }
32
+ .search-input {
33
+ flex:1; display:flex; align-items:center; gap:24px;
34
+ background:#fff; border:2px solid #E3E3E3; border-radius:30px; padding:28px 32px;
35
+ }
36
+ .search-texts { display:flex; flex-direction:column; }
37
+ .search-main { font-size:46px; color:#1f1f1f; font-weight:600; }
38
+ .search-sub { font-size:40px; color:#777; }
39
+ .map-btn {
40
+ width:92px; height:92px; border-radius:16px; border:2px solid #D0D0D0; background:#fff;
41
+ display:flex; align-items:center; justify-content:center;
42
+ }
43
+
44
+ /* Filter chips */
45
+ .chips { margin-top:30px; display:flex; gap:28px; flex-wrap:wrap; }
46
+ .chip {
47
+ display:flex; align-items:center; gap:18px; border:2px solid #E1E1E1; border-radius:28px; padding:24px 30px; background:#fff; color:#333; font-size:42px;
48
+ }
49
+ .chip .down { margin-left:10px; }
50
+
51
+ /* List header */
52
+ .list-header { font-size:48px; font-weight:700; color:#222; margin:40px 40px 20px 40px; }
53
+
54
+ /* Card */
55
+ .card {
56
+ margin:0 40px; padding:40px 30px; border-bottom:2px solid #EAEAEA;
57
+ }
58
+ .card-top { display:flex; align-items:center; justify-content:space-between; }
59
+ .card-title { font-size:64px; font-weight:800; color:#1e1e1e; max-width:900px; line-height:1.18; }
60
+ .card-image {
61
+ width:220px; height:220px; background:#E0E0E0; border:1px solid #BDBDBD; border-radius:12px;
62
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:36px; text-align:center; padding:10px;
63
+ }
64
+ .stars { margin-top:18px; display:flex; align-items:center; gap:16px; font-size:40px; color:#555; }
65
+ .stars .reviews { color:#333; }
66
+ .meta { margin-top:18px; display:flex; align-items:center; gap:16px; font-size:44px; color:#444; }
67
+ .price-line { margin-top:8px; font-size:44px; color:#444; }
68
+ .times { margin-top:30px; display:flex; gap:24px; }
69
+ .time-btn {
70
+ padding:26px 38px; border-radius:16px; font-size:46px; font-weight:700;
71
+ background:#E74C3C; color:#fff; border:none;
72
+ }
73
+ .time-btn.secondary { background:#D84D4D; }
74
+ .time-btn.disabled { background:#E9E9E9; color:#9E9E9E; }
75
+ .walkin { margin-top:34px; font-size:48px; color:#666; }
76
+ .waitlist-btn {
77
+ margin-top:24px; width:420px; padding:32px 40px; border-radius:18px; background:#2F6E8E;
78
+ color:#fff; font-size:48px; font-weight:800; text-align:center;
79
+ }
80
+
81
+ /* Bottom nav */
82
+ .bottom-nav {
83
+ position:absolute; bottom:0; left:0; width:100%; height:240px; background:#FAFAFA; border-top:2px solid #E4E4E4;
84
+ display:flex; align-items:center; justify-content:space-around;
85
+ }
86
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:16px; color:#606060; font-size:42px; }
87
+ .nav-item.active { color:#D13C3C; }
88
+ .badge-dot {
89
+ position:absolute; left:40px; bottom:200px; width:18px; height:18px; background:#999; border-radius:9px;
90
+ }
91
+ </style>
92
+ </head>
93
+ <body>
94
+ <div id="render-target">
95
+
96
+ <!-- Status Bar -->
97
+ <div class="status-bar">
98
+ <div class="status-left">
99
+ <div>8:28</div>
100
+ <div class="icon-circle">◯</div>
101
+ <div class="icon-circle">S</div>
102
+ <div class="icon-circle">🍽</div>
103
+ <div class="icon-circle">•</div>
104
+ </div>
105
+ <div class="status-right">
106
+ <!-- WiFi -->
107
+ <svg width="60" height="60" viewBox="0 0 24 24">
108
+ <path d="M12 18.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm-6.4-5.1 1.4 1.4A7 7 0 0 1 17 14.8l1.4-1.4A9.5 9.5 0 0 0 5.6 13.4zM3 9.2l1.4 1.4A11.9 11.9 0 0 1 19.6 10.6L21 9.2A14 14 0 0 0 3 9.2z" fill="#333"/>
109
+ </svg>
110
+ <!-- Ring/Notification -->
111
+ <svg width="60" height="60" viewBox="0 0 24 24">
112
+ <path d="M12 22a3 3 0 0 0 3-3H9a3 3 0 0 0 3 3zm8-6V11a8 8 0 1 0-16 0v5l-2 2v1h20v-1l-2-2z" fill="#333"/>
113
+ </svg>
114
+ <!-- Battery -->
115
+ <svg width="90" height="60" viewBox="0 0 32 24">
116
+ <rect x="2" y="4" width="24" height="16" rx="3" ry="3" fill="none" stroke="#333" stroke-width="2"/>
117
+ <rect x="4" y="6" width="18" height="12" fill="#4CAF50"/>
118
+ <rect x="26" y="8" width="4" height="8" rx="1" fill="#333"/>
119
+ </svg>
120
+ </div>
121
+ </div>
122
+
123
+ <div class="content">
124
+ <div class="top-area">
125
+ <!-- People/time pill -->
126
+ <div class="pill">
127
+ <svg width="54" height="54" viewBox="0 0 24 24">
128
+ <path d="M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm-7 9v-1a7 7 0 0 1 14 0v1H5z" fill="#444"/>
129
+ </svg>
130
+ <div class="count">2</div>
131
+ <div class="dot">•</div>
132
+ <svg width="54" height="54" viewBox="0 0 24 24">
133
+ <path d="M12 22A10 10 0 1 0 12 2a10 10 0 0 0 0 20zm1-10.6V6h-2v6h5v-2h-3z" fill="#444"/>
134
+ </svg>
135
+ <div>Tonight at 8:30 PM</div>
136
+ </div>
137
+
138
+ <!-- Search input with map -->
139
+ <div class="search-wrap">
140
+ <div class="search-input">
141
+ <svg width="56" height="56" viewBox="0 0 24 24">
142
+ <path d="M10 2a8 8 0 0 0 0 16c1.9 0 3.7-.7 5-1.8l5 5 2-2-5-5A8 8 0 0 0 10 2zm0 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8z" fill="#666"/>
143
+ </svg>
144
+ <div class="search-texts">
145
+ <div class="search-main">Lakaz Maman- Mauritian Street Kitchen</div>
146
+ <div class="search-sub">Current Location</div>
147
+ </div>
148
+ </div>
149
+ <div class="map-btn">
150
+ <svg width="56" height="56" viewBox="0 0 24 24">
151
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5 6 12 6 12s6-7 6-12c0-3.3-2.7-6-6-6zm0 8.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z" fill="#d44"/>
152
+ </svg>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Chips -->
157
+ <div class="chips">
158
+ <div class="chip">
159
+ <svg width="46" height="46" viewBox="0 0 24 24">
160
+ <path d="M4 4h16v3H4zM4 10h16v3H4zM4 16h16v3H4z" fill="#666"/>
161
+ </svg>
162
+ Cuisine
163
+ <svg class="down" width="36" height="36" viewBox="0 0 24 24">
164
+ <path d="M7 10l5 5 5-5z" fill="#666"/>
165
+ </svg>
166
+ </div>
167
+ <div class="chip">
168
+ <svg width="46" height="46" viewBox="0 0 24 24">
169
+ <path d="M4 9h16v8H4zM6 5h12v3H6z" fill="#666"/>
170
+ </svg>
171
+ Seating
172
+ <svg class="down" width="36" height="36" viewBox="0 0 24 24">
173
+ <path d="M7 10l5 5 5-5z" fill="#666"/>
174
+ </svg>
175
+ </div>
176
+ <div class="chip">
177
+ <svg width="46" height="46" viewBox="0 0 24 24">
178
+ <path d="M12 1l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 7.9 9 7z" fill="#666"/>
179
+ </svg>
180
+ Price
181
+ <svg class="down" width="36" height="36" viewBox="0 0 24 24">
182
+ <path d="M7 10l5 5 5-5z" fill="#666"/>
183
+ </svg>
184
+ </div>
185
+ <div class="chip">
186
+ <svg width="46" height="46" viewBox="0 0 24 24">
187
+ <path d="M3 3h18v6H3zM3 11h18v10H3z" fill="#666"/>
188
+ </svg>
189
+ Neighborhood
190
+ <svg class="down" width="36" height="36" viewBox="0 0 24 24">
191
+ <path d="M7 10l5 5 5-5z" fill="#666"/>
192
+ </svg>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- List header -->
197
+ <div class="list-header">1 Restaurant</div>
198
+
199
+ <!-- Card -->
200
+ <div class="card">
201
+ <div class="card-top">
202
+ <div class="card-title">Lakaz Maman - Mauritian Street Ki...</div>
203
+ <div class="card-image">[IMG: Plates of Mauritian dishes]</div>
204
+ </div>
205
+
206
+ <div class="stars">
207
+ <!-- Five red stars -->
208
+ <svg width="44" height="44" viewBox="0 0 24 24"><path d="M12 2l2.9 6h6.3l-5 4.1 1.8 6.4L12 16l-6 2.5 1.8-6.4-5-4.1h6.3z" fill="#d33"/></svg>
209
+ <svg width="44" height="44" viewBox="0 0 24 24"><path d="M12 2l2.9 6h6.3l-5 4.1 1.8 6.4L12 16l-6 2.5 1.8-6.4-5-4.1h6.3z" fill="#d33"/></svg>
210
+ <svg width="44" height="44" viewBox="0 0 24 24"><path d="M12 2l2.9 6h6.3l-5 4.1 1.8 6.4L12 16l-6 2.5 1.8-6.4-5-4.1h6.3z" fill="#d33"/></svg>
211
+ <svg width="44" height="44" viewBox="0 0 24 24"><path d="M12 2l2.9 6h6.3l-5 4.1 1.8 6.4L12 16l-6 2.5 1.8-6.4-5-4.1h6.3z" fill="#d33"/></svg>
212
+ <svg width="44" height="44" viewBox="0 0 24 24"><path d="M12 2l2.9 6h6.3l-5 4.1 1.8 6.4L12 16l-6 2.5 1.8-6.4-5-4.1h6.3z" fill="#d33"/></svg>
213
+ <div class="reviews">838 reviews</div>
214
+ </div>
215
+
216
+ <div class="meta">
217
+ <svg width="40" height="40" viewBox="0 0 24 24">
218
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5 6 12 6 12s6-7 6-12c0-3.3-2.7-6-6-6zm0 8.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z" fill="#444"/>
219
+ </svg>
220
+ Southampton
221
+ </div>
222
+ <div class="price-line">$$ • Mauritian</div>
223
+
224
+ <div class="times">
225
+ <button class="time-btn">8:15 PM</button>
226
+ <button class="time-btn secondary">8:30 PM</button>
227
+ <button class="time-btn disabled"> </button>
228
+ </div>
229
+
230
+ <div class="walkin">Walk-In</div>
231
+ <div class="waitlist-btn">Join Waitlist</div>
232
+ </div>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- Bottom Navigation -->
237
+ <div class="bottom-nav">
238
+ <div class="nav-item">
239
+ <svg width="72" height="72" viewBox="0 0 24 24">
240
+ <path d="M12 3l10 9h-3v9H5v-9H2z" fill="#606060"/>
241
+ </svg>
242
+ <div>Home</div>
243
+ </div>
244
+ <div class="nav-item active">
245
+ <svg width="72" height="72" viewBox="0 0 24 24">
246
+ <path d="M10 2a8 8 0 0 0 0 16c1.9 0 3.7-.7 5-1.8l5 5 2-2-5-5A8 8 0 0 0 10 2zm0 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8z" fill="#D13C3C"/>
247
+ </svg>
248
+ <div>Search</div>
249
+ </div>
250
+ <div class="nav-item">
251
+ <svg width="72" height="72" viewBox="0 0 24 24">
252
+ <path d="M6 2h12v20l-6-3-6 3z" fill="#606060"/>
253
+ </svg>
254
+ <div>Saved</div>
255
+ </div>
256
+ <div class="nav-item">
257
+ <svg width="72" height="72" viewBox="0 0 24 24">
258
+ <path d="M13 3h-2v8l6 3 .8-1.8-4.8-2.2V3zM4 5h4v2H4v-2zm0 6h8v2H4v-2zm0 6h12v2H4v-2z" fill="#606060"/>
259
+ </svg>
260
+ <div>History</div>
261
+ </div>
262
+ <div class="nav-item">
263
+ <svg width="72" height="72" viewBox="0 0 24 24">
264
+ <path d="M12 22a3 3 0 0 0 3-3H9a3 3 0 0 0 3 3zm8-6V11a8 8 0 1 0-16 0v5l-2 2v1h20v-1l-2-2z" fill="#606060"/>
265
+ </svg>
266
+ <div>Notifications</div>
267
+ </div>
268
+ </div>
269
+
270
+ <div class="badge-dot"></div>
271
+ </div>
272
+ </body>
273
+ </html>
code/3486/3486_1.html ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Lakaz Maman - Mauritian Street Kitchen</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1440px;
9
+ height: 3120px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ color: #222;
14
+ }
15
+ /* Top status bar and controls */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1440px;
21
+ height: 120px;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 40px;
25
+ color: #111;
26
+ z-index: 5;
27
+ }
28
+ .status-left, .status-right {
29
+ display: flex;
30
+ align-items: center;
31
+ }
32
+ .status-left { gap: 30px; }
33
+ .status-right { margin-left: auto; gap: 40px; }
34
+ .status-time { font-size: 48px; font-weight: 600; }
35
+ .icon-btn {
36
+ width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
37
+ background: rgba(255,255,255,0.85); border-radius: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.12);
38
+ }
39
+ .back-btn {
40
+ position: absolute; left: 26px; top: 180px; width: 96px; height: 96px;
41
+ display: flex; align-items: center; justify-content: center;
42
+ background: rgba(255,255,255,0.95); border-radius: 28px; box-shadow: 0 6px 12px rgba(0,0,0,0.15);
43
+ z-index: 6;
44
+ }
45
+
46
+ /* Hero image */
47
+ .hero {
48
+ position: absolute;
49
+ top: 0;
50
+ left: 0;
51
+ width: 1440px;
52
+ height: 860px;
53
+ background: #E0E0E0;
54
+ border-bottom: 1px solid #BDBDBD;
55
+ display: flex; align-items: flex-end; justify-content: center;
56
+ }
57
+ .hero-label {
58
+ color: #757575; font-size: 44px; position: absolute; top: 60%; left: 50%; transform: translate(-50%, -50%);
59
+ background: transparent;
60
+ }
61
+ .photo-cta {
62
+ position: absolute;
63
+ bottom: 70px; left: 50%; transform: translateX(-50%);
64
+ background: rgba(0,0,0,0.55);
65
+ color: #fff; font-size: 42px;
66
+ padding: 26px 40px; border-radius: 50px;
67
+ }
68
+
69
+ /* Content area */
70
+ .content {
71
+ position: absolute;
72
+ top: 860px;
73
+ left: 0;
74
+ width: 100%;
75
+ padding: 60px 60px 40px;
76
+ }
77
+ .title {
78
+ font-size: 80px; font-weight: 800; line-height: 1.2; margin-bottom: 40px;
79
+ }
80
+ .meta-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
81
+ .star { width: 48px; height: 48px; }
82
+ .reviews { font-size: 46px; color: #444; }
83
+ .info-row { display: flex; align-items: center; gap: 20px; margin: 16px 0; font-size: 46px; color: #333; }
84
+ .info-icon { width: 58px; height: 58px; }
85
+ .address { font-size: 46px; color: #333; margin: 12px 0 40px; }
86
+
87
+ /* Tabs */
88
+ .tabs { display: flex; gap: 40px; border-bottom: 2px solid #eee; }
89
+ .tab {
90
+ padding: 26px 14px; font-size: 48px; color: #444; position: relative;
91
+ }
92
+ .tab.active { color: #d63c3c; font-weight: 700; }
93
+ .tab.active::after {
94
+ content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 8px; background: #d63c3c; border-radius: 4px;
95
+ }
96
+
97
+ /* Reservation section */
98
+ .reserve-section { padding-top: 40px; }
99
+ .pill {
100
+ display: inline-flex; align-items: center; gap: 20px;
101
+ font-size: 46px; background: #f5f5f5; border: 2px solid #ddd; border-radius: 70px;
102
+ padding: 26px 40px; margin-bottom: 30px;
103
+ }
104
+ .cal-row { display: flex; align-items: center; gap: 20px; font-size: 44px; color: #3b4bff; margin-bottom: 26px; }
105
+ .time-chips { display: flex; gap: 28px; flex-wrap: wrap; margin: 20px 0 40px; }
106
+ .chip {
107
+ padding: 26px 38px; font-size: 44px; border-radius: 26px; background: #f0b6bc; color: #3a3a3a;
108
+ }
109
+ .chip.grey { background: #c7d6de; display: inline-flex; align-items: center; gap: 16px; }
110
+ .cta-wide {
111
+ width: calc(100% - 120px);
112
+ margin: 0 auto; padding: 38px; font-size: 52px; text-align: center;
113
+ border: 2px solid #ddd; border-radius: 30px; background: #fafafa; color: #333;
114
+ }
115
+
116
+ /* Delivery section */
117
+ .section-title { font-size: 58px; font-weight: 700; margin-top: 80px; }
118
+ .subtext { font-size: 44px; color: #555; margin-top: 10px; }
119
+ .call-btn {
120
+ margin-top: 30px; display: inline-block; padding: 30px 40px; font-size: 46px; color: #c73737;
121
+ border: 2px solid #e1e1e1; border-radius: 24px; background: #fff;
122
+ box-shadow: 0 1px 2px rgba(0,0,0,0.06);
123
+ }
124
+
125
+ /* Utility */
126
+ .img-placeholder {
127
+ width: 100%; height: 100%; background: #E0E0E0; border: 1px solid #BDBDBD;
128
+ display: flex; align-items: center; justify-content: center; color: #757575;
129
+ }
130
+ </style>
131
+ </head>
132
+ <body>
133
+ <div id="render-target">
134
+
135
+ <!-- Top status bar -->
136
+ <div class="status-bar">
137
+ <div class="status-left">
138
+ <div class="status-time">8:29</div>
139
+ </div>
140
+ <div class="status-right">
141
+ <div class="icon-btn">
142
+ <!-- search icon -->
143
+ <svg width="36" height="36" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" stroke="#222" stroke-width="2" fill="none"></circle><line x1="16.5" y1="16.5" x2="22" y2="22" stroke="#222" stroke-width="2"></line></svg>
144
+ </div>
145
+ <div class="icon-btn">
146
+ <!-- bookmark icon -->
147
+ <svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 3h12v18l-6-4-6 4z" fill="#222"></path></svg>
148
+ </div>
149
+ <div class="icon-btn">
150
+ <!-- share icon -->
151
+ <svg width="34" height="34" viewBox="0 0 24 24"><circle cx="6" cy="12" r="3" fill="#222"></circle><circle cx="18" cy="5" r="3" fill="#222"></circle><circle cx="18" cy="19" r="3" fill="#222"></circle><path d="M8.8 10.6l7-4M8.8 13.4l7 4" stroke="#222" stroke-width="2" fill="none"></path></svg>
152
+ </div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Back button -->
157
+ <div class="back-btn">
158
+ <svg width="56" height="56" viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6" stroke="#222" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path></svg>
159
+ </div>
160
+
161
+ <!-- Hero image -->
162
+ <div class="hero">
163
+ <div class="img-placeholder">[IMG: Restaurant storefront red signage]</div>
164
+ <div class="photo-cta">See all 282 photos</div>
165
+ </div>
166
+
167
+ <!-- Main content -->
168
+ <div class="content">
169
+ <div class="title">Lakaz Maman - Mauritian Street Kitchen</div>
170
+
171
+ <div class="meta-row">
172
+ <!-- stars -->
173
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.3 6.91 1-5 4.9 1.18 6.8L12 18l-6.18 3 1.18-6.8-5-4.9 6.91-1L12 2z" fill="#d63c3c"></path></svg>
174
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.3 6.91 1-5 4.9 1.18 6.8L12 18l-6.18 3 1.18-6.8-5-4.9 6.91-1L12 2z" fill="#d63c3c"></path></svg>
175
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.3 6.91 1-5 4.9 1.18 6.8L12 18l-6.18 3 1.18-6.8-5-4.9 6.91-1L12 2z" fill="#d63c3c"></path></svg>
176
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.3 6.91 1-5 4.9 1.18 6.8L12 18l-6.18 3 1.18-6.8-5-4.9 6.91-1L12 2z" fill="#d63c3c"></path></svg>
177
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.3 6.91 1-5 4.9 1.18 6.8L12 18l-6.18 3 1.18-6.8-5-4.9 6.91-1L12 2z" fill="#d63c3c"></path></svg>
178
+ <div class="reviews">838 reviews</div>
179
+ </div>
180
+
181
+ <div class="info-row">
182
+ <!-- money icon -->
183
+ <svg class="info-icon" viewBox="0 0 24 24"><rect x="3" y="6" width="18" height="12" rx="2" ry="2" stroke="#333" stroke-width="2" fill="none"></rect><circle cx="12" cy="12" r="3" fill="#333"></circle></svg>
184
+ <div>£25 and under</div>
185
+ </div>
186
+ <div class="info-row">
187
+ <!-- fork icon -->
188
+ <svg class="info-icon" viewBox="0 0 24 24">
189
+ <path d="M7 2v8M10 2v8M13 2v8" stroke="#333" stroke-width="2"></path>
190
+ <path d="M10 10v12" stroke="#333" stroke-width="2"></path>
191
+ <path d="M16 2c2 0 3 1 3 3v6M16 11v11" stroke="#333" stroke-width="2"></path>
192
+ </svg>
193
+ <div>Mauritian</div>
194
+ </div>
195
+ <div class="info-row">
196
+ <!-- pin icon -->
197
+ <svg class="info-icon" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7z" stroke="#333" stroke-width="2" fill="none"></path><circle cx="12" cy="9" r="3" fill="#333"></circle></svg>
198
+ <div>22 Bedford Place, Southampton, Hampshire, SO15 2DB</div>
199
+ </div>
200
+
201
+ <!-- Tabs -->
202
+ <div class="tabs">
203
+ <div class="tab active">Reservations</div>
204
+ <div class="tab">Delivery &amp; Takeout</div>
205
+ <div class="tab">Menu</div>
206
+ <div class="tab">Reviews</div>
207
+ </div>
208
+
209
+ <!-- Reservation section -->
210
+ <div class="reserve-section">
211
+ <div class="pill">
212
+ <!-- person icon -->
213
+ <svg width="56" height="56" viewBox="0 0 24 24"><circle cx="12" cy="7" r="4" fill="#666"></circle><path d="M4 20c0-4 4-6 8-6s8 2 8 6" stroke="#666" stroke-width="2" fill="none"></path></svg>
214
+ <span>2 • 8:30 PM Tonight</span>
215
+ </div>
216
+
217
+ <div class="cal-row">
218
+ <!-- calendar icon -->
219
+ <svg width="58" height="58" viewBox="0 0 24 24"><rect x="3" y="4" width="18" height="17" rx="2" ry="2" stroke="#3b4bff" stroke-width="2" fill="none"></rect><line x1="3" y1="9" x2="21" y2="9" stroke="#3b4bff" stroke-width="2"></line></svg>
220
+ <span>Booked 23 times today</span>
221
+ </div>
222
+
223
+ <div class="time-chips">
224
+ <div class="chip">7:45 PM</div>
225
+ <div class="chip">8:00 PM</div>
226
+ <div class="chip">8:15 PM</div>
227
+ <div class="chip">8:30 PM</div>
228
+ <div class="chip grey">
229
+ <!-- bell icon -->
230
+ <svg width="40" height="40" viewBox="0 0 24 24"><path d="M12 3a5 5 0 0 0-5 5v3l-2 3h14l-2-3V8a5 5 0 0 0-5-5z" fill="#3f5360"></path><circle cx="12" cy="20" r="2" fill="#3f5360"></circle></svg>
231
+ Set alert
232
+ </div>
233
+ </div>
234
+
235
+ <div class="cta-wide">View full availability</div>
236
+ </div>
237
+
238
+ <!-- Delivery & Takeout -->
239
+ <div class="section-title">Delivery &amp; Takeout</div>
240
+ <div class="subtext">Restaurant options</div>
241
+ <a class="call-btn">Call to order</a>
242
+
243
+ </div>
244
+
245
+ </div>
246
+ </body>
247
+ </html>
code/3486/3486_2.html ADDED
@@ -0,0 +1,326 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Lakaz Maman - Menu</title>
5
+ <style>
6
+ body { margin:0; padding:0; background: transparent; font-family: "Helvetica Neue", Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1440px;
9
+ height: 3120px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ color: #1f2530;
14
+ }
15
+
16
+ /* Top status bar */
17
+ .status-bar {
18
+ height: 110px;
19
+ padding: 0 48px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: space-between;
23
+ color: #4b5563;
24
+ font-size: 44px;
25
+ }
26
+ .status-icons svg { width: 44px; height: 44px; margin-left: 24px; fill: #6b7280; }
27
+
28
+ /* App bar */
29
+ .app-bar {
30
+ height: 140px;
31
+ padding: 0 48px;
32
+ display: flex;
33
+ align-items: center;
34
+ border-bottom: 1px solid #e5e7eb;
35
+ }
36
+ .app-title {
37
+ font-size: 56px;
38
+ font-weight: 700;
39
+ margin-left: 24px;
40
+ white-space: nowrap;
41
+ overflow: hidden;
42
+ text-overflow: ellipsis;
43
+ }
44
+ .app-actions {
45
+ margin-left: auto;
46
+ display: flex;
47
+ align-items: center;
48
+ }
49
+ .icon-btn {
50
+ width: 72px; height: 72px;
51
+ display: inline-flex; align-items: center; justify-content: center;
52
+ margin-left: 28px;
53
+ }
54
+ .icon-btn svg { width: 56px; height: 56px; fill: none; stroke: #c2413f; stroke-width: 36; }
55
+
56
+ /* Tabs */
57
+ .tabs {
58
+ display: flex;
59
+ padding: 24px 48px 0 48px;
60
+ align-items: flex-end;
61
+ border-bottom: 1px solid #e5e7eb;
62
+ }
63
+ .tab {
64
+ font-size: 44px;
65
+ color: #374151;
66
+ padding: 36px 24px 30px 24px;
67
+ margin-right: 48px;
68
+ position: relative;
69
+ }
70
+ .tab.active { color: #c1322e; font-weight: 700; }
71
+ .tab.active::after {
72
+ content: "";
73
+ position: absolute;
74
+ left: 0; right: 0; bottom: -2px;
75
+ height: 12px; background: #c1322e; border-radius: 12px;
76
+ }
77
+
78
+ /* Time chips */
79
+ .chips {
80
+ display: flex;
81
+ padding: 36px 48px;
82
+ gap: 28px;
83
+ }
84
+ .chip {
85
+ padding: 28px 36px;
86
+ border-radius: 20px;
87
+ font-size: 40px;
88
+ color: #fff;
89
+ background: #c73c3a;
90
+ }
91
+ .chip.blue {
92
+ background: #2b7aa0;
93
+ display: inline-flex; align-items: center; gap: 18px;
94
+ }
95
+ .chip svg { width: 42px; height: 42px; fill: none; stroke: #ffffff; stroke-width: 36; }
96
+
97
+ /* Content section */
98
+ .section {
99
+ padding: 24px 48px;
100
+ }
101
+ .section h2 {
102
+ font-size: 64px; margin: 24px 0 12px 0;
103
+ }
104
+ .section .subtitle {
105
+ font-size: 42px; color: #6b7280; margin-bottom: 24px;
106
+ }
107
+
108
+ /* Item rows */
109
+ .item {
110
+ display: flex;
111
+ padding: 36px 0;
112
+ border-top: 1px solid #e5e7eb;
113
+ }
114
+ .item:first-of-type { border-top: none; }
115
+ .item-content {
116
+ flex: 1;
117
+ padding-right: 24px;
118
+ }
119
+ .item-title {
120
+ font-size: 56px; font-weight: 800; margin-bottom: 12px;
121
+ }
122
+ .item-desc {
123
+ font-size: 42px; color: #6b7280; line-height: 1.4; margin: 8px 0 20px;
124
+ }
125
+ .item-meta {
126
+ display: flex; gap: 36px; color: #4b5563; font-size: 40px;
127
+ }
128
+ .meta {
129
+ display: inline-flex; align-items: center; gap: 16px;
130
+ }
131
+ .meta svg { width: 40px; height: 40px; fill: none; stroke: #6b7280; stroke-width: 36; }
132
+ .item-image {
133
+ width: 300px; height: 220px;
134
+ background: #E0E0E0; border: 1px solid #BDBDBD;
135
+ display: flex; align-items: center; justify-content: center; color: #757575;
136
+ border-radius: 16px;
137
+ }
138
+
139
+ /* See full menu button/card */
140
+ .full-menu {
141
+ margin: 36px 0 24px;
142
+ border: 1px solid #d1d5db;
143
+ border-radius: 28px;
144
+ height: 180px;
145
+ display: flex; align-items: center; justify-content: center;
146
+ font-size: 58px; font-weight: 700; color: #1f2937;
147
+ background: #fafafa;
148
+ }
149
+
150
+ /* Reviews */
151
+ .reviews-section { padding: 24px 48px 0 48px; }
152
+ .reviews-section h3 { font-size: 64px; margin: 24px 0; }
153
+ .reviews-grid {
154
+ display: grid;
155
+ grid-template-columns: 420px 1fr;
156
+ gap: 40px;
157
+ align-items: flex-start;
158
+ }
159
+ .rating-big {
160
+ font-size: 140px; font-weight: 800; color: #1f2937;
161
+ }
162
+ .stars { margin-top: 12px; color: #c1322e; font-size: 64px; letter-spacing: 6px; }
163
+ .dist-row { display: flex; align-items: center; margin: 22px 0; }
164
+ .dist-label { width: 60px; font-size: 42px; color: #374151; }
165
+ .bar-bg { flex: 1; height: 22px; background: #f1f5f9; border-radius: 14px; overflow: hidden; }
166
+ .bar-fill { height: 100%; background: #c1322e; }
167
+ .dist-note { font-size: 36px; color: #6b7280; }
168
+
169
+ /* Utility spacing */
170
+ .spacer { height: 20px; }
171
+ </style>
172
+ </head>
173
+ <body>
174
+ <div id="render-target">
175
+
176
+ <!-- Status bar -->
177
+ <div class="status-bar">
178
+ <div>8:29</div>
179
+ <div class="status-icons">
180
+ <!-- simple grey icons -->
181
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"></circle></svg>
182
+ <svg viewBox="0 0 24 24"><path d="M3 12h18"></path></svg>
183
+ <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="14"></rect></svg>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- App bar -->
188
+ <div class="app-bar">
189
+ <!-- Back arrow -->
190
+ <div class="icon-btn">
191
+ <svg viewBox="0 0 24 24"><path d="M15 4L7 12l8 8"></path></svg>
192
+ </div>
193
+ <div class="app-title">Lakaz Maman - Mauritian Stre...</div>
194
+ <div class="app-actions">
195
+ <!-- Bookmark -->
196
+ <div class="icon-btn">
197
+ <svg viewBox="0 0 24 24"><path d="M6 3h12v18l-6-4-6 4z"></path></svg>
198
+ </div>
199
+ <!-- Share -->
200
+ <div class="icon-btn">
201
+ <svg viewBox="0 0 24 24"><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="6" r="3"></circle><circle cx="18" cy="18" r="3"></circle><path d="M9 12l6-6M9 12l6 6"></path></svg>
202
+ </div>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Tabs -->
207
+ <div class="tabs">
208
+ <div class="tab">Reservations</div>
209
+ <div class="tab">Delivery &amp; Takeout</div>
210
+ <div class="tab active">Menu</div>
211
+ <div class="tab">Reviews</div>
212
+ <div class="tab">Details</div>
213
+ </div>
214
+
215
+ <!-- Time chips -->
216
+ <div class="chips">
217
+ <div class="chip">7:45 PM</div>
218
+ <div class="chip">8:00 PM</div>
219
+ <div class="chip">8:15 PM</div>
220
+ <div class="chip">8:30 PM</div>
221
+ <div class="chip blue">
222
+ <svg viewBox="0 0 24 24"><path d="M6 8a6 6 0 0112 0v8H6V8z"></path><path d="M12 3v3"></path></svg>
223
+ <span>Set alert</span>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Menu Section -->
228
+ <div class="section">
229
+ <h2>Menu</h2>
230
+ <div class="subtitle">Popular Dishes</div>
231
+
232
+ <!-- Item 1 -->
233
+ <div class="item">
234
+ <div class="item-content">
235
+ <div class="item-title">Chicken &amp; Prawn</div>
236
+ <div class="item-meta">
237
+ <div class="meta">
238
+ <svg viewBox="0 0 24 24"><rect x="5" y="7" width="14" height="10"></rect><circle cx="12" cy="12" r="3"></circle></svg>
239
+ <span>1 Photo</span>
240
+ </div>
241
+ <div class="meta">
242
+ <svg viewBox="0 0 24 24"><path d="M4 5h16v12H8l-4 4z"></path></svg>
243
+ <span>8 Reviews</span>
244
+ </div>
245
+ </div>
246
+ </div>
247
+ <div class="item-image">[IMG: Egg on greens]</div>
248
+ </div>
249
+
250
+ <!-- Item 2 -->
251
+ <div class="item">
252
+ <div class="item-content">
253
+ <div class="item-title">Mango Chilli Chicken Wings</div>
254
+ <div class="item-desc">Served with a spicy mango chilli sauce with coriander and chilli flakes</div>
255
+ <div class="item-meta">
256
+ <div class="meta">
257
+ <svg viewBox="0 0 24 24"><rect x="5" y="7" width="14" height="10"></rect><circle cx="12" cy="12" r="3"></circle></svg>
258
+ <span>1 Photo</span>
259
+ </div>
260
+ <div class="meta">
261
+ <svg viewBox="0 0 24 24"><path d="M4 5h16v12H8l-4 4z"></path></svg>
262
+ <span>5 Reviews</span>
263
+ </div>
264
+ </div>
265
+ </div>
266
+ <div class="item-image">[IMG: Wings &amp; Fries]</div>
267
+ </div>
268
+
269
+ <!-- Item 3 -->
270
+ <div class="item">
271
+ <div class="item-content">
272
+ <div class="item-title">Sticky Toffee Ginger Cake</div>
273
+ <div class="item-desc">With salted caramel and vanilla ice cream</div>
274
+ <div class="item-meta">
275
+ <div class="meta">
276
+ <svg viewBox="0 0 24 24"><rect x="5" y="7" width="14" height="10"></rect><circle cx="12" cy="12" r="3"></circle></svg>
277
+ <span>1 Photo</span>
278
+ </div>
279
+ <div class="meta">
280
+ <svg viewBox="0 0 24 24"><path d="M4 5h16v12H8l-4 4z"></path></svg>
281
+ <span>3 Reviews</span>
282
+ </div>
283
+ </div>
284
+ </div>
285
+ <div class="item-image">[IMG: Cake slice]</div>
286
+ </div>
287
+
288
+ <div class="full-menu">See full menu</div>
289
+ </div>
290
+
291
+ <!-- Reviews Section -->
292
+ <div class="reviews-section">
293
+ <h3>Reviews</h3>
294
+ <div class="reviews-grid">
295
+ <div>
296
+ <div class="rating-big">4.6</div>
297
+ <div class="stars">★ ★ ★ ★ ★</div>
298
+ </div>
299
+ <div>
300
+ <div class="dist-row">
301
+ <div class="dist-label">5</div>
302
+ <div class="bar-bg"><div class="bar-fill" style="width: 95%;"></div></div>
303
+ </div>
304
+ <div class="dist-row">
305
+ <div class="dist-label">4</div>
306
+ <div class="bar-bg"><div class="bar-fill" style="width: 40%;"></div></div>
307
+ </div>
308
+ <div class="dist-row">
309
+ <div class="dist-label">3</div>
310
+ <div class="bar-bg"><div class="bar-fill" style="width: 12%;"></div></div>
311
+ </div>
312
+ <div class="dist-row">
313
+ <div class="dist-label">2</div>
314
+ <div class="bar-bg"><div class="bar-fill" style="width: 6%;"></div></div>
315
+ </div>
316
+ <div class="dist-row">
317
+ <div class="dist-label">1</div>
318
+ <div class="bar-bg"><div class="bar-fill" style="width: 3%;"></div></div>
319
+ </div>
320
+ </div>
321
+ </div>
322
+ </div>
323
+
324
+ </div>
325
+ </body>
326
+ </html>
code/3488/3488_0.html ADDED
@@ -0,0 +1,445 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Mobile UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #121212;
14
+ color: #fff;
15
+ }
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 110px;
23
+ background: #1a1a1a;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 36px;
27
+ box-sizing: border-box;
28
+ font-size: 36px;
29
+ letter-spacing: 0.2px;
30
+ }
31
+ .status-left { display: flex; align-items: center; gap: 18px; }
32
+ .status-right {
33
+ margin-left: auto;
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 28px;
37
+ opacity: 0.85;
38
+ }
39
+ .chip {
40
+ background: #2b2b2b;
41
+ border-radius: 8px;
42
+ padding: 6px 12px;
43
+ font-size: 28px;
44
+ }
45
+ /* App bar */
46
+ .app-bar {
47
+ position: absolute;
48
+ top: 110px;
49
+ left: 0;
50
+ width: 1080px;
51
+ height: 150px;
52
+ background: #161616;
53
+ box-sizing: border-box;
54
+ padding: 0 24px;
55
+ display: flex;
56
+ align-items: center;
57
+ }
58
+ .app-left {
59
+ display: flex;
60
+ align-items: center;
61
+ gap: 20px;
62
+ }
63
+ .icon-btn {
64
+ width: 64px;
65
+ height: 64px;
66
+ display: inline-flex;
67
+ align-items: center;
68
+ justify-content: center;
69
+ border-radius: 50%;
70
+ color: #fff;
71
+ }
72
+ .app-title {
73
+ margin-left: 16px;
74
+ font-size: 38px;
75
+ font-weight: 600;
76
+ }
77
+ .app-right {
78
+ margin-left: auto;
79
+ display: flex;
80
+ align-items: center;
81
+ gap: 20px;
82
+ }
83
+ .muted {
84
+ color: #9e9e9e;
85
+ font-size: 28px;
86
+ }
87
+
88
+ /* Slide canvas area */
89
+ .canvas {
90
+ position: absolute;
91
+ top: 260px;
92
+ left: 0;
93
+ width: 1080px;
94
+ height: 980px;
95
+ background: #0f0f0f;
96
+ box-sizing: border-box;
97
+ padding-top: 120px;
98
+ display: flex;
99
+ justify-content: center;
100
+ align-items: flex-start;
101
+ }
102
+ .slide {
103
+ width: 960px;
104
+ height: 540px;
105
+ background: #ffffff;
106
+ box-shadow: 0 2px 0 rgba(255,255,255,0.05) inset;
107
+ border-radius: 6px;
108
+ position: relative;
109
+ overflow: hidden;
110
+ }
111
+ .slide-inner {
112
+ position: absolute;
113
+ inset: 0;
114
+ display: grid;
115
+ grid-template-columns: 1fr 1fr 1fr;
116
+ gap: 0;
117
+ }
118
+ .panel {
119
+ background: #ffffff;
120
+ display: flex;
121
+ align-items: center;
122
+ justify-content: center;
123
+ color: #d32f2f;
124
+ font-size: 28px;
125
+ opacity: 0.75;
126
+ }
127
+ .image-placeholder {
128
+ background: #E0E0E0;
129
+ border: 1px solid #BDBDBD;
130
+ display: flex;
131
+ align-items: center;
132
+ justify-content: center;
133
+ color: #757575;
134
+ font-size: 28px;
135
+ }
136
+
137
+ /* Lower controls */
138
+ .transition-panel {
139
+ position: absolute;
140
+ bottom: 140px;
141
+ left: 0;
142
+ width: 1080px;
143
+ height: 890px;
144
+ background: #0e0e0e;
145
+ box-sizing: border-box;
146
+ padding: 40px 40px 20px;
147
+ }
148
+ .panel-header {
149
+ display: flex;
150
+ align-items: center;
151
+ gap: 24px;
152
+ margin-bottom: 30px;
153
+ }
154
+ .panel-header h1 {
155
+ font-size: 52px;
156
+ margin: 0;
157
+ font-weight: 700;
158
+ }
159
+ .control-row {
160
+ display: flex;
161
+ align-items: center;
162
+ justify-content: space-between;
163
+ padding: 22px 0;
164
+ border-bottom: 1px solid #1f1f1f;
165
+ }
166
+ .control-row .label {
167
+ font-size: 36px;
168
+ }
169
+ .control-row .value {
170
+ font-size: 34px;
171
+ color: #bdbdbd;
172
+ display: flex;
173
+ align-items: center;
174
+ gap: 12px;
175
+ }
176
+ .sub-label {
177
+ font-size: 28px;
178
+ color: #c7c7f7;
179
+ margin-top: 30px;
180
+ }
181
+ .slider {
182
+ position: relative;
183
+ margin-top: 18px;
184
+ height: 24px;
185
+ }
186
+ .slider-track {
187
+ position: absolute;
188
+ top: 10px;
189
+ left: 0;
190
+ right: 0;
191
+ height: 4px;
192
+ background: #303030;
193
+ border-radius: 2px;
194
+ }
195
+ .slider-fill {
196
+ position: absolute;
197
+ top: 10px;
198
+ left: 0;
199
+ width: 78%;
200
+ height: 4px;
201
+ background: #9e9e9e;
202
+ border-radius: 2px;
203
+ }
204
+ .slider-thumb {
205
+ position: absolute;
206
+ top: 0px;
207
+ left: calc(78% - 12px);
208
+ width: 24px;
209
+ height: 24px;
210
+ background: #e35d5b;
211
+ border-radius: 50%;
212
+ }
213
+ .duration-row {
214
+ display: flex;
215
+ align-items: center;
216
+ justify-content: space-between;
217
+ margin-top: 18px;
218
+ color: #d0d0d0;
219
+ font-size: 32px;
220
+ }
221
+ .play-controls {
222
+ margin-top: 40px;
223
+ display: flex;
224
+ align-items: center;
225
+ gap: 30px;
226
+ }
227
+ .round-btn {
228
+ width: 80px;
229
+ height: 80px;
230
+ border-radius: 40px;
231
+ background: #1f1f1f;
232
+ display: inline-flex;
233
+ align-items: center;
234
+ justify-content: center;
235
+ }
236
+ .more-vert {
237
+ width: 60px;
238
+ height: 60px;
239
+ border-radius: 30px;
240
+ background: #1f1f1f;
241
+ display: inline-flex;
242
+ align-items: center;
243
+ justify-content: center;
244
+ }
245
+ .advance-section {
246
+ margin-top: 40px;
247
+ border-top: 1px solid #1f1f1f;
248
+ padding-top: 22px;
249
+ }
250
+ .checkbox {
251
+ width: 42px;
252
+ height: 42px;
253
+ border: 2px solid #888;
254
+ border-radius: 6px;
255
+ margin-right: 18px;
256
+ }
257
+ .gesture-pill {
258
+ position: absolute;
259
+ bottom: 34px;
260
+ left: 50%;
261
+ transform: translateX(-50%);
262
+ width: 280px;
263
+ height: 16px;
264
+ background: #e6e6e6;
265
+ border-radius: 10px;
266
+ opacity: 0.9;
267
+ }
268
+ /* simple svg styling */
269
+ svg { fill: none; stroke: #fff; stroke-width: 2.5; }
270
+ .muted-icon svg { stroke: #bdbdbd; }
271
+ </style>
272
+ </head>
273
+ <body>
274
+ <div id="render-target">
275
+
276
+ <!-- Status Bar -->
277
+ <div class="status-bar">
278
+ <div class="status-left">12:00
279
+ <span class="chip">ib</span>
280
+ <span class="chip">LR</span>
281
+ <span class="chip">Q</span>
282
+ <span class="chip">S</span>
283
+ <span>•</span>
284
+ </div>
285
+ <div class="status-right">
286
+ <!-- Signal -->
287
+ <svg width="34" height="34" viewBox="0 0 24 24" class="muted-icon">
288
+ <path d="M3 17h2M3 13h4M3 9h6M3 5h8"></path>
289
+ </svg>
290
+ <!-- Battery -->
291
+ <svg width="40" height="34" viewBox="0 0 28 16" class="muted-icon">
292
+ <rect x="1" y="3" width="22" height="10" rx="2" ry="2"></rect>
293
+ <rect x="24" y="6" width="3" height="4" rx="1"></rect>
294
+ <rect x="3" y="5" width="16" height="6" fill="#9e9e9e" stroke="none"></rect>
295
+ </svg>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- App Bar -->
300
+ <div class="app-bar">
301
+ <div class="app-left">
302
+ <!-- Back -->
303
+ <div class="icon-btn">
304
+ <svg width="36" height="36" viewBox="0 0 24 24">
305
+ <path d="M15 19L8 12l7-7"></path>
306
+ </svg>
307
+ </div>
308
+ <!-- Undo -->
309
+ <div class="icon-btn">
310
+ <svg width="36" height="36" viewBox="0 0 24 24">
311
+ <path d="M7 9H3l4-4"></path>
312
+ <path d="M7 9a7 7 0 1 1 5 11"></path>
313
+ </svg>
314
+ </div>
315
+ <!-- Redo -->
316
+ <div class="icon-btn">
317
+ <svg width="36" height="36" viewBox="0 0 24 24">
318
+ <path d="M17 9h4l-4-4"></path>
319
+ <path d="M17 9a7 7 0 1 0-5 11"></path>
320
+ </svg>
321
+ </div>
322
+ <!-- Add -->
323
+ <div class="icon-btn">
324
+ <svg width="36" height="36" viewBox="0 0 24 24">
325
+ <path d="M12 5v14M5 12h14"></path>
326
+ </svg>
327
+ </div>
328
+ <!-- Play -->
329
+ <div class="icon-btn">
330
+ <svg width="36" height="36" viewBox="0 0 24 24">
331
+ <circle cx="12" cy="12" r="10"></circle>
332
+ <path d="M10 8l7 4-7 4z" fill="#fff" stroke="none"></path>
333
+ </svg>
334
+ </div>
335
+ <!-- Share -->
336
+ <div class="icon-btn">
337
+ <svg width="36" height="36" viewBox="0 0 24 24">
338
+ <circle cx="5" cy="12" r="2"></circle>
339
+ <circle cx="19" cy="5" r="2"></circle>
340
+ <circle cx="19" cy="19" r="2"></circle>
341
+ <path d="M7 12l10-7M7 12l10 7"></path>
342
+ </svg>
343
+ </div>
344
+
345
+ <div class="app-title">Untitled Presentation</div>
346
+ </div>
347
+ <div class="app-right">
348
+ <div class="muted">Last modified on 9:31:40 AM</div>
349
+ </div>
350
+ </div>
351
+
352
+ <!-- Canvas and Slide -->
353
+ <div class="canvas">
354
+ <div class="slide">
355
+ <div class="slide-inner">
356
+ <div class="panel">Slide design</div>
357
+ <div class="image-placeholder">[IMG: Close-up fabric pattern]</div>
358
+ <div class="panel">Slide design</div>
359
+ </div>
360
+ </div>
361
+ </div>
362
+
363
+ <!-- Transition Panel -->
364
+ <div class="transition-panel">
365
+ <div class="panel-header">
366
+ <!-- Skip Back -->
367
+ <div class="round-btn">
368
+ <svg width="38" height="38" viewBox="0 0 24 24">
369
+ <path d="M7 12l8-6v12z"></path>
370
+ <path d="M5 6v12"></path>
371
+ </svg>
372
+ </div>
373
+ <!-- Play Button -->
374
+ <div class="round-btn">
375
+ <svg width="44" height="44" viewBox="0 0 24 24">
376
+ <circle cx="12" cy="12" r="11"></circle>
377
+ <path d="M10 8l6 4-6 4z" fill="#fff" stroke="none"></path>
378
+ </svg>
379
+ </div>
380
+ <!-- Download-like -->
381
+ <div class="round-btn">
382
+ <svg width="38" height="38" viewBox="0 0 24 24">
383
+ <path d="M12 4v10"></path>
384
+ <path d="M8 10l4 4 4-4"></path>
385
+ <path d="M4 20h16"></path>
386
+ </svg>
387
+ </div>
388
+ <div style="margin-left: 18px;"><h1>Transition</h1></div>
389
+ <div class="more-vert" style="margin-left:auto;">
390
+ <svg width="28" height="28" viewBox="0 0 24 24">
391
+ <circle cx="12" cy="5" r="2"></circle>
392
+ <circle cx="12" cy="12" r="2"></circle>
393
+ <circle cx="12" cy="19" r="2"></circle>
394
+ </svg>
395
+ </div>
396
+ </div>
397
+
398
+ <div class="control-row">
399
+ <div class="label">Type</div>
400
+ <div class="value">Blinds
401
+ <svg width="26" height="26" viewBox="0 0 24 24">
402
+ <path d="M9 6l6 6-6 6"></path>
403
+ </svg>
404
+ </div>
405
+ </div>
406
+
407
+ <div class="control-row">
408
+ <div class="label">Horizontal</div>
409
+ <div class="value">
410
+ <svg width="26" height="26" viewBox="0 0 24 24">
411
+ <path d="M6 9l6 6 6-6"></path>
412
+ </svg>
413
+ </div>
414
+ </div>
415
+
416
+ <div class="sub-label">DURATION</div>
417
+ <div class="slider">
418
+ <div class="slider-track"></div>
419
+ <div class="slider-fill"></div>
420
+ <div class="slider-thumb"></div>
421
+ </div>
422
+ <div class="duration-row">
423
+ <div></div>
424
+ <div>1.5</div>
425
+ </div>
426
+
427
+ <div class="sub-label" style="margin-top: 40px;">ADVANCE SLIDE</div>
428
+ <div class="advance-section">
429
+ <div style="display:flex; align-items:center; font-size:34px; color:#fff;">
430
+ <div class="checkbox"></div>
431
+ <div>After</div>
432
+ <div style="margin-left:auto;">
433
+ <svg width="28" height="28" viewBox="0 0 24 24">
434
+ <path d="M9 6l6 6-6 6"></path>
435
+ </svg>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </div>
440
+
441
+ <!-- Gesture Pill -->
442
+ <div class="gesture-pill"></div>
443
+ </div>
444
+ </body>
445
+ </html>
code/3488/3488_1.html ADDED
@@ -0,0 +1,320 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>My Presentations - Mock</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #111213;
20
+ color: #ECECEC;
21
+ }
22
+
23
+ /* Status bar */
24
+ .status-bar {
25
+ position: absolute;
26
+ top: 0;
27
+ left: 0;
28
+ width: 1080px;
29
+ height: 130px;
30
+ background: #1d1d1f;
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: space-between;
34
+ padding: 0 36px;
35
+ box-sizing: border-box;
36
+ }
37
+ .status-left {
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 20px;
41
+ font-weight: 600;
42
+ font-size: 40px;
43
+ color: #F5F5F5;
44
+ }
45
+ .status-mid {
46
+ display: flex;
47
+ align-items: center;
48
+ gap: 26px;
49
+ opacity: 0.85;
50
+ }
51
+ .chip {
52
+ font-size: 30px;
53
+ color: #D0D0D0;
54
+ background: #2a2a2c;
55
+ padding: 6px 12px;
56
+ border-radius: 14px;
57
+ line-height: 1;
58
+ }
59
+ .status-right {
60
+ display: flex;
61
+ align-items: center;
62
+ gap: 24px;
63
+ }
64
+ .icon-24 { width: 48px; height: 48px; }
65
+
66
+ /* Header */
67
+ .header {
68
+ position: absolute;
69
+ top: 130px;
70
+ left: 0;
71
+ width: 1080px;
72
+ height: 220px;
73
+ background: #1a1a1c;
74
+ display: flex;
75
+ align-items: center;
76
+ justify-content: space-between;
77
+ padding: 0 48px;
78
+ box-sizing: border-box;
79
+ border-bottom: 1px solid rgba(255,255,255,0.04);
80
+ }
81
+ .header h1 {
82
+ margin: 0;
83
+ font-size: 72px;
84
+ font-weight: 700;
85
+ letter-spacing: -0.5px;
86
+ color: #F3F3F3;
87
+ }
88
+ .profile {
89
+ width: 86px;
90
+ height: 86px;
91
+ border-radius: 50%;
92
+ border: 2px solid #BDBDBD;
93
+ display: flex;
94
+ align-items: center;
95
+ justify-content: center;
96
+ background: #222326;
97
+ }
98
+ .profile svg { width: 54px; height: 54px; }
99
+
100
+ /* Content list */
101
+ .content {
102
+ position: absolute;
103
+ top: 350px;
104
+ left: 0;
105
+ right: 0;
106
+ bottom: 280px;
107
+ padding: 0 48px;
108
+ box-sizing: border-box;
109
+ overflow: hidden;
110
+ }
111
+
112
+ .card-row {
113
+ display: flex;
114
+ align-items: flex-start;
115
+ gap: 40px;
116
+ }
117
+
118
+ .presentation-card {
119
+ width: 420px;
120
+ /* The thumbnail card shown on the screenshot */
121
+ }
122
+ .thumb {
123
+ width: 420px;
124
+ height: 250px;
125
+ border-radius: 28px;
126
+ background: #FFFFFF;
127
+ box-shadow: 0 8px 18px rgba(0,0,0,0.3);
128
+ padding: 12px;
129
+ box-sizing: border-box;
130
+ }
131
+ .thumb .img {
132
+ width: 100%;
133
+ height: 100%;
134
+ border-radius: 22px;
135
+ background: #E0E0E0;
136
+ border: 1px solid #BDBDBD;
137
+ display: flex;
138
+ align-items: center;
139
+ justify-content: center;
140
+ color: #757575;
141
+ font-size: 28px;
142
+ }
143
+
144
+ .card-meta {
145
+ margin-top: 22px;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: space-between;
149
+ }
150
+ .card-title {
151
+ font-size: 42px;
152
+ color: #E8E8E8;
153
+ white-space: nowrap;
154
+ overflow: hidden;
155
+ text-overflow: ellipsis;
156
+ max-width: 320px;
157
+ }
158
+ .dots {
159
+ width: 42px;
160
+ height: 42px;
161
+ display: flex;
162
+ align-items: center;
163
+ justify-content: center;
164
+ }
165
+
166
+ /* Bottom navigation */
167
+ .bottom-bar {
168
+ position: absolute;
169
+ bottom: 0;
170
+ left: 0;
171
+ width: 1080px;
172
+ height: 220px;
173
+ background: #1c1c1f;
174
+ border-top-left-radius: 20px;
175
+ border-top-right-radius: 20px;
176
+ box-shadow: 0 -6px 12px rgba(0,0,0,0.35) inset;
177
+ }
178
+ .bottom-content {
179
+ position: absolute;
180
+ bottom: 40px;
181
+ left: 48px;
182
+ right: 48px;
183
+ display: flex;
184
+ align-items: center;
185
+ justify-content: space-between;
186
+ }
187
+
188
+ /* Floating action button */
189
+ .fab {
190
+ position: absolute;
191
+ left: 50%;
192
+ transform: translateX(-50%);
193
+ bottom: 150px;
194
+ width: 162px;
195
+ height: 162px;
196
+ border-radius: 50%;
197
+ background: #EF5350;
198
+ box-shadow: 0 14px 24px rgba(0,0,0,0.6), 0 4px 6px rgba(0,0,0,0.5) inset;
199
+ display: flex;
200
+ align-items: center;
201
+ justify-content: center;
202
+ }
203
+ .fab svg { width: 72px; height: 72px; }
204
+
205
+ /* Gesture pill */
206
+ .gesture {
207
+ position: absolute;
208
+ bottom: 26px;
209
+ left: 50%;
210
+ transform: translateX(-50%);
211
+ width: 360px;
212
+ height: 16px;
213
+ background: #E6E6E6;
214
+ border-radius: 10px;
215
+ opacity: 0.9;
216
+ }
217
+ </style>
218
+ </head>
219
+ <body>
220
+ <div id="render-target">
221
+
222
+ <!-- Status Bar -->
223
+ <div class="status-bar">
224
+ <div class="status-left">
225
+ <span>12:02</span>
226
+ </div>
227
+ <div class="status-mid">
228
+ <span class="chip">ib</span>
229
+ <span class="chip">LR</span>
230
+ <svg class="icon-24 view" viewBox="0 0 24 24">
231
+ <circle cx="10" cy="10" r="6" fill="none" stroke="#E0E0E0" stroke-width="2"></circle>
232
+ <line x1="16" y1="16" x2="22" y2="22" stroke="#E0E0E0" stroke-width="2" stroke-linecap="round"></line>
233
+ </svg>
234
+ <span class="chip">S</span>
235
+ <svg class="icon-24" viewBox="0 0 24 24">
236
+ <circle cx="12" cy="12" r="2" fill="#E0E0E0"></circle>
237
+ </svg>
238
+ </div>
239
+ <div class="status-right">
240
+ <!-- WiFi -->
241
+ <svg class="icon-24" viewBox="0 0 24 24">
242
+ <path d="M2 10 Q12 2 22 10" fill="none" stroke="#EDEDED" stroke-width="2" stroke-linecap="round"></path>
243
+ <path d="M5 13 Q12 7 19 13" fill="none" stroke="#EDEDED" stroke-width="2" stroke-linecap="round"></path>
244
+ <path d="M8 16 Q12 12 16 16" fill="none" stroke="#EDEDED" stroke-width="2" stroke-linecap="round"></path>
245
+ <circle cx="12" cy="19" r="2" fill="#EDEDED"></circle>
246
+ </svg>
247
+ <!-- Battery -->
248
+ <svg class="icon-24" viewBox="0 0 26 24">
249
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#EDEDED" stroke-width="2"></rect>
250
+ <rect x="21" y="9" width="3" height="6" rx="1" fill="#EDEDED"></rect>
251
+ <rect x="4" y="8" width="14" height="8" fill="#EDEDED"></rect>
252
+ </svg>
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Header -->
257
+ <div class="header">
258
+ <h1>My Presentations</h1>
259
+ <div class="profile">
260
+ <svg viewBox="0 0 24 24">
261
+ <circle cx="12" cy="8" r="4" fill="none" stroke="#DADADA" stroke-width="2"></circle>
262
+ <path d="M4 20 Q12 14 20 20" fill="none" stroke="#DADADA" stroke-width="2" stroke-linecap="round"></path>
263
+ </svg>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Content -->
268
+ <div class="content">
269
+ <div class="card-row">
270
+ <div class="presentation-card">
271
+ <div class="thumb">
272
+ <div class="img">[IMG: Presentation Thumbnail]</div>
273
+ </div>
274
+ <div class="card-meta">
275
+ <div class="card-title">Untitled Present...</div>
276
+ <div class="dots">
277
+ <svg viewBox="0 0 24 24">
278
+ <circle cx="12" cy="5" r="2.3" fill="#CFCFCF"></circle>
279
+ <circle cx="12" cy="12" r="2.3" fill="#CFCFCF"></circle>
280
+ <circle cx="12" cy="19" r="2.3" fill="#CFCFCF"></circle>
281
+ </svg>
282
+ </div>
283
+ </div>
284
+ </div>
285
+ </div>
286
+ </div>
287
+
288
+ <!-- Floating Action Button -->
289
+ <div class="fab">
290
+ <svg viewBox="0 0 24 24">
291
+ <line x1="12" y1="5" x2="12" y2="19" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"></line>
292
+ <line x1="5" y1="12" x2="19" y2="12" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"></line>
293
+ </svg>
294
+ </div>
295
+
296
+ <!-- Bottom Navigation -->
297
+ <div class="bottom-bar">
298
+ <div class="bottom-content">
299
+ <!-- Hamburger -->
300
+ <svg viewBox="0 0 24 24" width="72" height="72">
301
+ <line x1="3" y1="6" x2="21" y2="6" stroke="#EDEDED" stroke-width="2" stroke-linecap="round"></line>
302
+ <line x1="3" y1="12" x2="21" y2="12" stroke="#EDEDED" stroke-width="2" stroke-linecap="round"></line>
303
+ <line x1="3" y1="18" x2="21" y2="18" stroke="#EDEDED" stroke-width="2" stroke-linecap="round"></line>
304
+ </svg>
305
+
306
+ <!-- Upload arrow -->
307
+ <svg viewBox="0 0 24 24" width="72" height="72">
308
+ <path d="M12 4 L7 9 M12 4 L17 9" fill="none" stroke="#EDEDED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
309
+ <line x1="12" y1="4" x2="12" y2="18" stroke="#EDEDED" stroke-width="2" stroke-linecap="round"></line>
310
+ <rect x="5" y="18" width="14" height="2" fill="#EDEDED"></rect>
311
+ </svg>
312
+ </div>
313
+ </div>
314
+
315
+ <!-- Gesture pill -->
316
+ <div class="gesture"></div>
317
+
318
+ </div>
319
+ </body>
320
+ </html>
code/349/349_0.html ADDED
@@ -0,0 +1,336 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Review and Book - Mock UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #FFFFFF;
13
+ color: #111827;
14
+ }
15
+
16
+ /* Top system/status bar */
17
+ .status-bar {
18
+ height: 120px;
19
+ background: #D3D7DD;
20
+ display: flex;
21
+ align-items: center;
22
+ padding: 0 40px;
23
+ box-sizing: border-box;
24
+ color: #1F2937;
25
+ font-weight: 600;
26
+ font-size: 38px;
27
+ }
28
+ .status-icons {
29
+ margin-left: auto;
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 24px;
33
+ }
34
+ .icon-dot {
35
+ width: 18px; height: 18px; background: #1F2937; border-radius: 50%;
36
+ }
37
+
38
+ /* Header */
39
+ .header {
40
+ height: 140px;
41
+ display: flex;
42
+ align-items: center;
43
+ gap: 24px;
44
+ padding: 0 40px;
45
+ box-sizing: border-box;
46
+ border-bottom: 1px solid #E5E7EB;
47
+ background: #FFFFFF;
48
+ }
49
+ .header-title {
50
+ font-size: 54px;
51
+ font-weight: 700;
52
+ color: #0F172A;
53
+ }
54
+ .back-btn {
55
+ width: 70px; height: 70px; display: flex; align-items: center; justify-content: center;
56
+ }
57
+ .back-btn svg { width: 56px; height: 56px; }
58
+
59
+ /* Content */
60
+ .content {
61
+ position: absolute;
62
+ top: 260px; /* below status + header */
63
+ left: 0;
64
+ right: 0;
65
+ bottom: 0;
66
+ padding: 40px;
67
+ box-sizing: border-box;
68
+ overflow-y: auto;
69
+ }
70
+
71
+ .section-title {
72
+ font-size: 46px;
73
+ font-weight: 700;
74
+ margin: 28px 0 24px;
75
+ color: #0F172A;
76
+ }
77
+
78
+ .input {
79
+ height: 120px;
80
+ border: 2px solid #E5E7EB;
81
+ border-radius: 20px;
82
+ margin-bottom: 28px;
83
+ padding: 24px 32px;
84
+ box-sizing: border-box;
85
+ display: flex;
86
+ align-items: center;
87
+ font-size: 40px;
88
+ color: #6B7280;
89
+ }
90
+ .input .label {
91
+ position: absolute;
92
+ transform: translateY(-34px);
93
+ margin-left: 8px;
94
+ font-size: 34px;
95
+ color: #9CA3AF;
96
+ }
97
+
98
+ .phone-field {
99
+ position: relative;
100
+ }
101
+ .country-code {
102
+ color: #2563EB;
103
+ font-weight: 700;
104
+ margin-right: 16px;
105
+ }
106
+ .contact-icon {
107
+ position: absolute;
108
+ right: 24px;
109
+ top: 24px;
110
+ width: 72px;
111
+ height: 72px;
112
+ display: flex;
113
+ align-items: center;
114
+ justify-content: center;
115
+ border-radius: 14px;
116
+ }
117
+ .contact-icon svg { width: 52px; height: 52px; stroke: #2563EB; }
118
+
119
+ /* Stateroom card */
120
+ .card {
121
+ border-top: 1px solid #E5E7EB;
122
+ padding-top: 32px;
123
+ }
124
+ .row {
125
+ display: flex;
126
+ align-items: center;
127
+ justify-content: space-between;
128
+ }
129
+ .title-strong {
130
+ font-size: 44px;
131
+ font-weight: 700;
132
+ }
133
+ .chevron {
134
+ width: 32px; height: 32px;
135
+ }
136
+ .sub-info {
137
+ margin-top: 18px;
138
+ color: #374151;
139
+ font-size: 36px;
140
+ }
141
+ .blue {
142
+ color: #2563EB;
143
+ }
144
+
145
+ .add-guests {
146
+ margin-top: 26px;
147
+ height: 120px;
148
+ border: 2px solid #D1D5DB;
149
+ border-radius: 20px;
150
+ display: flex;
151
+ align-items: center;
152
+ padding: 0 32px;
153
+ box-sizing: border-box;
154
+ gap: 22px;
155
+ color: #2563EB;
156
+ font-size: 44px;
157
+ font-weight: 700;
158
+ }
159
+ .add-guests svg { width: 52px; height: 52px; }
160
+
161
+ .divider {
162
+ height: 32px;
163
+ }
164
+
165
+ .section-line {
166
+ border-top: 1px solid #E5E7EB;
167
+ margin: 24px 0;
168
+ }
169
+
170
+ .row-link {
171
+ display: flex; align-items: center; justify-content: space-between;
172
+ font-size: 44px; font-weight: 700; color: #0F172A;
173
+ }
174
+ .row-link .action {
175
+ color: #2563EB;
176
+ font-weight: 700;
177
+ }
178
+
179
+ .ack {
180
+ margin-top: 24px;
181
+ font-size: 34px;
182
+ color: #6B7280;
183
+ line-height: 1.5;
184
+ }
185
+ .ack a { color: #2563EB; text-decoration: none; }
186
+
187
+ /* Bottom total bar */
188
+ .bottom-bar {
189
+ position: absolute;
190
+ left: 0; right: 0; bottom: 0;
191
+ height: 200px;
192
+ display: flex;
193
+ align-items: stretch;
194
+ border-top: 1px solid #E5E7EB;
195
+ background: #FFFFFF;
196
+ }
197
+ .total-area {
198
+ flex: 1;
199
+ padding: 24px 40px;
200
+ box-sizing: border-box;
201
+ }
202
+ .total-title {
203
+ font-size: 40px;
204
+ color: #374151;
205
+ }
206
+ .total-amount {
207
+ font-size: 60px;
208
+ color: #2563EB;
209
+ font-weight: 800;
210
+ margin-top: 10px;
211
+ }
212
+ .info-dot {
213
+ display: inline-flex; align-items: center; justify-content: center;
214
+ width: 48px; height: 48px; border-radius: 24px; border: 2px solid #9CA3AF; color: #6B7280; margin-left: 12px;
215
+ font-weight: 700;
216
+ }
217
+ .port-fees {
218
+ font-size: 34px; color: #6B7280; margin-top: 4px;
219
+ }
220
+ .pay-btn {
221
+ width: 420px;
222
+ background: #FF8C00;
223
+ display: flex;
224
+ align-items: center;
225
+ justify-content: center;
226
+ font-size: 56px;
227
+ color: #FFFFFF;
228
+ font-weight: 800;
229
+ }
230
+ </style>
231
+ </head>
232
+ <body>
233
+ <div id="render-target">
234
+
235
+ <!-- Status bar -->
236
+ <div class="status-bar">
237
+ <div>11:26</div>
238
+ <div class="status-icons">
239
+ <div class="icon-dot"></div>
240
+ <svg width="36" height="24" viewBox="0 0 36 24"><path d="M2 22h32M6 16h24M10 10h16M14 4h8" stroke="#1F2937" stroke-width="3" fill="none" stroke-linecap="round"/></svg>
241
+ <svg width="36" height="24" viewBox="0 0 36 24"><rect x="2" y="6" width="24" height="12" rx="2" fill="none" stroke="#1F2937" stroke-width="3"/><rect x="26" y="10" width="8" height="4" rx="1" fill="#1F2937"/></svg>
242
+ <div class="icon-dot" style="background:#1F2937;"></div>
243
+ </div>
244
+ </div>
245
+
246
+ <!-- Header -->
247
+ <div class="header">
248
+ <div class="back-btn">
249
+ <svg viewBox="0 0 48 48">
250
+ <path d="M30 10 L14 24 L30 38" stroke="#1F2937" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
251
+ </svg>
252
+ </div>
253
+ <div class="header-title">Review and Book</div>
254
+ </div>
255
+
256
+ <!-- Content -->
257
+ <div class="content">
258
+
259
+ <!-- Contact Information -->
260
+ <div class="section-title">Contact Information</div>
261
+ <div class="input"><span class="label">Name</span> Name</div>
262
+ <div class="input"><span class="label">Email</span> dbwscr********t.id1@gmail.com</div>
263
+ <div class="input phone-field">
264
+ <span class="label">Email</span>
265
+ <span class="country-code">+1</span>
266
+ Phone number
267
+ <div class="contact-icon">
268
+ <svg viewBox="0 0 48 48" fill="none">
269
+ <circle cx="24" cy="16" r="8" stroke="#2563EB" stroke-width="3"></circle>
270
+ <path d="M8 42c4-10 28-10 32 0" stroke="#2563EB" stroke-width="3" stroke-linecap="round"></path>
271
+ </svg>
272
+ </div>
273
+ </div>
274
+
275
+ <!-- Stateroom Details -->
276
+ <div class="section-title">Stateroom Details</div>
277
+ <div class="card">
278
+ <div class="row">
279
+ <div class="title-strong">Single Inside Cabin</div>
280
+ <svg class="chevron" viewBox="0 0 24 24">
281
+ <path d="M8 4l8 8-8 8" stroke="#9CA3AF" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
282
+ </svg>
283
+ </div>
284
+ <div class="sub-info">Occupancy: 1 &nbsp;&nbsp;&nbsp; Decks: 1, 2 &nbsp;&nbsp;&nbsp; Select Stateroom Number</div>
285
+
286
+ <div class="sub-info blue" style="font-weight: 800; margin-top: 26px;">Cabin No: 7353</div>
287
+
288
+ <div class="add-guests">
289
+ <svg viewBox="0 0 48 48">
290
+ <circle cx="24" cy="24" r="22" stroke="#2563EB" stroke-width="3" fill="none"></circle>
291
+ <path d="M24 14v20M14 24h20" stroke="#2563EB" stroke-width="3" stroke-linecap="round"></path>
292
+ </svg>
293
+ Add Guests
294
+ </div>
295
+ </div>
296
+
297
+ <div class="divider"></div>
298
+
299
+ <!-- Promo Codes -->
300
+ <div class="row-link">
301
+ <div>Promo Codes</div>
302
+ <div class="action">Enter promo code</div>
303
+ </div>
304
+
305
+ <div class="section-line"></div>
306
+
307
+ <!-- Restrictions & Policies -->
308
+ <div class="row-link">
309
+ <div>Restrictions & Policies</div>
310
+ <div class="action">View</div>
311
+ </div>
312
+
313
+ <div class="ack">
314
+ By proceeding, you acknowledge that you have read and accepted
315
+ Trip.com's <a href="#">Terms &amp; Conditions</a>, <a href="#">Privacy Policy</a>, and the <a href="#">Cruise Ticket</a><br>
316
+ Booking Terms.
317
+ </div>
318
+
319
+ </div>
320
+
321
+ <!-- Bottom Bar -->
322
+ <div class="bottom-bar">
323
+ <div class="total-area">
324
+ <div class="total-title">Total</div>
325
+ <div style="display:flex; align-items:center; gap:12px;">
326
+ <div class="total-amount">$ 1,015.00</div>
327
+ <div class="info-dot">i</div>
328
+ </div>
329
+ <div class="port-fees">incl. port fees</div>
330
+ </div>
331
+ <div class="pay-btn">Pay Now</div>
332
+ </div>
333
+
334
+ </div>
335
+ </body>
336
+ </html>
code/349/349_1.html ADDED
@@ -0,0 +1,334 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Expedia - UI Mock</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ :root{
8
+ --bg:#0c0f16;
9
+ --card:#121624;
10
+ --text:#e9edf7;
11
+ --muted:#aab2c7;
12
+ --accent:#265bff;
13
+ --blue:#183a72;
14
+ --outline:#2a3144;
15
+ --chip:#0f1422;
16
+ --yellow:#f6c33b;
17
+ }
18
+ body{ margin:0; padding:0; background:transparent; font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji"; }
19
+ #render-target{
20
+ position:relative; overflow:hidden;
21
+ width:1080px; height:2400px;
22
+ background:var(--bg); color:var(--text);
23
+ }
24
+
25
+ /* Status bar */
26
+ .status-bar{
27
+ position:absolute; top:0; left:0; right:0;
28
+ height:84px; padding:0 36px;
29
+ display:flex; align-items:center; justify-content:space-between;
30
+ color:#fff; font-weight:600; font-size:36px;
31
+ }
32
+ .status-right{ display:flex; align-items:center; gap:26px; }
33
+ .status-icon{ width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center; opacity:.85; }
34
+
35
+ /* Header */
36
+ .header{
37
+ position:absolute; left:48px; right:48px; top:120px;
38
+ }
39
+ .brand{
40
+ display:flex; align-items:center; gap:22px;
41
+ font-size:64px; font-weight:700;
42
+ }
43
+ .brand-badge{
44
+ width:82px; height:82px; border-radius:18px;
45
+ background:#f5d867; color:#1a1a1a; display:flex; align-items:center; justify-content:center;
46
+ }
47
+ .brand-badge svg{ width:54px; height:54px; }
48
+ .enable{
49
+ margin-top:18px; display:flex; align-items:center; gap:14px;
50
+ color:var(--muted); font-size:34px; font-weight:600; justify-content:flex-end;
51
+ }
52
+
53
+ .greet{ margin-top:44px; font-size:54px; font-weight:800; }
54
+
55
+ /* Grid tiles */
56
+ .grid{
57
+ margin-top:36px;
58
+ display:grid; grid-template-columns:1fr 1fr; gap:24px;
59
+ }
60
+ .tile{
61
+ background:var(--card); border:1px solid var(--outline);
62
+ border-radius:26px; height:220px; padding:36px;
63
+ display:flex; align-items:center; gap:26px;
64
+ }
65
+ .tile-icon{
66
+ width:96px; height:96px; border-radius:16px; background:var(--chip);
67
+ display:flex; align-items:center; justify-content:center;
68
+ }
69
+ .tile-icon svg{ width:60px; height:60px; fill:#fff; opacity:.95; }
70
+ .tile-title{ font-size:44px; font-weight:700; }
71
+
72
+ /* Large promo card */
73
+ .promo{
74
+ margin-top:44px; background:#163765; border:1px solid #294a7f;
75
+ border-radius:34px; padding:36px; color:#cfe0ff;
76
+ }
77
+ .promo h3{
78
+ margin:0 0 28px 0; font-size:46px; color:#d8e6ff; font-weight:800;
79
+ }
80
+ .promo-btn{
81
+ background:#0f223f; border:1px solid #2d4c7a; color:#d8e6ff;
82
+ height:120px; border-radius:26px; padding:0 32px;
83
+ display:flex; align-items:center; justify-content:space-between;
84
+ }
85
+ .promo-left{ display:flex; align-items:center; gap:22px; font-size:40px; font-weight:700; }
86
+ .badge{
87
+ width:64px; height:64px; border-radius:20px; background:var(--yellow);
88
+ display:flex; align-items:center; justify-content:center; color:#1a1a1a; font-weight:800;
89
+ }
90
+
91
+ /* One Key card */
92
+ .perk{
93
+ margin-top:26px; background:var(--card); border:1px solid var(--outline);
94
+ border-radius:30px; padding:34px;
95
+ }
96
+ .perk-top{ display:flex; align-items:flex-start; gap:22px; }
97
+ .k-badge{
98
+ width:92px; height:92px; border-radius:46px; background:#3651ff;
99
+ display:flex; align-items:center; justify-content:center; color:#fff; font-weight:900; font-size:54px;
100
+ box-shadow:0 8px 16px rgba(38,91,255,.3);
101
+ }
102
+ .perk-text{ font-size:42px; line-height:1.2; font-weight:800; }
103
+ .perk-link{ margin-top:20px; color:#9ec0ff; font-size:36px; font-weight:700; }
104
+
105
+ /* Explore section */
106
+ .section-title{
107
+ margin-top:42px; font-size:56px; font-weight:900;
108
+ letter-spacing:.2px;
109
+ }
110
+ .image-row{
111
+ margin-top:24px; display:flex; gap:24px; align-items:flex-start;
112
+ }
113
+ .img-main{
114
+ width:984px; height:520px; background:#E0E0E0; border:1px solid #BDBDBD;
115
+ border-radius:26px; color:#555; display:flex; align-items:center; justify-content:center; font-size:40px; font-weight:700;
116
+ position:relative;
117
+ }
118
+ .img-side{
119
+ width:120px; height:520px; background:#E0E0E0; border:1px solid #BDBDBD;
120
+ border-radius:26px; color:#555; display:flex; align-items:center; justify-content:center; font-size:28px; font-weight:700;
121
+ }
122
+ .fab{
123
+ position:absolute; right:24px; bottom:24px;
124
+ width:118px; height:118px; border-radius:59px; background:#25314a;
125
+ border:2px solid #3a4762; display:flex; align-items:center; justify-content:center;
126
+ box-shadow:0 8px 18px rgba(0,0,0,.35);
127
+ }
128
+ .fab svg{ width:58px; height:58px; fill:#cfe0ff; }
129
+
130
+ /* Bottom nav */
131
+ .bottom-nav{
132
+ position:absolute; left:0; right:0; bottom:0;
133
+ height:192px; background:#0f1321; border-top:1px solid var(--outline);
134
+ display:flex; align-items:center; justify-content:space-around;
135
+ padding-bottom:18px;
136
+ }
137
+ .nav-item{ display:flex; flex-direction:column; align-items:center; gap:12px; color:var(--muted); font-size:34px; font-weight:700; }
138
+ .nav-item svg{ width:58px; height:58px; fill:#cfe0ff; opacity:.85; }
139
+ .nav-item.active{ color:#cfe0ff; }
140
+ .nav-item.active svg{ fill:#7aa2ff; opacity:1; }
141
+
142
+ /* Divider line near bottom iOS swipe bar mimic */
143
+ .home-indicator{
144
+ position:absolute; left:340px; right:340px; bottom:10px; height:12px;
145
+ background:#dfe4f5; border-radius:6px; opacity:.6;
146
+ }
147
+ </style>
148
+ </head>
149
+ <body>
150
+ <div id="render-target">
151
+
152
+ <!-- Status Bar -->
153
+ <div class="status-bar">
154
+ <div>11:27</div>
155
+ <div class="status-right">
156
+ <!-- Simple minus-in-circle -->
157
+ <div class="status-icon">
158
+ <svg viewBox="0 0 24 24">
159
+ <circle cx="12" cy="12" r="10" stroke="#ffffff" stroke-width="2" fill="none"></circle>
160
+ <rect x="6" y="11" width="12" height="2" fill="#ffffff"></rect>
161
+ </svg>
162
+ </div>
163
+ <!-- WiFi -->
164
+ <div class="status-icon">
165
+ <svg viewBox="0 0 24 24">
166
+ <path d="M2 8c8-8 12-8 20 0" stroke="#fff" stroke-width="2" fill="none"/>
167
+ <path d="M5 12c6-6 8-6 14 0" stroke="#fff" stroke-width="2" fill="none"/>
168
+ <path d="M8 16c4-4 4-4 8 0" stroke="#fff" stroke-width="2" fill="none"/>
169
+ <circle cx="12" cy="19" r="1.8" fill="#fff"></circle>
170
+ </svg>
171
+ </div>
172
+ <!-- Battery -->
173
+ <div class="status-icon">
174
+ <svg viewBox="0 0 32 24">
175
+ <rect x="2" y="4" width="24" height="16" rx="3" ry="3" stroke="#fff" stroke-width="2" fill="none"></rect>
176
+ <rect x="4" y="6" width="18" height="12" rx="2" fill="#7aff7a"></rect>
177
+ <rect x="26" y="8" width="4" height="8" rx="1" fill="#fff"></rect>
178
+ </svg>
179
+ </div>
180
+ <div style="font-size:32px; color:#fff; opacity:.85;">95%</div>
181
+ </div>
182
+ </div>
183
+
184
+ <!-- Header & Brand -->
185
+ <div class="header">
186
+ <div class="brand">
187
+ <div class="brand-badge">
188
+ <svg viewBox="0 0 24 24">
189
+ <rect x="2" y="2" width="20" height="20" rx="4" fill="#ffe679"></rect>
190
+ <path d="M8 16l6-6v4h2V6h-8v2h4l-6 6z" fill="#1b2a4a"></path>
191
+ </svg>
192
+ </div>
193
+ <div>Expedia</div>
194
+ </div>
195
+ <div class="enable">
196
+ <svg width="34" height="34" viewBox="0 0 24 24">
197
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5 6 14 6 14s6-9 6-14c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#aab2c7"/>
198
+ </svg>
199
+ Enable location
200
+ </div>
201
+
202
+ <div class="greet">Hi, Fabio</div>
203
+
204
+ <!-- Tiles grid -->
205
+ <div class="grid">
206
+ <div class="tile">
207
+ <div class="tile-icon">
208
+ <!-- Building -->
209
+ <svg viewBox="0 0 24 24">
210
+ <path d="M4 20h16v-2H4v2zm2-4h12V4H6v12zm2-2h2V6H8v8zm4 0h2V6h-2v8z" fill="#fff"/>
211
+ </svg>
212
+ </div>
213
+ <div class="tile-title">Stays</div>
214
+ </div>
215
+
216
+ <div class="tile">
217
+ <div class="tile-icon">
218
+ <!-- Airplane -->
219
+ <svg viewBox="0 0 24 24">
220
+ <path d="M2 16l8-3 3 8 2-1-2-6 7-3-1-2-7 2-4-9-2 1 3 8-7 3z" fill="#fff"/>
221
+ </svg>
222
+ </div>
223
+ <div class="tile-title">Flights</div>
224
+ </div>
225
+
226
+ <div class="tile">
227
+ <div class="tile-icon">
228
+ <!-- Package/box -->
229
+ <svg viewBox="0 0 24 24">
230
+ <path d="M4 7l8-5 8 5-8 5-8-5zm0 3l8 5 8-5v7l-8 5-8-5V10z" fill="#fff"/>
231
+ </svg>
232
+ </div>
233
+ <div class="tile-title">Packages</div>
234
+ </div>
235
+
236
+ <div class="tile">
237
+ <div class="tile-icon">
238
+ <!-- Car -->
239
+ <svg viewBox="0 0 24 24">
240
+ <path d="M3 15l2-6h10l2 6h2v4h-2v-2H5v2H3v-4zm4-1a2 2 0 104 0 2 2 0 00-4 0zm8 0a2 2 0 104 0 2 2 0 00-4 0z" fill="#fff"/>
241
+ </svg>
242
+ </div>
243
+ <div class="tile-title">Cars</div>
244
+ </div>
245
+
246
+ <div class="tile">
247
+ <div class="tile-icon">
248
+ <!-- Ticket/activities -->
249
+ <svg viewBox="0 0 24 24">
250
+ <path d="M3 7h18v4h-2a2 2 0 010 4h2v4H3v-4h2a2 2 0 010-4H3V7zm6 2h2v6H9V9zm4 0h2v6h-2V9z" fill="#fff"/>
251
+ </svg>
252
+ </div>
253
+ <div class="tile-title">Things to do</div>
254
+ </div>
255
+
256
+ <div class="tile">
257
+ <div class="tile-icon">
258
+ <!-- Cruise ship -->
259
+ <svg viewBox="0 0 24 24">
260
+ <path d="M2 17l2 3h16l2-3-6-2-2-6h-4l-2 6-6 2zm7-10h6v2H9V7z" fill="#fff"/>
261
+ </svg>
262
+ </div>
263
+ <div class="tile-title">Cruises</div>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Promo card -->
268
+ <div class="promo">
269
+ <h3>Planning a new escape? Let's chat.</h3>
270
+ <div class="promo-btn">
271
+ <div class="promo-left">
272
+ <div class="badge">★</div>
273
+ <div>Explore trip ideas with ChatGPT</div>
274
+ </div>
275
+ <svg width="46" height="46" viewBox="0 0 24 24">
276
+ <path d="M9 18l6-6-6-6" stroke="#cfe0ff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
277
+ </svg>
278
+ </div>
279
+ </div>
280
+
281
+ <!-- OneKey perk card -->
282
+ <div class="perk">
283
+ <div class="perk-top">
284
+ <div class="k-badge">K</div>
285
+ <div class="perk-text">Fabio, you can earn OneKeyCash on every eligible booking you make. Get started!</div>
286
+ </div>
287
+ <div class="perk-link">Explore One Key perks</div>
288
+ </div>
289
+
290
+ <!-- Explore section -->
291
+ <div class="section-title">Explore stays in popular destinations</div>
292
+ <div class="image-row">
293
+ <div class="img-main">
294
+ [IMG: India Gate crowd]
295
+ <div class="fab">
296
+ <svg viewBox="0 0 24 24">
297
+ <path d="M4 4h16v14H7l-3 3V4z" fill="none" stroke="#cfe0ff" stroke-width="2" stroke-linejoin="round"/>
298
+ <rect x="7" y="8" width="10" height="2" fill="#cfe0ff"/>
299
+ <rect x="7" y="12" width="6" height="2" fill="#cfe0ff"/>
300
+ </svg>
301
+ </div>
302
+ </div>
303
+ <div class="img-side">[IMG]</div>
304
+ </div>
305
+ </div>
306
+
307
+ <!-- Bottom navigation -->
308
+ <div class="bottom-nav">
309
+ <div class="nav-item active">
310
+ <svg viewBox="0 0 24 24"><path d="M3 11l9-8 9 8v9h-6v-6H9v6H3v-9z"/></svg>
311
+ <div>Home</div>
312
+ </div>
313
+ <div class="nav-item">
314
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" stroke="#cfe0ff" stroke-width="2" fill="none"/><path d="M20 20l-4-4" stroke="#cfe0ff" stroke-width="2"/></svg>
315
+ <div>Search</div>
316
+ </div>
317
+ <div class="nav-item">
318
+ <svg viewBox="0 0 24 24"><path d="M4 6h16v4H4V6zm0 6h16v6H4v-6z" /></svg>
319
+ <div>Trips</div>
320
+ </div>
321
+ <div class="nav-item">
322
+ <svg viewBox="0 0 24 24"><path d="M3 8l9 6 9-6v10H3V8zM3 8l9 6 9-6-9-5-9 5z"/></svg>
323
+ <div>Inbox</div>
324
+ </div>
325
+ <div class="nav-item">
326
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="8" r="4"/><path d="M4 21c0-4 4-7 8-7s8 3 8 7" /></svg>
327
+ <div>Account</div>
328
+ </div>
329
+ </div>
330
+
331
+ <div class="home-indicator"></div>
332
+ </div>
333
+ </body>
334
+ </html>
code/349/349_10.html ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Expedia Cruises UI</title>
6
+ <style>
7
+ body { margin:0; padding:0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px; position:relative; overflow:hidden; background:#ffffff; color:#111;
10
+ }
11
+
12
+ /* Top dark header */
13
+ .topbar {
14
+ background:#0c1020;
15
+ color:#fff;
16
+ width:100%;
17
+ height:220px;
18
+ box-sizing:border-box;
19
+ padding:18px 36px 0 36px;
20
+ }
21
+ .status-row {
22
+ display:flex; align-items:center; justify-content:space-between;
23
+ height:70px; color:#fff; font-weight:600; font-size:36px; opacity:0.95;
24
+ }
25
+ .app-row {
26
+ display:flex; align-items:center; gap:26px; margin-top:26px;
27
+ }
28
+ .back-btn { width:60px; height:60px; display:flex; align-items:center; justify-content:center; }
29
+ .title { font-size:56px; color:#fff; font-weight:700; }
30
+
31
+ /* Brand bar */
32
+ .brandbar {
33
+ width:100%; height:120px; box-sizing:border-box;
34
+ padding:0 40px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid #eee;
35
+ }
36
+ .brand-left { display:flex; align-items:center; gap:22px; }
37
+ .logo-box { width:74px; height:74px; background:#ffd54d; border-radius:12px; display:flex; align-items:center; justify-content:center; color:#111; font-weight:800; font-size:40px; }
38
+ .brand-name { font-size:48px; font-weight:800; color:#0a0a0a; }
39
+ .brand-actions { display:flex; align-items:center; gap:34px; }
40
+ .icon-btn { width:64px; height:64px; border-radius:14px; display:flex; align-items:center; justify-content:center; }
41
+
42
+ /* Content */
43
+ .content { padding:36px 40px 0 40px; }
44
+ .h1 { font-size:84px; line-height:1.05; font-weight:800; color:#1c2433; margin:6px 0 14px 0; }
45
+ .sub { color:#52606d; font-size:36px; }
46
+ .linkish { color:#1e66ff; text-decoration:none; }
47
+ .row { display:flex; align-items:center; gap:16px; margin-top:34px; }
48
+ .mini-link { color:#2d3a4b; font-size:40px; font-weight:600; display:flex; align-items:center; gap:12px; }
49
+
50
+ /* Inputs */
51
+ .field {
52
+ margin-top:28px;
53
+ width:100%;
54
+ border:2px solid #dadde3;
55
+ border-radius:26px;
56
+ padding:26px 28px;
57
+ box-sizing:border-box;
58
+ }
59
+ .field.selected { border-color:#1763ff; box-shadow:0 0 0 3px rgba(23,99,255,0.12) inset; }
60
+ .field-row { display:flex; align-items:center; gap:22px; }
61
+ .label { color:#5e6a79; font-size:34px; }
62
+ .value { font-size:46px; font-weight:700; color:#121a26; margin-top:8px; }
63
+ .field .right { margin-left:auto; }
64
+
65
+ /* Button */
66
+ .cta {
67
+ width:100%; height:120px; background:#1f6fff; color:#fff; border:none; border-radius:60px;
68
+ font-size:48px; font-weight:800; margin:38px 0; cursor:pointer;
69
+ }
70
+
71
+ /* Image card */
72
+ .image-card {
73
+ margin-top:20px;
74
+ background:#E0E0E0;
75
+ border:1px solid #BDBDBD;
76
+ height:1050px;
77
+ border-radius:24px;
78
+ overflow:hidden;
79
+ display:flex;
80
+ align-items:flex-end;
81
+ justify-content:flex-start;
82
+ position:relative;
83
+ }
84
+ .image-card .label {
85
+ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
86
+ color:#757575; font-size:40px; font-weight:600; background:rgba(255,255,255,0.6); padding:10px 18px; border-radius:10px;
87
+ }
88
+ .image-overlay {
89
+ width:100%; padding:40px; box-sizing:border-box; color:#fff;
90
+ background:linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
91
+ }
92
+ .overlay-title { font-size:64px; font-weight:800; margin-bottom:10px; }
93
+ .overlay-sub { font-size:36px; opacity:0.95; }
94
+
95
+ /* Simple utility */
96
+ .spacer-8 { height:8px; }
97
+ .spacer-12 { height:12px; }
98
+ .spacer-20 { height:20px; }
99
+ .spacer-30 { height:30px; }
100
+ .spacer-40 { height:40px; }
101
+
102
+ svg { display:block; }
103
+ </style>
104
+ </head>
105
+ <body>
106
+ <div id="render-target">
107
+
108
+ <!-- Dark header with status and back/title -->
109
+ <div class="topbar">
110
+ <div class="status-row">
111
+ <div>11:31</div>
112
+ <div style="display:flex; align-items:center; gap:20px; opacity:0.9;">
113
+ <!-- small status icons -->
114
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff"><path d="M4 10h16v4H4z"/></svg>
115
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff"><path d="M3 12a9 9 0 1 0 18 0 9 9 0 0 0-18 0z"/></svg>
116
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#fff"><path d="M17 6h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-1v2H7v-2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1V4h10v2z"/></svg>
117
+ </div>
118
+ </div>
119
+ <div class="app-row">
120
+ <div class="back-btn">
121
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#ffffff"><path d="M15.5 19.5 8 12l7.5-7.5 1.5 1.5L11 12l6 6-1.5 1.5z"/></svg>
122
+ </div>
123
+ <div class="title">Cruises</div>
124
+ </div>
125
+ </div>
126
+
127
+ <!-- Expedia brand bar -->
128
+ <div class="brandbar">
129
+ <div class="brand-left">
130
+ <div class="logo-box">↗</div>
131
+ <div class="brand-name">Expedia</div>
132
+ </div>
133
+ <div class="brand-actions">
134
+ <div class="icon-btn">
135
+ <!-- search -->
136
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#0c1020"><path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 1 0-.9.9l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0A4.5 4.5 0 1 1 14 9.5 4.5 4.5 0 0 1 9.5 14z"/></svg>
137
+ </div>
138
+ <div class="icon-btn">
139
+ <!-- suitcase -->
140
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#0c1020"><path d="M9 6V4h6v2h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3zm2 0h2V5h-2v1z"/></svg>
141
+ </div>
142
+ <div class="icon-btn">
143
+ <!-- user -->
144
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#0c1020"><path d="M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5z"/></svg>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Main content -->
150
+ <div class="content">
151
+ <div class="h1">Search cruises</div>
152
+ <div class="sub">For expert cruise advice, call <span class="linkish">1-800-916-8586</span>.</div>
153
+
154
+ <div class="row" style="margin-top:30px;">
155
+ <div class="mini-link">
156
+ 2 travelers
157
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#2d3a4b"><path d="M7 10l5 5 5-5z"/></svg>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- Destination field -->
162
+ <div class="field">
163
+ <div class="field-row">
164
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#1e66ff"><path d="M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>
165
+ <div style="display:flex; flex-direction:column;">
166
+ <div class="label">Going to</div>
167
+ <div class="value">South America</div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Early depart -->
173
+ <div class="field selected">
174
+ <div class="field-row">
175
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#1e66ff"><path d="M7 2h2v2h6V2h2v2h3v16H4V4h3V2zm13 6H4v10h16V8z"/></svg>
176
+ <div style="display:flex; flex-direction:column;">
177
+ <div class="label">Departs as early as</div>
178
+ <div class="value">Nov 25</div>
179
+ </div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Late depart -->
184
+ <div class="field">
185
+ <div class="field-row">
186
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#1e66ff"><path d="M7 2h2v2h6V2h2v2h3v16H4V4h3V2zm13 6H4v10h16V8z"/></svg>
187
+ <div style="display:flex; flex-direction:column;">
188
+ <div class="label">Departs as late as</div>
189
+ <div class="value">Dec 23</div>
190
+ </div>
191
+ </div>
192
+ </div>
193
+
194
+ <button class="cta">Search</button>
195
+
196
+ <!-- Cruise image card -->
197
+ <div class="image-card">
198
+ <div class="label">[IMG: Cruise deck and ocean wake]</div>
199
+ <div class="image-overlay">
200
+ <div class="overlay-title">Find your voyage</div>
201
+ <div class="overlay-sub">Explore all the different ways you can set sail</div>
202
+ </div>
203
+ </div>
204
+
205
+ </div>
206
+
207
+ </div>
208
+ </body>
209
+ </html>
code/349/349_11.html ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Expedia Cruises Loading</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ position: relative;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ overflow: hidden;
13
+ background: #F3F4F7;
14
+ }
15
+
16
+ /* Top dark app bar */
17
+ .appbar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 190px;
23
+ background: #0E121A;
24
+ color: #fff;
25
+ }
26
+
27
+ /* Status row */
28
+ .status {
29
+ position: absolute;
30
+ top: 22px;
31
+ left: 32px;
32
+ right: 32px;
33
+ height: 60px;
34
+ display: flex;
35
+ align-items: center;
36
+ justify-content: space-between;
37
+ color: #E8EDF6;
38
+ font-size: 36px;
39
+ letter-spacing: .5px;
40
+ }
41
+ .status .right-icons {
42
+ display: flex;
43
+ align-items: center;
44
+ gap: 22px;
45
+ }
46
+ .icon-circle {
47
+ width: 26px; height: 26px; border: 3px solid #D9E2FF; border-radius: 50%;
48
+ opacity: .9;
49
+ }
50
+ .battery {
51
+ width: 52px; height: 26px; border: 3px solid #D9E2FF; border-radius: 4px; position: relative;
52
+ }
53
+ .battery::after {
54
+ content: "";
55
+ position: absolute; right: -10px; top: 6px; width: 6px; height: 12px; background: #D9E2FF; border-radius: 2px;
56
+ }
57
+ .battery .level {
58
+ position: absolute; left: 2px; top: 2px; bottom: 2px; width: 80%; background: #D9E2FF; border-radius: 2px;
59
+ }
60
+
61
+ /* Title row */
62
+ .title-row {
63
+ position: absolute;
64
+ left: 24px;
65
+ right: 24px;
66
+ bottom: 22px;
67
+ display: flex;
68
+ align-items: center;
69
+ gap: 26px;
70
+ padding-left: 12px;
71
+ }
72
+ .title-text {
73
+ color: #FFFFFF;
74
+ font-size: 56px;
75
+ font-weight: 600;
76
+ }
77
+ .back-btn {
78
+ width: 56px; height: 56px;
79
+ }
80
+
81
+ /* Center content */
82
+ .center {
83
+ position: absolute;
84
+ left: 0; right: 0;
85
+ top: 48%;
86
+ transform: translateY(-50%);
87
+ text-align: center;
88
+ }
89
+ .logo {
90
+ display: inline-flex;
91
+ align-items: center;
92
+ gap: 28px;
93
+ }
94
+ .logo-box {
95
+ width: 110px; height: 110px; background: #FFD43B; border-radius: 20px; display: flex; align-items: center; justify-content: center;
96
+ }
97
+ .logo-text {
98
+ color: #162039;
99
+ font-size: 132px;
100
+ font-weight: 700;
101
+ letter-spacing: 1px;
102
+ }
103
+
104
+ /* Spinners */
105
+ .spinner {
106
+ width: 150px; height: 150px;
107
+ border-radius: 50%;
108
+ border: 22px solid #CFE0FF;
109
+ border-top-color: #1D55FF;
110
+ margin: 70px auto 28px auto;
111
+ animation: spin 1.2s linear infinite;
112
+ }
113
+ .spinner.light {
114
+ width: 140px; height: 140px;
115
+ border-width: 20px;
116
+ border-color: #D9E9FF;
117
+ border-top-color: #6DA6FF;
118
+ animation-duration: 1.1s;
119
+ }
120
+
121
+ @keyframes spin {
122
+ to { transform: rotate(360deg); }
123
+ }
124
+ </style>
125
+ </head>
126
+ <body>
127
+ <div id="render-target">
128
+ <!-- Dark app bar with status and title -->
129
+ <div class="appbar">
130
+ <div class="status">
131
+ <div>11:33</div>
132
+ <div class="right-icons">
133
+ <div class="icon-circle"></div>
134
+ <div class="icon-circle" style="border-width:3px;"></div>
135
+ <div class="battery"><div class="level"></div></div>
136
+ <div style="font-size:32px; opacity:.9;">98%</div>
137
+ </div>
138
+ </div>
139
+ <div class="title-row">
140
+ <!-- Back arrow -->
141
+ <svg class="back-btn" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
142
+ <path d="M15 18l-6-6 6-6"/>
143
+ </svg>
144
+ <div class="title-text">Cruises</div>
145
+ </div>
146
+ </div>
147
+
148
+ <!-- Centered Expedia logo and spinners -->
149
+ <div class="center">
150
+ <div class="logo">
151
+ <div class="logo-box">
152
+ <!-- simple up-right arrow -->
153
+ <svg width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="#101731" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
154
+ <path d="M7 17L17 7M9 7h8v8"/>
155
+ </svg>
156
+ </div>
157
+ <div class="logo-text">Expedia</div>
158
+ </div>
159
+
160
+ <div class="spinner"></div>
161
+ <div class="spinner light"></div>
162
+ </div>
163
+ </div>
164
+ </body>
165
+ </html>
code/349/349_12.html ADDED
@@ -0,0 +1,267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Expedia Cruises Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ color: #111;
15
+ }
16
+
17
+ /* Top dark app chrome */
18
+ .statusbar {
19
+ height: 120px;
20
+ background: #0C0F18;
21
+ }
22
+ .topbar {
23
+ height: 110px;
24
+ background: #0C0F18;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 36px;
28
+ color: #fff;
29
+ border-bottom: 1px solid #151a26;
30
+ }
31
+ .back {
32
+ width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-right: 18px;
33
+ }
34
+ .topbar-title {
35
+ font-size: 44px; font-weight: 600;
36
+ }
37
+
38
+ /* Expedia header */
39
+ .expedia-header {
40
+ height: 120px;
41
+ display: flex; align-items: center; justify-content: space-between;
42
+ padding: 0 36px;
43
+ border-bottom: 1px solid #ECEFF1;
44
+ }
45
+ .brand {
46
+ display: flex; align-items: center; gap: 18px;
47
+ font-size: 46px; font-weight: 700; color: #0d2043;
48
+ }
49
+ .brand .box {
50
+ width: 58px; height: 58px; background: #ffe04b; border-radius: 10px; display: flex; align-items: center; justify-content: center;
51
+ box-shadow: inset 0 0 0 2px rgba(0,0,0,0.08);
52
+ }
53
+ .actions { display: flex; align-items: center; gap: 34px; color: #1a2b49; }
54
+
55
+ /* Search chip */
56
+ .search-chip {
57
+ margin: 24px 24px 0 24px;
58
+ border: 1px solid #E0E0E0;
59
+ border-radius: 24px;
60
+ padding: 28px 28px;
61
+ }
62
+ .chip-row1 { display: flex; align-items: center; justify-content: space-between; }
63
+ .chip-title { font-size: 46px; font-weight: 700; color: #0d2043; }
64
+ .pencil { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: #1f4ed8; }
65
+ .chip-row2 { margin-top: 10px; font-size: 34px; color: #4b5563; }
66
+
67
+ /* Sort button */
68
+ .sort-wrap { padding: 22px 24px 0; }
69
+ .sort-btn {
70
+ width: 100%;
71
+ border: 1px solid #cfd8dc;
72
+ height: 100px; border-radius: 24px;
73
+ display: flex; align-items: center; justify-content: center;
74
+ color: #1f4ed8; font-size: 44px; font-weight: 700; background: #f6f9ff;
75
+ }
76
+
77
+ /* Info text */
78
+ .info-text {
79
+ padding: 26px 36px 12px;
80
+ color: #505a66; font-size: 30px; line-height: 1.45;
81
+ }
82
+
83
+ /* Hero image */
84
+ .hero {
85
+ margin: 10px 24px 0;
86
+ position: relative;
87
+ border-radius: 18px;
88
+ overflow: hidden;
89
+ height: 560px;
90
+ background: #E0E0E0;
91
+ border: 1px solid #BDBDBD;
92
+ display: flex; align-items: center; justify-content: center;
93
+ color: #757575; font-size: 38px;
94
+ }
95
+ .img-nav {
96
+ position: absolute; top: 50%; transform: translateY(-50%);
97
+ width: 96px; height: 96px; border-radius: 50%; background: #fff;
98
+ box-shadow: 0 2px 10px rgba(0,0,0,0.15);
99
+ display: flex; align-items: center; justify-content: center;
100
+ }
101
+ .img-nav.left { left: 24px; }
102
+ .img-nav.right { right: 24px; }
103
+
104
+ /* Card below image */
105
+ .card {
106
+ margin: 0 24px;
107
+ padding-bottom: 22px;
108
+ border-bottom: 1px solid #e6ecef;
109
+ position: relative;
110
+ }
111
+ .card-title { font-size: 54px; font-weight: 800; margin: 24px 0 6px; color: #0d2043; }
112
+ .line {
113
+ display: flex; align-items: center; gap: 14px; color: #172a50; font-weight: 600; font-size: 34px; margin-bottom: 16px;
114
+ }
115
+ .details { color: #374151; font-size: 32px; margin: 6px 0; }
116
+ .map-link { margin: 16px 0 24px; color: #1f4ed8; font-weight: 700; font-size: 36px; }
117
+
118
+ /* Price pill */
119
+ .price-box {
120
+ position: absolute; right: 24px; bottom: 24px;
121
+ display: flex; align-items: flex-end; gap: 18px;
122
+ }
123
+ .discount {
124
+ background: #2f9e62; color: #fff; font-weight: 800; padding: 12px 18px; border-radius: 16px; font-size: 32px;
125
+ }
126
+ .price {
127
+ background: #fff; border-radius: 12px; padding: 8px 14px; text-align: right;
128
+ }
129
+ .price .was { color: #8b95a1; text-decoration: line-through; font-size: 34px; }
130
+ .price .now { font-size: 70px; font-weight: 900; color: #111; }
131
+ .price .sub { color: #6b7280; font-size: 28px; }
132
+
133
+ /* Advice section */
134
+ .advice {
135
+ margin: 28px 24px 0;
136
+ border: 1px solid #e5e7eb; border-radius: 24px;
137
+ padding: 26px 26px;
138
+ background: #fafafa;
139
+ }
140
+ .advice-title { font-size: 44px; font-weight: 800; color: #0d2043; margin-bottom: 10px; }
141
+ .advice-text { font-size: 34px; color: #374151; line-height: 1.45; }
142
+ .advice-row { display: flex; gap: 24px; align-items: flex-start; }
143
+
144
+ /* Simple icon helpers */
145
+ .icon { width: 40px; height: 40px; }
146
+ .icon-lg { width: 56px; height: 56px; }
147
+ </style>
148
+ </head>
149
+ <body>
150
+ <div id="render-target">
151
+
152
+ <!-- Dark status and title bar -->
153
+ <div class="statusbar"></div>
154
+ <div class="topbar">
155
+ <div class="back" aria-label="Back">
156
+ <svg class="icon-lg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2">
157
+ <path d="M15 18l-6-6 6-6"/>
158
+ </svg>
159
+ </div>
160
+ <div class="topbar-title">Cruises</div>
161
+ </div>
162
+
163
+ <!-- Expedia header -->
164
+ <div class="expedia-header">
165
+ <div class="brand">
166
+ <div class="box">
167
+ <svg class="icon" viewBox="0 0 24 24" fill="#0d2043">
168
+ <path d="M5 12l6 2 8-8-9 6-5 0z"/>
169
+ </svg>
170
+ </div>
171
+ Expedia
172
+ </div>
173
+ <div class="actions">
174
+ <svg class="icon-lg" viewBox="0 0 24 24" fill="none" stroke="#1a2b49" stroke-width="2">
175
+ <circle cx="11" cy="11" r="7"></circle><path d="M21 21l-4.3-4.3"></path>
176
+ </svg>
177
+ <svg class="icon-lg" viewBox="0 0 24 24" fill="#1a2b49">
178
+ <path d="M7 7h10a2 2 0 012 2v8H5V9a2 2 0 012-2zm3-3h4v2h-4V4z"/>
179
+ </svg>
180
+ <svg class="icon-lg" viewBox="0 0 24 24" fill="none" stroke="#1a2b49" stroke-width="2">
181
+ <circle cx="12" cy="8" r="4"></circle><path d="M4 20c1.5-3.5 5-6 8-6s6.5 2.5 8 6"></path>
182
+ </svg>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Search chip -->
187
+ <div class="search-chip">
188
+ <div class="chip-row1">
189
+ <div class="chip-title">South America</div>
190
+ <div class="pencil">
191
+ <svg class="icon-lg" viewBox="0 0 24 24" fill="none" stroke="#1f4ed8" stroke-width="2">
192
+ <path d="M3 21l3-1 11-11-2-2L4 18l-1 3zM14 4l2 2"></path>
193
+ </svg>
194
+ </div>
195
+ </div>
196
+ <div class="chip-row2">Nov 25 - Dec 23 • 3 – 9 nights</div>
197
+ </div>
198
+
199
+ <!-- Sort & Filter -->
200
+ <div class="sort-wrap">
201
+ <div class="sort-btn">Sort & Filter</div>
202
+ </div>
203
+
204
+ <!-- Info text -->
205
+ <div class="info-text">
206
+ 45 cruises found - Prices are per traveler, available within last 24 hours and valid for US and Canadian residents only. Taxes, fees, and port expenses not included. Fuel supplement may apply.
207
+ </div>
208
+
209
+ <!-- Cruise image -->
210
+ <div class="hero">
211
+ [IMG: Cruise ship at sea]
212
+ <div class="img-nav left">
213
+ <svg class="icon-lg" viewBox="0 0 24 24" fill="none" stroke="#0f172a" stroke-width="2">
214
+ <path d="M15 18l-6-6 6-6"/>
215
+ </svg>
216
+ </div>
217
+ <div class="img-nav right">
218
+ <svg class="icon-lg" viewBox="0 0 24 24" fill="none" stroke="#0f172a" stroke-width="2">
219
+ <path d="M9 6l6 6-6 6"/>
220
+ </svg>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Card details -->
225
+ <div class="card">
226
+ <div class="card-title">3 night South America</div>
227
+ <div class="line">
228
+ <svg class="icon" viewBox="0 0 24 24" fill="#172a50">
229
+ <path d="M12 2l2 6h6l-5 3 2 6-5-4-5 4 2-6-5-3h6z"/>
230
+ </svg>
231
+ MSC Preziosa
232
+ </div>
233
+ <div class="details">Dec 18, 2023 — Dec 21, 2023</div>
234
+ <div class="details">Santos, Brazil • Buzios, Brazil • Santos, Brazil</div>
235
+ <div class="map-link">Explore on Map</div>
236
+
237
+ <div class="price-box">
238
+ <div class="discount">42% off</div>
239
+ <div class="price">
240
+ <div class="was">$519</div>
241
+ <div class="now">$299</div>
242
+ <div class="sub">inside cabin per traveler</div>
243
+ </div>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Advice section -->
248
+ <div class="advice">
249
+ <div class="advice-row">
250
+ <div style="width:92px;height:92px;border-radius:50%;background:#e7eef8;display:flex;align-items:center;justify-content:center;">
251
+ <svg class="icon-lg" viewBox="0 0 24 24" fill="none" stroke="#1f4ed8" stroke-width="2">
252
+ <circle cx="12" cy="12" r="9"></circle>
253
+ <path d="M8 15v-2a4 4 0 118 0v2M10 18h4"/>
254
+ </svg>
255
+ </div>
256
+ <div>
257
+ <div class="advice-title">Get expert advice</div>
258
+ <div class="advice-text">
259
+ If you have a question, or would like personalized assistance booking your cruise, contact an Expedia Cruises travel agent today.
260
+ </div>
261
+ </div>
262
+ </div>
263
+ </div>
264
+
265
+ </div>
266
+ </body>
267
+ </html>
code/349/349_2.html ADDED
@@ -0,0 +1,320 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Expedia Cruises - Mock</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #0E1524;
14
+ color: #111;
15
+ }
16
+
17
+ /* Top status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 110px;
24
+ background: #0E1524;
25
+ color: #fff;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 36px;
29
+ box-sizing: border-box;
30
+ font-weight: 600;
31
+ }
32
+ .status-right {
33
+ margin-left: auto;
34
+ display: flex;
35
+ gap: 26px;
36
+ align-items: center;
37
+ }
38
+ .icon-small svg { width: 34px; height: 34px; fill: #D8D8D8; }
39
+
40
+ /* App bar with back + title */
41
+ .app-bar {
42
+ position: absolute;
43
+ top: 110px;
44
+ left: 0;
45
+ width: 1080px;
46
+ height: 110px;
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 36px;
50
+ box-sizing: border-box;
51
+ color: #fff;
52
+ gap: 24px;
53
+ }
54
+ .app-bar .title {
55
+ font-size: 44px;
56
+ font-weight: 700;
57
+ letter-spacing: 0.2px;
58
+ }
59
+
60
+ /* Main content card area */
61
+ .content {
62
+ position: absolute;
63
+ top: 220px;
64
+ left: 0;
65
+ width: 1080px;
66
+ height: 2180px;
67
+ background: #F7F8FB;
68
+ border-top-left-radius: 28px;
69
+ border-top-right-radius: 28px;
70
+ box-sizing: border-box;
71
+ overflow-y: hidden;
72
+ }
73
+
74
+ .brand-row {
75
+ height: 120px;
76
+ background: #fff;
77
+ display: flex;
78
+ align-items: center;
79
+ padding: 0 40px;
80
+ box-sizing: border-box;
81
+ border-bottom: 1px solid #E6E8EF;
82
+ }
83
+ .brand-left {
84
+ display: flex;
85
+ align-items: center;
86
+ gap: 20px;
87
+ color: #24324B;
88
+ font-size: 44px;
89
+ font-weight: 800;
90
+ }
91
+ .brand-icon {
92
+ width: 56px; height: 56px; border-radius: 10px; background: #FFD54F; display: flex; align-items: center; justify-content: center;
93
+ }
94
+ .brand-right {
95
+ margin-left: auto;
96
+ display: flex;
97
+ gap: 34px;
98
+ }
99
+ .brand-right .tool-icon svg { width: 48px; height: 48px; fill: #24324B; }
100
+
101
+ .page-body {
102
+ padding: 36px 40px 0 40px;
103
+ }
104
+
105
+ .h1 {
106
+ font-size: 72px;
107
+ font-weight: 800;
108
+ color: #1A2A4A;
109
+ margin-top: 12px;
110
+ }
111
+ .sub {
112
+ font-size: 34px;
113
+ color: #4A566E;
114
+ margin-top: 12px;
115
+ }
116
+
117
+ .trav-row {
118
+ margin-top: 24px;
119
+ display: flex;
120
+ align-items: center;
121
+ gap: 12px;
122
+ color: #1E4BD8;
123
+ font-size: 36px;
124
+ font-weight: 600;
125
+ }
126
+ .chip-chevron svg { width: 28px; height: 28px; fill: #1E4BD8; }
127
+
128
+ .form {
129
+ margin-top: 24px;
130
+ display: flex;
131
+ flex-direction: column;
132
+ gap: 28px;
133
+ }
134
+ .field {
135
+ background: #fff;
136
+ border: 2px solid #D9DEE7;
137
+ border-radius: 22px;
138
+ height: 120px;
139
+ padding: 20px 28px;
140
+ box-sizing: border-box;
141
+ display: flex;
142
+ align-items: center;
143
+ gap: 22px;
144
+ }
145
+ .field .ico svg { width: 48px; height: 48px; fill: #24324B; }
146
+ .field .labels { display: flex; flex-direction: column; }
147
+ .field .labels .top { font-size: 34px; color: #4A566E; }
148
+ .field .labels .value { font-size: 44px; color: #1A2A4A; font-weight: 700; }
149
+
150
+ .button {
151
+ margin-top: 34px;
152
+ height: 120px;
153
+ border-radius: 60px;
154
+ background: #2166F3;
155
+ color: #fff;
156
+ font-size: 44px;
157
+ font-weight: 800;
158
+ display: flex;
159
+ align-items: center;
160
+ justify-content: center;
161
+ position: relative;
162
+ }
163
+ .spinner {
164
+ position: absolute;
165
+ left: 50%;
166
+ top: -36px;
167
+ transform: translateX(-50%);
168
+ width: 112px; height: 112px;
169
+ border-radius: 50%;
170
+ border: 12px solid rgba(255,255,255,0.5);
171
+ border-top-color: #2166F3;
172
+ }
173
+
174
+ /* Image placeholder section */
175
+ .hero {
176
+ margin-top: 46px;
177
+ position: relative;
178
+ width: 100%;
179
+ height: 980px;
180
+ border-radius: 26px;
181
+ overflow: hidden;
182
+ background: #E0E0E0;
183
+ border: 1px solid #BDBDBD;
184
+ display: flex; align-items: center; justify-content: center;
185
+ color: #757575; font-size: 40px; font-weight: 600;
186
+ }
187
+ .hero-overlay {
188
+ position: absolute;
189
+ left: 40px;
190
+ bottom: 40px;
191
+ color: #fff;
192
+ text-shadow: 0 2px 8px rgba(0,0,0,0.4);
193
+ }
194
+ .hero-overlay .ov-title { font-size: 56px; font-weight: 800; margin-bottom: 12px; }
195
+ .hero-overlay .ov-sub { font-size: 34px; opacity: 0.95; }
196
+
197
+ </style>
198
+ </head>
199
+ <body>
200
+ <div id="render-target">
201
+
202
+ <!-- Status bar -->
203
+ <div class="status-bar">
204
+ <div class="time">11:27</div>
205
+ <div class="status-right">
206
+ <div class="icon-small">
207
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/></svg>
208
+ </div>
209
+ <div class="icon-small">
210
+ <svg viewBox="0 0 24 24"><path d="M4 15c3-3 5-4 8-4s5 1 8 4l-2 2c-2-2-4-3-6-3s-4 1-6 3l-2-2z"/></svg>
211
+ </div>
212
+ <div class="icon-small">
213
+ <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="10" rx="2"/><rect x="20" y="8" width="2" height="4"/></svg>
214
+ </div>
215
+ <div class="icon-small">
216
+ <svg viewBox="0 0 24 24"><path d="M12 3l1.8 3.6 4 .6-2.9 2.8.7 4-3.6-1.9-3.6 1.9.7-4-2.9-2.8 4-.6L12 3z"/></svg>
217
+ </div>
218
+ <div class="icon-small">
219
+ <svg viewBox="0 0 24 24"><path d="M9 3h6v2H9zM5 6h14v2H5zM3 9h18v12H3z"/></svg>
220
+ </div>
221
+ <div class="icon-small">
222
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm3 15H9l-1-4h8l-1 4z"/></svg>
223
+ </div>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- App bar -->
228
+ <div class="app-bar">
229
+ <div class="icon-small">
230
+ <svg viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6"/></svg>
231
+ </div>
232
+ <div class="title">Cruises</div>
233
+ </div>
234
+
235
+ <!-- Main card content -->
236
+ <div class="content">
237
+ <div class="brand-row">
238
+ <div class="brand-left">
239
+ <div class="brand-icon">
240
+ <!-- simple airplane-ish logo -->
241
+ <svg viewBox="0 0 24 24" width="36" height="36">
242
+ <path d="M3 13l8-3 3-8 3 3-5 6 6 5-3 3-8-3-3-3z" fill="#1E2D4A"></path>
243
+ </svg>
244
+ </div>
245
+ <div>Expedia</div>
246
+ </div>
247
+ <div class="brand-right">
248
+ <div class="tool-icon">
249
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" fill="#24324B"/><path d="M20 20l-4-4" stroke="#24324B" stroke-width="2" fill="none"/></svg>
250
+ </div>
251
+ <div class="tool-icon">
252
+ <svg viewBox="0 0 24 24"><path d="M6 8h12l-1 11H7L6 8z"/><path d="M9 8V6a3 3 0 0 1 6 0v2" fill="none" stroke="#24324B" stroke-width="2"/></svg>
253
+ </div>
254
+ <div class="tool-icon">
255
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="8" r="4"/><path d="M4 22c0-4 4-7 8-7s8 3 8 7" fill="none" stroke="#24324B" stroke-width="2"/></svg>
256
+ </div>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="page-body">
261
+ <div class="h1">Search cruises</div>
262
+ <div class="sub">For expert cruise advice, call 1-800-916-8586.</div>
263
+
264
+ <div class="trav-row">
265
+ <div>2 travelers</div>
266
+ <div class="chip-chevron">
267
+ <svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5"/></svg>
268
+ </div>
269
+ </div>
270
+
271
+ <div class="form">
272
+ <div class="field">
273
+ <div class="ico">
274
+ <svg viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>
275
+ </div>
276
+ <div class="labels">
277
+ <div class="top">Going to</div>
278
+ <div class="value">Select destination</div>
279
+ </div>
280
+ </div>
281
+
282
+ <div class="field">
283
+ <div class="ico">
284
+ <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="16" rx="2"/><path d="M7 3v4M17 3v4" stroke="#24324B" stroke-width="2"/></svg>
285
+ </div>
286
+ <div class="labels">
287
+ <div class="top">Departs as early as</div>
288
+ <div class="value">2023-11-23</div>
289
+ </div>
290
+ </div>
291
+
292
+ <div class="field">
293
+ <div class="ico">
294
+ <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="16" rx="2"/><path d="M7 3v4M17 3v4" stroke="#24324B" stroke-width="2"/></svg>
295
+ </div>
296
+ <div class="labels">
297
+ <div class="top">Departs as late as</div>
298
+ <div class="value">2023-12-23</div>
299
+ </div>
300
+ </div>
301
+
302
+ <div class="button">
303
+ <div class="spinner"></div>
304
+ Search
305
+ </div>
306
+ </div>
307
+
308
+ <div class="hero">
309
+ [IMG: Cruise ship deck and ocean wake]
310
+ <div class="hero-overlay">
311
+ <div class="ov-title">Find your voyage</div>
312
+ <div class="ov-sub">Explore all the different ways you can set sail</div>
313
+ </div>
314
+ </div>
315
+ </div>
316
+ </div>
317
+
318
+ </div>
319
+ </body>
320
+ </html>
code/349/349_3.html ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Cruises - Going to</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#0f1424; color:#fff;
10
+ }
11
+
12
+ /* Status bar */
13
+ .status-bar {
14
+ position:absolute; top:0; left:0; width:100%; height:120px;
15
+ display:flex; align-items:center; justify-content:space-between;
16
+ padding:0 40px; box-sizing:border-box; color:#ffffff;
17
+ }
18
+ .status-left { display:flex; align-items:center; gap:18px; }
19
+ .status-time { font-size:42px; font-weight:600; letter-spacing:0.5px; }
20
+ .status-right { display:flex; align-items:center; gap:24px; }
21
+
22
+ .icon {
23
+ width:40px; height:40px; display:inline-block;
24
+ }
25
+ .wifi svg, .lock svg, .battery svg { fill:none; stroke:#fff; stroke-width:5; }
26
+ .battery .pct { font-size:32px; margin-left:10px; }
27
+
28
+ /* App header */
29
+ .app-header {
30
+ position:absolute; top:120px; left:0; width:100%; height:120px;
31
+ display:flex; align-items:center; gap:24px; padding:0 32px;
32
+ box-sizing:border-box;
33
+ }
34
+ .back-btn {
35
+ width:72px; height:72px; display:flex; align-items:center; justify-content:center;
36
+ }
37
+ .title { font-size:56px; font-weight:700; color:#ffffff; }
38
+
39
+ /* Content area */
40
+ .content {
41
+ position:absolute; top:240px; left:0; width:100%; height:2160px;
42
+ background:#ffffff; color:#1d2437; border-top-left-radius:26px; border-top-right-radius:26px;
43
+ box-sizing:border-box; padding:40px;
44
+ }
45
+
46
+ .filter-header {
47
+ display:flex; align-items:center; gap:22px; margin-top:12px; margin-bottom:36px;
48
+ }
49
+ .filter-header .close-x {
50
+ width:58px; height:58px; display:flex; align-items:center; justify-content:center;
51
+ }
52
+ .filter-header .close-x svg { stroke:#1d62f2; stroke-width:10; }
53
+ .filter-title { font-size:56px; font-weight:800; color:#1d2437; }
54
+
55
+ .section-title {
56
+ font-size:46px; font-weight:800; margin:36px 0 20px 0; color:#1d2437;
57
+ }
58
+
59
+ .radio-list { display:flex; flex-direction:column; }
60
+ .radio-row {
61
+ display:flex; align-items:center; gap:28px; padding:24px 0;
62
+ border-bottom:1px solid #eef0f4;
63
+ }
64
+ .radio-row:last-child { border-bottom:none; }
65
+ .radio {
66
+ width:60px; height:60px; border-radius:50%;
67
+ border:6px solid #8991a5; box-sizing:border-box;
68
+ }
69
+ .label { font-size:44px; color:#22283a; }
70
+
71
+ /* Bottom button */
72
+ .bottom-bar {
73
+ position:absolute; left:40px; right:40px; bottom:160px;
74
+ height:140px; background:#1766f9; border-radius:70px;
75
+ display:flex; align-items:center; justify-content:center; color:#fff;
76
+ font-size:56px; font-weight:800; letter-spacing:0.5px;
77
+ box-shadow:0 8px 16px rgba(23,102,249,0.35);
78
+ }
79
+
80
+ /* Home indicator */
81
+ .home-indicator {
82
+ position:absolute; bottom:60px; left:50%; transform:translateX(-50%);
83
+ width:220px; height:12px; background:#d9dbe2; border-radius:6px;
84
+ }
85
+ </style>
86
+ </head>
87
+ <body>
88
+ <div id="render-target">
89
+
90
+ <!-- Status bar -->
91
+ <div class="status-bar">
92
+ <div class="status-left">
93
+ <div class="status-time">11:28</div>
94
+ <div class="lock icon">
95
+ <svg viewBox="0 0 24 24">
96
+ <path d="M7 10V7a5 5 0 0 1 10 0v3"/>
97
+ <rect x="5" y="10" width="14" height="10" rx="2" ry="2"></rect>
98
+ </svg>
99
+ </div>
100
+ <div class="icon">
101
+ <svg viewBox="0 0 24 24">
102
+ <circle cx="12" cy="12" r="2" fill="#fff"></circle>
103
+ </svg>
104
+ </div>
105
+ <div class="icon">
106
+ <svg viewBox="0 0 24 24">
107
+ <circle cx="12" cy="12" r="2" fill="#fff"></circle>
108
+ </svg>
109
+ </div>
110
+ <div class="icon">
111
+ <svg viewBox="0 0 24 24">
112
+ <circle cx="12" cy="12" r="2" fill="#fff"></circle>
113
+ </svg>
114
+ </div>
115
+ </div>
116
+ <div class="status-right">
117
+ <div class="wifi icon">
118
+ <svg viewBox="0 0 24 24">
119
+ <path d="M2 9c4-3 16-3 20 0"></path>
120
+ <path d="M5 12c3-2 11-2 14 0"></path>
121
+ <path d="M8 15c2-1 6-1 8 0"></path>
122
+ <circle cx="12" cy="18" r="1.6" fill="#fff"></circle>
123
+ </svg>
124
+ </div>
125
+ <div class="battery icon" style="display:flex; align-items:center;">
126
+ <svg viewBox="0 0 28 16" width="56" height="32">
127
+ <rect x="1" y="2" width="22" height="12" rx="2"></rect>
128
+ <rect x="24" y="5" width="3" height="6" rx="1"></rect>
129
+ <rect x="3" y="4" width="16" height="8" fill="#fff"></rect>
130
+ </svg>
131
+ <span class="pct">96%</span>
132
+ </div>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- App header -->
137
+ <div class="app-header">
138
+ <div class="back-btn">
139
+ <svg viewBox="0 0 24 24" width="56" height="56" fill="none" stroke="#ffffff" stroke-width="3">
140
+ <path d="M15 18l-6-6 6-6"></path>
141
+ </svg>
142
+ </div>
143
+ <div class="title">Cruises</div>
144
+ </div>
145
+
146
+ <!-- Content -->
147
+ <div class="content">
148
+
149
+ <!-- Filter header -->
150
+ <div class="filter-header">
151
+ <div class="close-x">
152
+ <svg viewBox="0 0 24 24">
153
+ <path d="M5 5l14 14M19 5L5 19"></path>
154
+ </svg>
155
+ </div>
156
+ <div class="filter-title">Going to</div>
157
+ </div>
158
+
159
+ <div class="section-title">Most Popular</div>
160
+ <div class="radio-list">
161
+ <div class="radio-row">
162
+ <div class="radio"></div><div class="label">Caribbean</div>
163
+ </div>
164
+ <div class="radio-row">
165
+ <div class="radio"></div><div class="label">Bahamas</div>
166
+ </div>
167
+ <div class="radio-row">
168
+ <div class="radio"></div><div class="label">Mexico</div>
169
+ </div>
170
+ <div class="radio-row">
171
+ <div class="radio"></div><div class="label">Alaska</div>
172
+ </div>
173
+ <div class="radio-row">
174
+ <div class="radio"></div><div class="label">Europe</div>
175
+ </div>
176
+ <div class="radio-row">
177
+ <div class="radio"></div><div class="label">Bermuda</div>
178
+ </div>
179
+ <div class="radio-row">
180
+ <div class="radio"></div><div class="label">Hawaii</div>
181
+ </div>
182
+ <div class="radio-row">
183
+ <div class="radio"></div><div class="label">Canada / New England</div>
184
+ </div>
185
+ </div>
186
+
187
+ <div class="section-title" style="margin-top:54px;">Other Destinations</div>
188
+ <div class="radio-list">
189
+ <div class="radio-row">
190
+ <div class="radio"></div><div class="label">Arctic / Antarctic</div>
191
+ </div>
192
+ <div class="radio-row">
193
+ <div class="radio"></div><div class="label">Middle East</div>
194
+ </div>
195
+ <div class="radio-row">
196
+ <div class="radio"></div><div class="label">Africa</div>
197
+ </div>
198
+ <div class="radio-row">
199
+ <div class="radio"></div><div class="label">Panama Canal</div>
200
+ </div>
201
+ <div class="radio-row">
202
+ <div class="radio"></div><div class="label">Asia</div>
203
+ </div>
204
+ <div class="radio-row">
205
+ <div class="radio"></div><div class="label">Pacific Coastal</div>
206
+ </div>
207
+ <div class="radio-row">
208
+ <div class="radio"></div><div class="label">Australia / New Zealand</div>
209
+ </div>
210
+ </div>
211
+
212
+ <div class="bottom-bar">Done</div>
213
+ </div>
214
+
215
+ <div class="home-indicator"></div>
216
+
217
+ </div>
218
+ </body>
219
+ </html>
code/349/349_4.html ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Cruises Filter UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #0b132b; /* dark app background */
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
14
+ color: #ffffff;
15
+ }
16
+
17
+ /* Top status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0; left: 0;
21
+ width: 100%;
22
+ height: 130px;
23
+ padding: 0 40px;
24
+ box-sizing: border-box;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ color: #fff;
29
+ font-size: 34px;
30
+ font-weight: 600;
31
+ letter-spacing: 0.5px;
32
+ }
33
+ .sb-right {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 28px;
37
+ }
38
+ .sb-icon {
39
+ width: 28px; height: 28px;
40
+ border-radius: 6px;
41
+ border: 2px solid rgba(255,255,255,0.7);
42
+ opacity: 0.9;
43
+ }
44
+ .battery {
45
+ width: 48px; height: 26px;
46
+ border: 2px solid rgba(255,255,255,0.8);
47
+ border-radius: 6px;
48
+ position: relative;
49
+ }
50
+ .battery::after {
51
+ content: "";
52
+ position: absolute;
53
+ right: -8px; top: 7px;
54
+ width: 6px; height: 12px;
55
+ background: rgba(255,255,255,0.8);
56
+ border-radius: 2px;
57
+ }
58
+ .battery .lvl {
59
+ position: absolute; top: 4px; left: 4px;
60
+ width: 34px; height: 16px; background: #ffffff; border-radius: 3px;
61
+ }
62
+
63
+ /* App header */
64
+ .app-header {
65
+ position: absolute;
66
+ top: 130px; left: 0;
67
+ width: 100%;
68
+ height: 120px;
69
+ display: flex;
70
+ align-items: center;
71
+ box-sizing: border-box;
72
+ padding: 0 40px;
73
+ gap: 24px;
74
+ color: #ffffff;
75
+ }
76
+ .back-btn svg { width: 48px; height: 48px; }
77
+ .title {
78
+ font-size: 52px;
79
+ font-weight: 700;
80
+ }
81
+
82
+ /* White content sheet */
83
+ .content {
84
+ position: absolute;
85
+ top: 250px; left: 0;
86
+ width: 100%;
87
+ height: calc(2400px - 250px);
88
+ background: #ffffff;
89
+ color: #1a2340;
90
+ box-sizing: border-box;
91
+ padding: 50px 60px 220px 60px;
92
+ }
93
+
94
+ /* Section and options */
95
+ .section-row {
96
+ display: flex;
97
+ align-items: center;
98
+ gap: 24px;
99
+ margin-bottom: 20px;
100
+ }
101
+ .blue-x {
102
+ width: 64px; height: 64px;
103
+ border-radius: 32px;
104
+ border: 5px solid #1e63ff;
105
+ color: #1e63ff;
106
+ display: flex; align-items: center; justify-content: center;
107
+ font-size: 44px; font-weight: 700; line-height: 1;
108
+ }
109
+ .section-title {
110
+ font-size: 44px;
111
+ font-weight: 800;
112
+ letter-spacing: 0.3px;
113
+ }
114
+
115
+ .option {
116
+ display: flex;
117
+ align-items: center;
118
+ gap: 26px;
119
+ margin: 26px 0;
120
+ }
121
+ .radio-circle {
122
+ width: 40px; height: 40px;
123
+ border-radius: 50%;
124
+ border: 6px solid #8c92a6; /* grey ring */
125
+ box-sizing: border-box;
126
+ }
127
+ .label {
128
+ font-size: 40px;
129
+ color: #232a47;
130
+ }
131
+
132
+ /* CTA button */
133
+ .cta {
134
+ position: absolute;
135
+ left: 60px;
136
+ bottom: 120px;
137
+ width: 960px;
138
+ height: 120px;
139
+ background: #1667e8;
140
+ border-radius: 60px;
141
+ color: #fff;
142
+ display: flex;
143
+ align-items: center;
144
+ justify-content: center;
145
+ font-size: 44px;
146
+ font-weight: 800;
147
+ box-shadow: 0 8px 24px rgba(22,103,232,0.35);
148
+ }
149
+
150
+ /* Home indicator (android gesture bar simulation) */
151
+ .home-indicator {
152
+ position: absolute;
153
+ bottom: 40px;
154
+ left: 50%;
155
+ transform: translateX(-50%);
156
+ width: 320px; height: 14px;
157
+ background: #cfcfd4;
158
+ border-radius: 8px;
159
+ }
160
+ </style>
161
+ </head>
162
+ <body>
163
+ <div id="render-target">
164
+
165
+ <!-- Status bar -->
166
+ <div class="status-bar">
167
+ <div>11:28</div>
168
+ <div class="sb-right">
169
+ <div class="sb-icon"></div> <!-- simple icon placeholder -->
170
+ <div class="sb-icon"></div>
171
+ <div class="sb-icon"></div>
172
+ <div class="battery"><div class="lvl"></div></div>
173
+ <div style="font-size:28px; opacity:0.9;">96%</div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Header -->
178
+ <div class="app-header">
179
+ <div class="back-btn">
180
+ <svg viewBox="0 0 48 48">
181
+ <path d="M30 8 L14 24 L30 40" stroke="#ffffff" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
182
+ </svg>
183
+ </div>
184
+ <div class="title">Cruises</div>
185
+ </div>
186
+
187
+ <!-- Content area -->
188
+ <div class="content">
189
+ <div class="section-row">
190
+ <div class="blue-x">×</div>
191
+ <div class="section-title">Going to</div>
192
+ </div>
193
+
194
+ <div class="option">
195
+ <div class="radio-circle"></div>
196
+ <div class="label">Hawaii</div>
197
+ </div>
198
+ <div class="option">
199
+ <div class="radio-circle"></div>
200
+ <div class="label">Canada / New England</div>
201
+ </div>
202
+
203
+ <div style="height: 18px;"></div>
204
+
205
+ <div class="section-title">Other Destinations</div>
206
+
207
+ <div class="option">
208
+ <div class="radio-circle"></div>
209
+ <div class="label">Arctic / Antarctic</div>
210
+ </div>
211
+ <div class="option">
212
+ <div class="radio-circle"></div>
213
+ <div class="label">Middle East</div>
214
+ </div>
215
+ <div class="option">
216
+ <div class="radio-circle"></div>
217
+ <div class="label">Africa</div>
218
+ </div>
219
+ <div class="option">
220
+ <div class="radio-circle"></div>
221
+ <div class="label">Panama Canal</div>
222
+ </div>
223
+ <div class="option">
224
+ <div class="radio-circle"></div>
225
+ <div class="label">Asia</div>
226
+ </div>
227
+ <div class="option">
228
+ <div class="radio-circle"></div>
229
+ <div class="label">Pacific Coastal</div>
230
+ </div>
231
+ <div class="option">
232
+ <div class="radio-circle"></div>
233
+ <div class="label">Australia / New Zealand</div>
234
+ </div>
235
+ <div class="option">
236
+ <div class="radio-circle"></div>
237
+ <div class="label">Central America</div>
238
+ </div>
239
+ <div class="option">
240
+ <div class="radio-circle"></div>
241
+ <div class="label">Galapagos</div>
242
+ </div>
243
+ <div class="option">
244
+ <div class="radio-circle"></div>
245
+ <div class="label">Getaway at Sea</div>
246
+ </div>
247
+ <div class="option">
248
+ <div class="radio-circle"></div>
249
+ <div class="label">Transatlantic</div>
250
+ </div>
251
+ <div class="option">
252
+ <div class="radio-circle"></div>
253
+ <div class="label">World</div>
254
+ </div>
255
+ <div class="option">
256
+ <div class="radio-circle"></div>
257
+ <div class="label">South America</div>
258
+ </div>
259
+ <div class="option">
260
+ <div class="radio-circle"></div>
261
+ <div class="label">South Pacific</div>
262
+ </div>
263
+ <div class="option">
264
+ <div class="radio-circle"></div>
265
+ <div class="label">Transpacific</div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- CTA Button -->
270
+ <div class="cta">Done</div>
271
+
272
+ <!-- Bottom gesture bar -->
273
+ <div class="home-indicator"></div>
274
+ </div>
275
+ </body>
276
+ </html>
code/349/349_5.html ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Cruises Filter UI</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px;
10
+ position:relative; overflow:hidden;
11
+ background:#0B1321; /* dark header/nav background */
12
+ color:#111;
13
+ }
14
+ /* Status bar */
15
+ .status-bar {
16
+ height:110px;
17
+ padding:0 40px;
18
+ display:flex; align-items:center; justify-content:space-between;
19
+ color:#fff; font-weight:600; font-size:38px;
20
+ }
21
+ .status-icons { display:flex; align-items:center; gap:26px; color:#fff; }
22
+ .status-dot { width:16px; height:16px; border-radius:50%; background:#fff; opacity:0.85; }
23
+ .battery {
24
+ width:48px; height:26px; border:2px solid #fff; border-radius:6px; position:relative;
25
+ }
26
+ .battery::after { content:""; position:absolute; right:-8px; top:6px; width:6px; height:14px; background:#fff; border-radius:2px; }
27
+ .battery .level { position:absolute; left:3px; top:3px; right:3px; bottom:3px; background:#fff; border-radius:4px; }
28
+ /* Header */
29
+ .header {
30
+ height:140px; padding:0 40px;
31
+ display:flex; align-items:center; gap:24px;
32
+ color:#fff;
33
+ }
34
+ .header-title { font-size:56px; font-weight:700; }
35
+ .icon-btn { width:72px; height:72px; display:flex; align-items:center; justify-content:center; }
36
+ .icon-btn svg { width:44px; height:44px; fill:none; stroke:#fff; stroke-width:8px; }
37
+ /* Content panel */
38
+ .content {
39
+ position:absolute; left:0; right:0; top:250px; bottom:0;
40
+ background:#ffffff;
41
+ border-top-left-radius:0; border-top-right-radius:0;
42
+ padding:36px 60px 220px 60px;
43
+ overflow:hidden;
44
+ }
45
+ .section-title {
46
+ font-size:50px; font-weight:800; color:#0B1321;
47
+ display:flex; align-items:center; gap:24px;
48
+ margin:20px 0 30px 0;
49
+ }
50
+ .round-x {
51
+ width:60px; height:60px; border-radius:50%;
52
+ border:3px solid #2D6EEB; display:flex; align-items:center; justify-content:center;
53
+ }
54
+ .round-x svg { width:36px; height:36px; stroke:#2D6EEB; stroke-width:8px; }
55
+ .radio-list { margin-top:10px; }
56
+ .radio-item {
57
+ display:flex; align-items:center;
58
+ padding:26px 0;
59
+ border-bottom:0px solid #eee;
60
+ }
61
+ .radio-label {
62
+ font-size:42px; color:#182030;
63
+ }
64
+ .radio-circle {
65
+ width:50px; height:50px; border-radius:50%;
66
+ border:8px solid #98A0AF; margin-right:28px;
67
+ position:relative;
68
+ }
69
+ .radio-circle.selected { border-color:#236BFF; }
70
+ .radio-circle.selected::after {
71
+ content:""; position:absolute; left:50%; top:50%;
72
+ width:18px; height:18px; background:#236BFF; border-radius:50%;
73
+ transform:translate(-50%, -50%);
74
+ }
75
+ .subhead {
76
+ font-size:44px; font-weight:800; color:#182030;
77
+ margin-top:36px; margin-bottom:14px;
78
+ }
79
+ /* Bottom action button */
80
+ .bottom-action {
81
+ position:absolute; left:60px; right:60px; bottom:50px;
82
+ height:140px; background:#1E64F0; color:#fff;
83
+ border-radius:80px; display:flex; align-items:center; justify-content:center;
84
+ font-size:52px; font-weight:800; letter-spacing:0.5px;
85
+ box-shadow:0 10px 20px rgba(30,100,240,0.35);
86
+ }
87
+ </style>
88
+ </head>
89
+ <body>
90
+ <div id="render-target">
91
+
92
+ <!-- Top status bar -->
93
+ <div class="status-bar">
94
+ <div>11:29</div>
95
+ <div class="status-icons">
96
+ <div class="status-dot"></div>
97
+ <div class="status-dot" style="width:18px;height:18px;border-radius:6px;"></div>
98
+ <div class="battery"><div class="level"></div></div>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- Header with back arrow and title -->
103
+ <div class="header">
104
+ <div class="icon-btn" aria-label="Back">
105
+ <svg viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7"/><path d="M4 12h17"/></svg>
106
+ </div>
107
+ <div class="header-title">Cruises</div>
108
+ </div>
109
+
110
+ <!-- Main content -->
111
+ <div class="content">
112
+ <div class="section-title">
113
+ <div class="round-x">
114
+ <svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg>
115
+ </div>
116
+ <span>Going to</span>
117
+ </div>
118
+
119
+ <div class="radio-list">
120
+ <div class="radio-item">
121
+ <div class="radio-circle"></div>
122
+ <div class="radio-label">Hawaii</div>
123
+ </div>
124
+ <div class="radio-item">
125
+ <div class="radio-circle"></div>
126
+ <div class="radio-label">Canada / New England</div>
127
+ </div>
128
+ </div>
129
+
130
+ <div class="subhead">Other Destinations</div>
131
+
132
+ <div class="radio-list">
133
+ <div class="radio-item">
134
+ <div class="radio-circle"></div>
135
+ <div class="radio-label">Arctic / Antarctic</div>
136
+ </div>
137
+ <div class="radio-item">
138
+ <div class="radio-circle"></div>
139
+ <div class="radio-label">Middle East</div>
140
+ </div>
141
+ <div class="radio-item">
142
+ <div class="radio-circle"></div>
143
+ <div class="radio-label">Africa</div>
144
+ </div>
145
+ <div class="radio-item">
146
+ <div class="radio-circle"></div>
147
+ <div class="radio-label">Panama Canal</div>
148
+ </div>
149
+ <div class="radio-item">
150
+ <div class="radio-circle"></div>
151
+ <div class="radio-label">Asia</div>
152
+ </div>
153
+ <div class="radio-item">
154
+ <div class="radio-circle"></div>
155
+ <div class="radio-label">Pacific Coastal</div>
156
+ </div>
157
+ <div class="radio-item">
158
+ <div class="radio-circle"></div>
159
+ <div class="radio-label">Australia / New Zealand</div>
160
+ </div>
161
+ <div class="radio-item">
162
+ <div class="radio-circle"></div>
163
+ <div class="radio-label">Central America</div>
164
+ </div>
165
+ <div class="radio-item">
166
+ <div class="radio-circle"></div>
167
+ <div class="radio-label">Galapagos</div>
168
+ </div>
169
+ <div class="radio-item">
170
+ <div class="radio-circle"></div>
171
+ <div class="radio-label">Getaway at Sea</div>
172
+ </div>
173
+ <div class="radio-item">
174
+ <div class="radio-circle"></div>
175
+ <div class="radio-label">Transatlantic</div>
176
+ </div>
177
+ <div class="radio-item">
178
+ <div class="radio-circle"></div>
179
+ <div class="radio-label">World</div>
180
+ </div>
181
+
182
+ <div class="radio-item">
183
+ <div class="radio-circle selected"></div>
184
+ <div class="radio-label" style="font-weight:700;">South America</div>
185
+ </div>
186
+
187
+ <div class="radio-item">
188
+ <div class="radio-circle"></div>
189
+ <div class="radio-label">South Pacific</div>
190
+ </div>
191
+ <div class="radio-item">
192
+ <div class="radio-circle"></div>
193
+ <div class="radio-label">Transpacific</div>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Bottom action button -->
198
+ <div class="bottom-action">Done</div>
199
+ </div>
200
+
201
+ </div>
202
+ </body>
203
+ </html>