File size: 9,347 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Product List UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: #222; }
  #render-target {
    width: 1080px; height: 2400px; position: relative; overflow: hidden;
    background: #F4F6F5;
    border-radius: 0;
    box-shadow: none;
  }

  /* Status bar */
  .status-bar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 140px; background: #1E1E1E; color: #FFF;
    display: flex; align-items: center; padding: 0 36px; font-weight: 600;
    letter-spacing: 0.5px; font-size: 34px;
  }
  .status-icons { margin-left: 24px; display: flex; gap: 24px; align-items: center; }
  .status-icons svg { width: 38px; height: 38px; fill: #FFF; opacity: 0.9; }

  /* Top strip with line and floating actions */
  .top-strip {
    position: absolute; top: 140px; left: 0; right: 0; height: 140px; background: #FFFFFF;
    box-shadow: 0 2px 0 rgba(0,0,0,0.06) inset;
  }
  .green-line {
    position: absolute; left: 72px; right: 72px; top: 16px; height: 10px; background: #2F8D3B; border-radius: 8px;
  }
  .fab {
    position: absolute; width: 110px; height: 110px; border-radius: 55px; background: rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: center;
  }
  .fab svg { width: 52px; height: 52px; stroke: #666; fill: none; stroke-width: 4; }
  .fab.back { left: 36px; top: 84px; }
  .fab.like { right: 190px; top: 60px; }
  .fab.whatsapp { right: 56px; top: 60px; }
  .fab.whatsapp svg { stroke-width: 3; }

  /* Content list */
  .content {
    position: absolute; top: 280px; left: 0; right: 0; bottom: 120px;
    padding: 24px 32px 140px 32px; overflow: hidden;
  }
  .card {
    background: #FFF; border-radius: 32px; padding: 32px; margin: 24px 0;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  }
  .card-inner {
    display: grid; grid-template-columns: 1fr 360px; grid-column-gap: 28px; align-items: start;
  }
  .title {
    font-size: 44px; font-weight: 700; color: #333; line-height: 1.15; margin: 0 0 12px 0;
  }
  .title .info {
    display: inline-block; width: 34px; height: 34px; border-radius: 17px; border: 2px solid #B0B0B0;
    color: #777; font-size: 24px; line-height: 30px; text-align: center; margin-left: 10px;
  }
  .price {
    color: #2F8D3B; font-size: 48px; font-weight: 800; margin: 8px 0;
  }
  .subline { color: #777; font-size: 32px; margin-bottom: 18px; }

  .row {
    display: flex; align-items: center; gap: 16px; color: #6D6D6D; font-size: 30px; margin: 10px 0 24px 0;
  }
  .row svg { width: 42px; height: 42px; stroke: #6D6D6D; fill: none; stroke-width: 3.5; }

  .chips { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
  .chip {
    font-size: 28px; color: #666; padding: 16px 22px; border-radius: 24px; border: 2px dashed #D1D1D1; background: #FAFAFA;
  }

  .image {
    width: 360px; height: 240px; background: #E0E0E0; border: 1px solid #BDBDBD;
    border-radius: 24px; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 30px; text-align: center;
  }
  .actions { display: flex; justify-content: flex-end; margin-top: 22px; }
  .add-btn {
    background: #2F8D3B; color: #FFF; border: none; border-radius: 16px; padding: 22px 60px; font-size: 34px; font-weight: 700; letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(47,141,59,0.25);
  }

  /* Bottom home indicator */
  .home-indicator {
    position: absolute; left: 350px; right: 350px; bottom: 32px; height: 20px; background: #111; border-radius: 12px; opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>10:08</div>
    <div class="status-icons">
      <!-- Simple status icons -->
      <svg viewBox="0 0 24 24"><circle cx="3" cy="12" r="2"></circle><circle cx="10" cy="12" r="2"></circle><circle cx="17" cy="12" r="2"></circle></svg>
      <svg viewBox="0 0 24 24"><rect x="2" y="4" width="20" height="14" rx="2" fill="#FFF"></rect><rect x="5" y="7" width="14" height="8" fill="#1E1E1E"></rect></svg>
      <svg viewBox="0 0 24 24"><path d="M3 17h18M3 12h18M3 7h18" stroke="#FFF" stroke-width="2" fill="none"></path></svg>
      <svg viewBox="0 0 24 24"><path d="M19 7v10M5 7v10M8 5h8M8 19h8" stroke="#FFF" stroke-width="2"></path></svg>
      <svg viewBox="0 0 24 24"><path d="M20 8c0 5.5-4 9-8 9S4 13.5 4 8" stroke="#FFF" stroke-width="2" fill="none"></path></svg>
      <svg viewBox="0 0 24 24"><rect x="17" y="4" width="2" height="16" fill="#FFF"></rect><path d="M18 6h3M18 18h3" stroke="#FFF" stroke-width="2"></path></svg>
    </div>
  </div>

  <!-- Top strip -->
  <div class="top-strip">
    <div class="green-line"></div>

    <div class="fab back">
      <svg viewBox="0 0 24 24">
        <path d="M15 6l-6 6 6 6" stroke="#666" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="fab like">
      <svg viewBox="0 0 24 24">
        <path d="M12 21s-6-4.35-8.5-7A5 5 0 0112 6a5 5 0 018.5 8c-2.5 2.65-8.5 7-8.5 7z" />
      </svg>
    </div>
    <div class="fab whatsapp">
      <svg viewBox="0 0 24 24">
        <path d="M12 3a8 8 0 00-7.4 10.9L4 21l6.2-1.7A8 8 0 1012 3z" />
        <path d="M8.8 9.6c.4 2 2.2 3.6 4.2 4.2M9 8c-.2.5-.2 1 .2 1.6M15.2 13.2c.6.3 1 .2 1.6-.1" stroke="#666" />
      </svg>
    </div>
  </div>

  <!-- Content -->
  <div class="content">

    <!-- Card 1 -->
    <div class="card">
      <div class="card-inner">
        <div>
          <h2 class="title">Whole Uncut (Skinless) <span class="info">i</span></h2>
          <div class="price">₹366.30</div>
          <div class="subline">1.1kg</div>
          <div class="row">
            <svg viewBox="0 0 24 24">
              <circle cx="6" cy="18" r="3"></circle>
              <circle cx="18" cy="18" r="3"></circle>
              <path d="M6 15h6l2-4h4" stroke-linecap="round"></path>
            </svg>
            <span>Today 150 Minutes</span>
          </div>
        </div>
        <div>
          <div class="image">[IMG: Whole chicken on tray]</div>
          <div class="actions"><button class="add-btn">ADD</button></div>
        </div>
      </div>
    </div>

    <!-- Card 2 -->
    <div class="card">
      <div class="card-inner">
        <div>
          <h2 class="title">Curry Cut (Skinless) (450g Pack) <span class="info">i</span></h2>
          <div class="price">₹149</div>
          <div class="subline">1 pack</div>
          <div class="row">
            <svg viewBox="0 0 24 24">
              <circle cx="6" cy="18" r="3"></circle>
              <circle cx="18" cy="18" r="3"></circle>
              <path d="M6 15h6l2-4h4" stroke-linecap="round"></path>
            </svg>
            <span>Today 150 Minutes</span>
          </div>
          <div class="chips">
            <div class="chip">Medium Size Cut</div>
            <div class="chip">Net Weight: 440–450g</div>
            <div class="chip">No. of Pieces: 9–12 per Pack</div>
            <div class="chip">Skinless</div>
          </div>
        </div>
        <div>
          <div class="image">[IMG: Curry cut chicken pieces]</div>
          <div class="actions"><button class="add-btn">ADD</button></div>
        </div>
      </div>
    </div>

    <!-- Card 3 -->
    <div class="card">
      <div class="card-inner">
        <div>
          <h2 class="title">Curry Cut Small Pieces (450g Pack) <span class="info">i</span></h2>
          <div class="price">₹149</div>
          <div class="subline">1 pack</div>
          <div class="row">
            <svg viewBox="0 0 24 24">
              <circle cx="6" cy="18" r="3"></circle>
              <circle cx="18" cy="18" r="3"></circle>
              <path d="M6 15h6l2-4h4" stroke-linecap="round"></path>
            </svg>
            <span>Today 150 Minutes</span>
          </div>
          <div class="chips">
            <div class="chip">Net Weight: 440–450g</div>
            <div class="chip">No. of Pieces: 12–14</div>
            <div class="chip">Skinless</div>
            <div class="chip">Cut: Small Pcs</div>
          </div>
        </div>
        <div>
          <div class="image">[IMG: Small curry cut chicken pieces]</div>
          <div class="actions"><button class="add-btn">ADD</button></div>
        </div>
      </div>
    </div>

    <!-- Card 4 -->
    <div class="card">
      <div class="card-inner">
        <div>
          <h2 class="title">Biryani Cut (450g Pack) <span class="info">i</span></h2>
          <div class="price">₹149</div>
          <div class="subline">1 pack</div>
          <div class="row">
            <svg viewBox="0 0 24 24">
              <circle cx="6" cy="18" r="3"></circle>
              <circle cx="18" cy="18" r="3"></circle>
              <path d="M6 15h6l2-4h4" stroke-linecap="round"></path>
            </svg>
            <span>Today 150 Minutes</span>
          </div>
        </div>
        <div>
          <div class="image">[IMG: Biryani cut chicken in bowl]</div>
          <div class="actions"><button class="add-btn">ADD</button></div>
        </div>
      </div>
    </div>

  </div>

  <div class="home-indicator"></div>
</div>
</body>
</html>