| <!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 { |
| 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 { |
| 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 { |
| 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); |
| } |
| |
| |
| .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"> |
|
|
| |
| <div class="status-bar"> |
| <div>10:08</div> |
| <div class="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> |
|
|
| |
| <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> |
|
|
| |
| <div class="content"> |
|
|
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <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> |