File size: 9,550 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Pizza Outlet - Menu</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 36px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #1e1e1e;
  }
  .statusbar {
    height: 92px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2b2b2b;
    font-weight: 600;
    font-size: 34px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  /* Header / location */
  .header {
    padding: 24px 36px 12px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .loc-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .loc-text small {
    display: block;
    color: #7a7a7a;
    font-size: 28px;
    margin-bottom: 4px;
  }
  .loc-text strong {
    font-size: 40px;
    font-weight: 700;
    color: #151515;
    letter-spacing: 0.2px;
  }
  .loc-text .down {
    vertical-align: middle;
    margin-left: 12px;
  }
  .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 2px solid #2f6a2f;
    color: #2f6a2f;
    border-radius: 20px;
    padding: 22px 28px;
    font-size: 34px;
    font-weight: 700;
    background: #ffffff;
    box-shadow: 0 4px 0 rgba(47,106,47,0.15);
  }
  /* Tabs */
  .tabs {
    margin: 10px 36px 22px 36px;
    background: #eaeaea;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
  }
  .tab {
    padding: 26px 0;
    text-align: center;
    font-weight: 800;
    font-size: 34px;
    color: #777;
  }
  .tab.active {
    background: #3f6d38;
    color: #fff;
  }
  /* Banner */
  .banner {
    margin: 0 36px;
    height: 220px;
    border-radius: 22px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-weight: 800;
    font-size: 46px;
  }
  /* Menu header + search */
  .menu-head {
    margin: 28px 36px 18px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu-head h2 {
    margin: 0;
    font-size: 54px;
    letter-spacing: 1px;
  }
  .search {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f1efef;
    border-radius: 18px;
    padding: 22px 26px;
    font-size: 34px;
    color: #333;
  }
  /* Grid cards */
  .grid {
    padding: 10px 36px 140px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  .card .img {
    height: 420px;
    background: #E0E0E0;
    border-bottom: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 36px;
    position: relative;
  }
  .card .fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0));
    pointer-events: none;
  }
  .card .meta {
    position: absolute;
    bottom: 20px;
    left: 24px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
  }
  .card .meta .title {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  .card .meta .sub {
    font-size: 30px;
    font-weight: 700;
  }
  /* Bottom navigation */
  .bottom-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 96px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
    padding: 20px 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
  }
  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: #777;
    font-size: 28px;
    font-weight: 600;
  }
  .nav-item.active { color: #2f6a2f; }
  .gesture {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 14px;
    background: #000;
    border-radius: 10px;
    opacity: 0.9;
  }
  /* Simple helpers for icon sizing */
  svg { display: block; }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status Bar -->
  <div class="statusbar">
    <div>1:59</div>
    <div class="status-icons">
      <!-- Location/compass like icons (simple dots) -->
      <svg width="34" height="34"><circle cx="17" cy="17" r="16" fill="#9c9c9c"/></svg>
      <svg width="34" height="34"><circle cx="17" cy="17" r="16" fill="#b0b0b0"/></svg>
      <svg width="34" height="34"><circle cx="17" cy="17" r="16" fill="#c7c7c7"/></svg>
      <!-- WiFi -->
      <svg width="48" height="32" viewBox="0 0 48 32">
        <path d="M4 10c10-8 30-8 40 0M10 16c7-5 21-5 28 0M18 22c4-3 10-3 14 0M24 28l4 4-4 0z" fill="none" stroke="#5a5a5a" stroke-width="2" stroke-linecap="round"/>
      </svg>
      <!-- Battery -->
      <svg width="56" height="28" viewBox="0 0 56 28">
        <rect x="2" y="6" width="46" height="16" rx="3" ry="3" fill="none" stroke="#5a5a5a" stroke-width="2"/>
        <rect x="6" y="10" width="36" height="8" rx="2" fill="#5a5a5a"/>
        <rect x="50" y="10" width="4" height="8" rx="1" fill="#5a5a5a"/>
      </svg>
    </div>
  </div>

  <!-- Header with location and call button -->
  <div class="header">
    <div class="loc-wrap">
      <!-- Store icon -->
      <svg width="64" height="64" viewBox="0 0 64 64">
        <path d="M8 26l6-12h36l6 12v6H8v-6zM12 34h40v24H12V34z" fill="none" stroke="#222" stroke-width="3" stroke-linejoin="round"/>
      </svg>
      <div class="loc-text">
        <small>Indore</small>
        <strong>Indore (Bhawarkua)
          <!-- Down arrow -->
          <svg class="down" width="26" height="26" viewBox="0 0 24 24">
            <path d="M6 9l6 6 6-6" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round"/>
          </svg>
        </strong>
      </div>
    </div>
    <div class="call-btn">
      <!-- Phone icon -->
      <svg width="34" height="34" viewBox="0 0 24 24">
        <path d="M6 4l4 2-2 3c1 2 3 4 5 5l3-2 2 4c-2 1-4 2-6 1-4-2-7-5-9-9 0-2 1-4 3-4z" fill="none" stroke="#2f6a2f" stroke-width="2" stroke-linejoin="round"/>
      </svg>
      <span>CALL OUTLET</span>
    </div>
  </div>

  <!-- Order type tabs -->
  <div class="tabs">
    <div class="tab active">DELIVERY</div>
    <div class="tab">PICK UP</div>
    <div class="tab">DINE-IN</div>
  </div>

  <!-- Banner -->
  <div class="banner">[IMG: Cheese Burst Banner]</div>

  <!-- Menu header -->
  <div class="menu-head">
    <h2>MENU</h2>
    <div class="search">
      <svg width="36" height="36" viewBox="0 0 24 24">
        <circle cx="10" cy="10" r="6" fill="none" stroke="#333" stroke-width="2"/>
        <path d="M15 15l6 6" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
      <span>Search</span>
    </div>
  </div>

  <!-- Grid of menu items -->
  <div class="grid">
    <!-- Card 1 -->
    <div class="card">
      <div class="img">[IMG: Pizza with toppings]
        <div class="fade"></div>
        <div class="meta">
          <div class="title">BOGO</div>
          <div class="sub">29 Varieties Available</div>
        </div>
      </div>
    </div>
    <!-- Card 2 -->
    <div class="card">
      <div class="img">[IMG: Cheese Pizza]
        <div class="fade"></div>
        <div class="meta">
          <div class="title">PIZZA</div>
          <div class="sub">38 Varieties Available</div>
        </div>
      </div>
    </div>
    <!-- Card 3 -->
    <div class="card">
      <div class="img">[IMG: Garlic Bread Slices]
        <div class="fade"></div>
        <div class="meta">
          <div class="title">GARLIC BREADS</div>
          <div class="sub">11 Varieties Available</div>
        </div>
      </div>
    </div>
    <!-- Card 4 -->
    <div class="card">
      <div class="img">[IMG: Bruschetta Pieces]
        <div class="fade"></div>
        <div class="meta">
          <div class="title">BRUSCHETTA</div>
          <div class="sub">2 Varieties Available</div>
        </div>
      </div>
    </div>
    <!-- Card 5 -->
    <div class="card">
      <div class="img">[IMG: Veg Pizza Slice]
        <div class="fade"></div>
        <div class="meta">
          <div class="title">SPECIALS</div>
          <div class="sub">6 Varieties Available</div>
        </div>
      </div>
    </div>
    <!-- Card 6 -->
    <div class="card">
      <div class="img">[IMG: Pastas & Wraps Combo]
        <div class="fade"></div>
        <div class="meta">
          <div class="title">COMBOS</div>
          <div class="sub">8 Varieties Available</div>
        </div>
      </div>
    </div>
  </div>

  <!-- Bottom navigation bar -->
  <div class="bottom-nav">
    <div class="nav-item active">
      <svg width="44" height="44" viewBox="0 0 24 24">
        <path d="M3 11l9-7 9 7v9H15v-5H9v5H3z" fill="#2f6a2f"/>
      </svg>
      <div>Home</div>
    </div>
    <div class="nav-item">
      <svg width="44" height="44" viewBox="0 0 24 24">
        <path d="M12 2l2 4 4 1-3 3 1 4-4-2-4 2 1-4-3-3 4-1 2-4z" fill="#888"/>
      </sv