File size: 8,245 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Pizza Menu</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #333; }
  #render-target { width: 1080px; height: 2400px; position: relative; overflow: hidden; background: #ffffff; }

  .content { padding: 40px 48px; }

  /* Top status bar (mock) */
  .statusbar { height: 72px; display: flex; align-items: center; justify-content: space-between; color: #666; font-size: 28px; }
  .status-icons { display: flex; gap: 18px; align-items: center; }

  /* Header */
  .header { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; }
  .hdr-left { display: flex; align-items: center; gap: 24px; }
  .title { font-size: 58px; font-weight: 700; letter-spacing: 0.2px; }
  .icon-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 32px; }
  .icon { width: 40px; height: 40px; }
  .search-wrap { margin-right: 8px; }

  /* Top featured item area */
  .featured { margin-top: 30px; display: grid; grid-template-columns: 1fr 420px; gap: 24px; align-items: start; }
  .price { font-size: 44px; font-weight: 700; margin-bottom: 22px; }
  .muted { color: #777; font-size: 32px; line-height: 1.45; }
  .feat-right { display: flex; flex-direction: column; align-items: flex-end; }
  .img-circle { width: 360px; height: 360px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 30px; text-align: center; }
  .add-btn { margin-top: 18px; width: 360px; height: 100px; background: #eaf3e6; border: 2px solid #9fb49b; border-radius: 22px; color: #2e7d32; font-weight: 700; font-size: 42px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 0 rgba(0,0,0,0.08); }
  .customizable { font-size: 28px; color: #666; margin-top: 10px; }

  /* Section heading */
  .section-title { margin-top: 40px; font-size: 46px; font-weight: 800; letter-spacing: 1px; }
  .underline { width: 220px; height: 8px; background: #386e3a; border-radius: 4px; margin-top: 18px; }

  /* List items */
  .item { margin-top: 50px; padding-top: 18px; }
  .row { display: flex; align-items: center; gap: 18px; }
  .veg-icon { width: 40px; height: 40px; border: 3px solid #2f8b3a; border-radius: 10px; }
  .pill { background: #ff6f61; color: #fff; font-size: 28px; padding: 8px 18px; border-radius: 20px; font-weight: 700; }
  .item-layout { display: grid; grid-template-columns: 1fr 440px; gap: 28px; align-items: start; }
  .item-title { font-size: 44px; font-weight: 800; line-height: 1.2; margin-top: 16px; }
  .item-price { font-size: 40px; font-weight: 800; margin-top: 10px; }
  .badge-row { display: flex; align-items: center; gap: 14px; margin-top: 14px; color: #666; font-size: 30px; }
  .jain-badge { width: 40px; height: 40px; border-radius: 20px; background: #ffc74f; display: flex; align-items: center; justify-content: center; color: #222; font-weight: 800; }
  .item-desc { margin-top: 12px; color: #666; font-size: 32px; line-height: 1.5; }
  .right-col { display: flex; flex-direction: column; align-items: flex-end; }
  .divider { margin: 36px 0 12px; height: 2px; background: #eee; }

  /* Floating MENU button */
  .menu-fab { position: absolute; bottom: 260px; left: 430px; background: #000; color: #fff; padding: 22px 34px; border-radius: 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.25); font-size: 34px; font-weight: 700; }
  .menu-icon { width: 40px; height: 40px; }

  /* Bottom gesture bar */
  .gesture-bar { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 300px; height: 10px; background: #ddd; border-radius: 6px; }
</style>
</head>
<body>
<div id="render-target">
  <div class="content">
    <!-- Status bar mock -->
    <div class="statusbar">
      <div>2:03</div>
      <div class="status-icons">
        <span></span>
        <span></span>
        <span></span>
      </div>
    </div>

    <!-- Header -->
    <div class="header">
      <div class="hdr-left">
        <div class="icon-btn">
          <svg class="icon" viewBox="0 0 24 24">
            <path d="M14 6l-6 6 6 6" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
          </svg>
        </div>
        <div class="title">Pizza</div>
      </div>
      <div class="search-wrap icon-btn">
        <svg class="icon" viewBox="0 0 24 24">
          <circle cx="10" cy="10" r="6" fill="none" stroke="#333" stroke-width="2"/>
          <path d="M15 15l5 5" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
      </div>
    </div>

    <!-- Featured brief with image and Add -->
    <div class="featured">
      <div>
        <div class="price">₹155</div>
        <div class="muted">crispy onion with real mozzarella & cheddar cheese</div>
      </div>
      <div class="feat-right">
        <div class="img-circle">[IMG: Pizza]</div>
        <div class="add-btn">ADD +</div>
        <div class="customizable">Customizable</div>
      </div>
    </div>

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

    <!-- Item 1 -->
    <div class="item">
      <div class="row">
        <div class="veg-icon"></div>
        <div class="pill">Bestseller</div>
      </div>
      <div class="item-layout">
        <div>
          <div class="item-title">Double Cheese Margheritra Pizza</div>
          <div class="item-price">₹175</div>
          <div class="badge-row">
            <div class="jain-badge">J</div>
            <div>Jain Available</div>
          </div>
          <div class="item-desc">Extra Loaded 100% Real Mozzarella Cheese Over A Zesty Tomato Gravy</div>
        </div>
        <div class="right-col">
          <div class="img-circle" style="width: 300px; height: 300px;">[IMG: Pizza]</div>
          <div class="add-btn" style="width: 300px; height: 94px;">ADD +</div>
          <div class="customizable">Customizable</div>
        </div>
      </div>
      <div class="divider"></div>
    </div>

    <!-- Item 2 -->
    <div class="item">
      <div class="row">
        <div class="veg-icon"></div>
      </div>
      <div class="item-layout">
        <div>
          <div class="item-title">Fresh Delight Pizza</div>
          <div class="item-price">₹175</div>
          <div class="item-desc">Loaded With Crips Green Peppers, Fresh Cut Onion, Juicy Tomatoes With 100% Mozzarella And Cheddar Cheese</div>
        </div>
        <div class="right-col">
          <div class="img-circle" style="width: 300px; height: 300px;">[IMG: Pizza]</div>
          <div class="add-btn" style="width: 300px; height: 94px;">ADD +</div>
          <div class="customizable">Customizable</div>
        </div>
      </div>
      <div class="divider"></div>
    </div>

    <!-- Item 3 -->
    <div class="item">
      <div class="row">
        <div class="veg-icon"></div>
      </div>
      <div class="item-layout">
        <div>
          <div class="item-title">Indian Bite Pizza</div>
          <div class="item-price">₹175</div>
          <div class="item-desc">Fresh Juice Sweet Corn, Onion, Mushroom With 100% Real Mozzarella And Cheddar Cheese</div>
        </div>
        <div class="right-col">
          <div class="img-circle" style="width: 300px; height: 300px;">[IMG: Pizza]</div>
          <div class="add-btn" style="width: 300px; height: 94px;">ADD +</div>
          <div class="customizable">Customizable</div>
        </div>
      </div>
    </div>
  </div>

  <!-- Floating MENU button -->
  <div class="menu-fab">
    <svg class="menu-icon" viewBox="0 0 24 24">
      <path d="M4 4l6 6M10 4L4 10" stroke="#fff" stroke-width="2" stroke-linecap="round" fill="none"/>
      <path d="M16 4v10M20 4v10" stroke="#fff" stroke-width="2" stroke-linecap="round" fill="none"/>
    </svg>
    <span>MENU</span>
  </div>

  <!-- Gesture bar -->
  <div class="gesture-bar"></div>
</div>
</body>
</html>