File size: 9,666 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Ticket Options UI</title>
<style>
  body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #222;
  }
  #render-target {
    position: relative;
    width: 1080px;
    height: 2400px;
    overflow: hidden;
    background: linear-gradient(180deg, #E26723 0%, #EA8040 18%, #F3A66B 32%, #F6B987 45%, #F4D7C2 60%, #F5F5F5 70%, #F5F5F5 100%);
    border-radius: 0;
    box-shadow: none;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 24px;
    left: 36px;
    right: 36px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.95);
    font-size: 30px;
    letter-spacing: 0.5px;
  }
  .status-left {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .status-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Top header */
  .top-bar {
    position: absolute;
    top: 100px;
    left: 24px;
    right: 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .back-btn {
    position: absolute;
    left: 8px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .title {
    font-size: 48px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
  }

  /* Journey summary card */
  .journey-card {
    position: absolute;
    top: 220px;
    left: 36px;
    right: 36px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(2px);
    border-radius: 36px;
    padding: 36px 40px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  }
  .journey-title {
    font-size: 42px;
    font-weight: 800;
    color: #1d1d1d;
    margin-bottom: 16px;
  }
  .journey-sub {
    font-size: 32px;
    color: #6b6b6b;
    line-height: 1.35;
  }
  .journey-card .chev-right {
    position: absolute;
    right: 28px;
    top: 40px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Select tickets section */
  .tickets-section {
    position: absolute;
    top: 480px;
    left: 36px;
    right: 36px;
    background: rgba(255,255,255,0.75);
    border-radius: 32px;
    padding: 32px 32px 48px;
  }
  .tickets-title {
    font-size: 44px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 24px;
  }
  .ticket-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #E5E5E5;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.04);
  }
  .price-line {
    font-size: 42px;
    font-weight: 800;
    color: #C8561D;
  }
  .per-pax {
    font-weight: 500;
    color: #6f6f6f;
    font-size: 32px;
    margin-left: 8px;
  }
  .policy {
    margin-top: 16px;
    font-size: 32px;
    color: #8a8a8a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .select-btn {
    background: #DA6A27;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    padding: 28px 40px;
    border-radius: 22px;
    border: none;
    cursor: default;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.08);
  }

  /* Bottom sheet */
  .bottom-sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 160px;
    top: 820px;
    background: #fff;
    border-top-left-radius: 44px;
    border-top-right-radius: 44px;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.08);
    padding: 28px 36px 120px;
  }
  .sheet-header {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #1d1d1d;
    margin: 20px 0 32px;
  }

  .sheet-filter {
    background: #EEF3FF;
    border-radius: 26px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2F68FF;
    font-size: 34px;
    font-weight: 700;
    margin: 0 8px 14px;
  }
  .itinerary-label {
    color: #6b6b6b;
    font-weight: 600;
  }
  .itinerary-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6b6b6b;
    font-size: 34px;
    font-weight: 600;
  }

  .details-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #E7E7E7;
    padding: 34px 36px 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    margin: 8px;
  }
  .train-number {
    font-size: 32px;
    color: #7a7a7a;
    margin-bottom: 26px;
  }
  .times-row {
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    align-items: center;
    margin-bottom: 22px;
  }
  .time-left,
  .time-right {
    font-size: 72px;
    font-weight: 800;
    color: #121212;
  }
  .duration {
    text-align: center;
    color: #9a9a9a;
    font-size: 30px;
    position: relative;
  }
  .duration:before,
  .duration:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 180px;
    height: 1px;
    background: #E4E4E4;
  }
  .duration:before { left: -190px; }
  .duration:after { right: -190px; }

  .stations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 36px;
    color: #2b2b2b;
    margin-top: 6px;
    gap: 20px;
  }
  .station-right {
    text-align: right;
  }

  /* Gesture bar (bottom) */
  .system-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: #000;
  }
  .home-pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 52px;
    width: 440px;
    height: 14px;
    background: #D0D0D0;
    border-radius: 8px;
  }

  /* Helper: chevron icons size */
  svg { display: block; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>12:30</div>
      <div class="status-icon" style="background:#3B1F12;border-radius:6px; width:26px; height:26px;"></div>
    </div>
    <div class="status-right">
      <!-- simple icons -->
      <div class="status-icon">
        <svg width="34" height="34" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" fill="none" stroke="rgba(255,255,255,0.9)" stroke-width="2"/>
        </svg>
      </div>
      <div class="status-icon">
        <svg width="34" height="34" viewBox="0 0 24 24">
          <path d="M3 16h18M6 12h12M9 8h6" stroke="rgba(255,255,255,0.9)" stroke-width="2" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="status-icon">
        <svg width="34" height="34" viewBox="0 0 24 24">
          <rect x="3" y="6" width="16" height="12" rx="2" fill="none" stroke="rgba(255,255,255,0.9)" stroke-width="2"/>
          <path d="M21 10v4" stroke="rgba(255,255,255,0.9)" stroke-width="2" stroke-linecap="round"/>
          <path d="M8 12l2.5-4 2 8 2-4" stroke="rgba(255,255,255,0.9)" stroke-width="2" stroke-linecap="round" fill="none"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Top header -->
  <div class="top-bar">
    <div class="back-btn">
      <svg width="48" height="48" viewBox="0 0 24 24">
        <path d="M15 5l-7 7 7 7" fill="none" stroke="rgba(255,255,255,0.95)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="title">Ticket options</div>
  </div>

  <!-- Journey card -->
  <div class="journey-card">
    <div class="journey-title">27 Oct 2023, 07:47–11:00</div>
    <div class="journey-sub">Amsterdam Central - London St Pancras International · Eurostar 9119</div>
    <div class="chev-right">
      <svg width="36" height="36" viewBox="0 0 24 24">
        <path d="M9 5l7 7-7 7" fill="none" stroke="#7a7a7a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
  </div>

  <!-- Select tickets section -->
  <div class="tickets-section">
    <div class="tickets-title">Select tickets</div>
    <div class="ticket-card">
      <div>
        <div><span class="price-line">US$ 402.49</span><span class="per-pax">/pax</span></div>
        <div class="policy">
          <span>Change & refund policies</span>
          <svg width="26" height="26" viewBox="0 0 24 24">
            <path d="M9 6l6 6-6 6" fill="none" stroke="#9b9b9b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
          </svg>
        </div>
      </div>
      <button class="select-btn">Select</button>
    </div>
  </div>

  <!-- Bottom sheet -->
  <div class="bottom-sheet">
    <div class="sheet-header">Train details</div>

    <div class="sheet-filter">
      <div>27 Oct 2023</div>
      <div class="itinerary-row"><span class="itinerary-label">Itinerary</span>
        <svg width="26" height="26" viewBox="0 0 24 24">
          <path d="M6 9l6 6 6-6" fill="none" stroke="#6b6b6b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>

    <div class="details-card">
      <div class="train-number">Eurostar 9119</div>
      <div class="times-row">
        <div class="time-left">07:47</div>
        <div class="duration">4h 13m</div>
        <div class="time-right">11:00</div>
      </div>
      <div class="stations">
        <div class="station-left">Amsterdam Central</div>
        <div class="station-right">London St Pancras<br/>International</div>
      </div>
    </div>
  </div>

  <!-- System gesture bar -->
  <div class="system-bottom">
    <div class="home-pill"></div>
  </div>
</div>
</body>
</html>