File size: 8,450 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pizza Menu</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #212121;
  }

  /* Status bar */
  .status-bar {
    height: 110px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 40px;
    color: #2b2b2b;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .dot { width: 14px; height: 14px; background: #6f6f6f; border-radius: 50%; display: inline-block; }

  /* Header */
  .header {
    padding: 30px 48px 36px 48px;
    border-bottom: 1px solid #e5e5e5;
  }
  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .title-area {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .search-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .customizable-top {
    font-size: 34px;
    color: #7a7a7a;
    margin-top: 20px;
    text-align: right;
  }
  .icon-btn {
    width: 80px; height: 80px; border-radius: 40px; display: flex; align-items: center; justify-content: center;
  }
  .icon { width: 60px; height: 60px; }

  /* Product list */
  .list {
    padding-bottom: 280px;
  }
  .item {
    padding: 48px;
    border-bottom: 1px solid #ececec;
  }
  .item-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  .veg-dot {
    width: 38px; height: 38px; border-radius: 8px; border: 2px solid #4CAF50; display: inline-block; margin-right: 18px;
  }
  .left {
    width: 600px;
  }
  .name {
    font-size: 54px;
    font-weight: 700;
    margin: 10px 0 10px;
  }
  .price {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px;
  }
  .desc {
    font-size: 36px;
    color: #757575;
    line-height: 1.4;
  }
  .right {
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .img-ph {
    width: 320px; height: 320px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    border-radius: 160px;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 28px; text-align: center; padding: 10px;
  }
  .add-btn {
    width: 300px; height: 96px;
    border: 2px solid #7A9B77;
    background: #EEF4EE;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    color: #2F6B3A; font-size: 42px; font-weight: 700;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
  }
  .add-btn svg { margin-left: 14px; }
  .customizable {
    font-size: 34px; color: #7a7a7a;
  }

  /* Section footer */
  .section-title {
    font-size: 58px;
    font-weight: 800;
    margin: 70px 0 16px 48px;
    letter-spacing: 0.5px;
  }
  .section-underline {
    width: 300px; height: 10px; background: #376a3f; border-radius: 6px; margin-left: 48px;
  }

  /* Floating menu button */
  .floating-menu {
    position: absolute;
    right: 180px;
    bottom: 320px;
    background: #000000;
    color: #ffffff;
    padding: 30px 44px;
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 44px;
    font-weight: 700;
  }
  .floating-menu svg { width: 52px; height: 52px; }

  /* Bottom safe area */
  .bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1080px;
    height: 160px;
    background: #000000;
  }
  .home-indicator {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px; height: 16px;
    background: #ffffff;
    border-radius: 12px;
    opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>2:02</div>
    <div class="status-icons">
      <span class="dot"></span>
      <span class="dot"></span>
      <span class="dot"></span>
      <span class="dot"></span>
      <!-- WiFi icon -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M12 18.5l2.5-2.5a3.5 3.5 0 0 0-5 0L12 18.5zm-5-5l2-2a6 6 0 0 1 8 0l2 2-2 2a6 6 0 0 0-8 0l-2-2zm-5-5l3-3a12 12 0 0 1 16 0l3 3-2 2a12 12 0 0 0-18 0l-2-2z" fill="#3b3b3b"></path>
      </svg>
      <!-- Battery icon -->
      <svg class="icon" viewBox="0 0 24 24">
        <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#3b3b3b" stroke-width="2"></rect>
        <rect x="4" y="8" width="14" height="8" fill="#3b3b3b"></rect>
        <rect x="20" y="10" width="2" height="4" fill="#3b3b3b"></rect>
      </svg>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="header-row">
      <div class="title-area">
        <!-- Back icon -->
        <svg class="icon" 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"></path>
        </svg>
        <div class="title">Pizza</div>
      </div>
      <div class="search-wrap">
        <!-- Search icon -->
        <svg class="icon" viewBox="0 0 24 24">
          <circle cx="11" cy="11" r="6.5" stroke="#222" stroke-width="2" fill="none"></circle>
          <path d="M16 16l5 5" stroke="#222" stroke-width="2" stroke-linecap="round"></path>
        </svg>
      </div>
    </div>
    <div class="customizable-top">Customizable</div>
  </div>

  <!-- Product List -->
  <div class="list">
    <!-- Item 1 -->
    <div class="item">
      <div class="item-row">
        <div class="left">
          <div><span class="veg-dot"></span></div>
          <div class="name">Corn Wave</div>
          <div class="price">₹155</div>
          <div class="desc">Sweet &amp; juicy golden corn with real mozzarella &amp; cheddar cheese</div>
        </div>
        <div class="right">
          <div class="img-ph">[IMG: Corn Pizza]</div>
          <div class="add-btn">
            ADD
            <svg viewBox="0 0 24 24">
              <path d="M12 5v14M5 12h14" stroke="#2F6B3A" stroke-width="3" stroke-linecap="round"></path>
            </svg>
          </div>
          <div class="customizable">Customizable</div>
        </div>
      </div>
    </div>

    <!-- Item 2 -->
    <div class="item">
      <div class="item-row">
        <div class="left">
          <div><span class="veg-dot"></span></div>
          <div class="name">Makhani Mashhoor</div>
          <div class="price">₹155</div>
          <div class="desc">Crisp onion over makhani sauce with real mozzarella &amp; cheddar cheese</div>
        </div>
        <div class="right">
          <div class="img-ph">[IMG: Makhani Onion Pizza]</div>
          <div class="add-btn">
            ADD
            <svg viewBox="0 0 24 24">
              <path d="M12 5v14M5 12h14" stroke="#2F6B3A" stroke-width="3" stroke-linecap="round"></path>
            </svg>
          </div>
          <div class="customizable">Customizable</div>
        </div>
      </div>
    </div>

    <!-- Item 3 -->
    <div class="item">
      <div class="item-row">
        <div class="left">
          <div><span class="veg-dot"></span></div>
          <div class="name">Onion Punch</div>
          <div class="price">₹155</div>
          <div class="desc">crispy onion with real mozzarella &amp; cheddar cheese</div>
        </div>
        <div class="right">
          <div class="img-ph">[IMG: Onion Pizza]</div>
          <div class="add-btn">
            ADD
            <svg viewBox="0 0 24 24">
              <path d="M12 5v14M5 12h14" stroke="#2F6B3A" stroke-width="3" stroke-linecap="round"></path>
            </svg>
          </div>
          <div class="customizable">Customizable</div>
        </div>
      </div>
    </div>

    <!-- Section footer -->
    <div class="section-title">SIMPLY VEG</div>
    <div class="section-underline"></div>
  </div>

  <!-- Floating menu button -->
  <div class="floating-menu">
    <svg viewBox="0 0 24 24">
      <path d="M6 2v8M4 10h4M14 3l7 7M14 10l7-7" stroke="#ffffff" stroke-width="2" stroke-linecap="round" fill="none"></path>
    </svg>
    MENU
  </div>

  <!-- Bottom safe area -->
  <div class="bottom-bar">
    <div class="home-indicator"></div>
  </div>

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