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

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #0d0d0d;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 36px;
    box-sizing: border-box;
    font-weight: 600;
    letter-spacing: 0.2px;
  }
  .status-left { display: flex; align-items: center; gap: 18px; }
  .status-time { font-size: 40px; }
  .status-right { margin-left: auto; display: flex; align-items: center; gap: 26px; }
  .icon-cloud, .icon-wifi, .icon-battery {
    width: 44px; height: 44px;
  }

  /* Page header */
  .page {
    position: absolute;
    top: 120px;
    left: 0;
    width: 1080px;
    height: 2280px;
    box-sizing: border-box;
    padding: 40px 40px 160px;
    color: #222;
  }
  .top-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #222;
  }
  .top-actions .spacer { flex: 1; }
  .ico {
    width: 64px; height: 64px; border-radius: 32px;
    display: flex; align-items: center; justify-content: center;
  }
  .ico svg { width: 36px; height: 36px; }

  .title {
    font-size: 68px;
    font-weight: 800;
    margin-top: 26px;
  }
  .subtext {
    color: #666;
    font-size: 34px;
    margin-top: 8px;
  }

  .rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    color: #444;
    font-size: 34px;
  }
  .pill-green {
    background: #1aa34a;
    color: #fff;
    padding: 12px 18px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .meta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #333;
    font-size: 32px;
    margin-top: 24px;
  }
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border: 1px solid #ddd;
    border-radius: 36px;
    font-size: 32px;
    color: #333;
    background: #fff;
  }
  .chip.green { color: #2e7d32; border-color: #c8e6c9; }
  .chip.orange { color: #bf360c; border-color: #ffc9a7; }
  .chips {
    display: flex; gap: 18px; margin-top: 34px;
  }

  .banner {
    margin-top: 30px;
    width: 100%;
    height: 180px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 36px;
    border-radius: 16px;
  }

  /* Overlay scrim */
  .scrim {
    position: absolute;
    top: 120px;
    left: 0;
    width: 1080px;
    height: 2280px;
    background: rgba(0,0,0,0.55);
  }

  /* Bottom sheet modal */
  .modal {
    position: absolute;
    left: 50px;
    bottom: 360px;
    width: 980px;
    height: 1280px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    overflow: hidden;
    z-index: 5;
  }
  .modal-inner {
    height: 100%;
    overflow-y: auto;
    padding: 40px 50px 60px;
    box-sizing: border-box;
  }
  .modal h1 {
    margin: 0;
    font-size: 62px;
    font-weight: 800;
    color: #222;
  }
  .section-head {
    margin-top: 36px;
    display: flex; align-items: baseline;
    font-size: 44px;
    font-weight: 800;
    color: #f15b6c;
  }
  .section-head .count {
    margin-left: auto;
    color: #db3e50;
    font-weight: 800;
    font-size: 44px;
  }
  .list {
    margin-top: 18px;
    border-top: 1px solid #eee;
  }
  .row {
    display: flex;
    align-items: center;
    padding: 34px 0;
    font-size: 40px;
    color: #32363a;
    border-bottom: 1px solid #eee;
  }
  .row .num {
    margin-left: auto;
    color: #6b6f76;
    font-weight: 700;
    font-size: 40px;
  }

  /* Close pill */
  .close-pill {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    background: #2b2b2b;
    color: #fff;
    padding: 24px 36px;
    border-radius: 36px;
    display: flex; align-items: center; gap: 24px;
    z-index: 6;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    font-size: 40px;
  }
  .close-pill .xbox {
    width: 72px; height: 72px;
    background: #ebc38f;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #5b2c00;
    font-weight: 900;
    font-size: 42px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">
      <div class="status-time">11:48</div>
      <!-- simple cloud glyph -->
      <svg class="icon-cloud" viewBox="0 0 24 24" fill="#fff">
        <path d="M6 15a4 4 0 0 1 1-8c1.4-3 6-3 7 1h1a4 4 0 0 1 0 8H6z"/>
      </svg>
    </div>
    <div class="status-right">
      <svg class="icon-wifi" viewBox="0 0 24 24" fill="#fff">
        <path d="M2 9c5-5 15-5 20 0l-2 2c-4-4-12-4-16 0L2 9zm4 4c3-3 9-3 12 0l-2 2c-2-2-6-2-8 0l-2-2zm4 4l2 2 2-2-2-2-2 2z"/>
      </svg>
      <svg class="icon-battery" viewBox="0 0 24 24" fill="#fff">
        <path d="M2 8h16v8H2V8zm18 3h2v2h-2v-2z"/>
      </svg>
    </div>
  </div>

  <!-- Underlying Page Content -->
  <div class="page">
    <div class="top-actions">
      <div class="ico">
        <svg viewBox="0 0 24 24" fill="#222"><path d="M15 18l-6-6 6-6v12z"/></svg>
      </div>
      <div class="spacer"></div>
      <div class="ico">
        <svg viewBox="0 0 24 24" fill="#222"><path d="M15.5 14h-.79l-.28-.27A6.5 6.5 0 1 0 16 9.5l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0A4.5 4.5 0 1 1 14 9.5 4.5 4.5 0 0 1 9.5 14z"/></svg>
      </div>
      <div class="ico">
        <svg viewBox="0 0 24 24" fill="#222"><path d="M12 21s-6-4.35-9-8.35C-1 6 3 2 7.5 3.5 9.25 4.1 10.32 5.38 12 7c1.68-1.62 2.75-2.9 4.5-3.5C21 2 25 6 21 12.65 18 16.65 12 21 12 21z"/></svg>
      </div>
      <div class="ico">
        <svg viewBox="0 0 24 24" fill="#222"><path d="M18 16.08V10h-2v6.08l-3.5-2.11-.5-.29-.5.29L7 16.08V10H5v8l7-4 6 3.43V18h-2v-1.92z"/></svg>
      </div>
      <div class="ico">
        <svg viewBox="0 0 24 24" fill="#222"><path d="M12 16h8v2h-8zm0-5h8v2h-8zm0-5h8v2h-8zM4 6h2v2H4zm0 5h2v2H4zm0 5h2v2H4z"/></svg>
      </div>
    </div>

    <div class="title">Biryani Blues</div>
    <div class="subtext">Biryani · Kebab · Desserts</div>

    <div class="rating-row">
      <div class="pill-green">
        4.1
        <svg viewBox="0 0 24 24" fill="#fff" width="24" height="24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>
      </div>
      <div>16.4K reviews</div>
    </div>

    <div class="meta-row">
      <span>40–45 min</span>
      <span>·</span>
      <span>8 km</span>
      <span>·</span>
      <span>Sector 56</span>
      <svg viewBox="0 0 24 24" width="28" height="28" fill="#333" style="margin-left:6px"><path d="M9 6l6 6-6 6V6z"/></svg>
    </div>

    <div class="banner">[IMG: Offer banner - 40% OFF up to ₹80]</div>

    <div class="chips">
      <div class="chip green">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#2e7d32"><circle cx="12" cy="12" r="10"/></svg>
        Veg
        <span style="margin-left:10px; color:#999;">×</span>
      </div>
      <div class="chip">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#a33"><rect x="6" y="6" width="12" height="12" rx="6"/></svg>
        Non-veg
      </div>
      <div class="chip orange">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#bf360c"><path d="M12 2l3 7h7l-5.5 4.5L18 22l-6-4-6 4 1.5-8.5L2 9h7z"/></svg>
        Bestseller
      </div>
      <div class="chip">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#f0a800"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z"/></svg>
        Top rated
      </div>
    </div>
  </div>

  <!-- Dark Overlay -->
  <div class="scrim"></div>

  <!-- Bottom Sheet Modal -->
  <div class="modal">
    <div class="modal-inner">
      <h1>Menu</h1>

      <div class="section-head">
        <span>Recommended</span>
        <span class="count">13</span>
      </div>

      <div class="list">
        <div class="row">
          <span>New Launches</span>
          <span class="num">5</span>
        </div>
        <div class="row">
          <span>Hyderabadi Dum Biryanis</span>
          <span class="num">5</span>
        </div>
        <div class="row">
          <span>Brown Rice Biryanis (Healthy Items)</span>
          <span class="num">3</span>
        </div>
        <div class="row">
          <span>Meal Combos</span>
          <span class="num">2</span>
        </div>
        <div class="row">
          <span>Celebration Handi Biryanis</span>
          <span class="num">6</span>
        </div>
        <div class="row">
          <span>Exclusive Mini Biryanis Starting @ Rs.99/-</span>
          <span class="num">5</span>
        </div>
        <div class="row">
          <span>Kebabs &amp; Starters</span>
          <span class="num">4</span>
        </div>
      </div>
    </div>
  </div>

  <!-- Close pill -->
  <div class="close-pill">
    <div class="xbox">×</div>
    <div>Close</div>
  </div>

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