| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Mobile UI - Party Wear Formal Shoes</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:#f7f7f7; |
| border-radius:24px; |
| box-shadow:0 10px 30px rgba(0,0,0,0.15); |
| } |
| |
| |
| .status-bar { |
| height:120px; |
| background:linear-gradient(180deg,#a7e6e3,#b8ece8); |
| color:#212121; |
| position:relative; |
| padding:18px 26px 0 26px; |
| box-sizing:border-box; |
| } |
| .status-row { |
| display:flex; align-items:center; justify-content:flex-start; |
| font-size:26px; color:#1b1b1b; opacity:0.8; |
| } |
| .status-row span { margin-right:22px; } |
| .search-area { |
| margin-top:18px; |
| display:flex; align-items:center; |
| } |
| .back-btn { |
| width:72px; height:72px; display:flex; align-items:center; justify-content:center; |
| margin-right:12px; |
| } |
| .pill-search { |
| flex:1; |
| height:96px; |
| background:#fff; border-radius:22px; |
| box-shadow:0 2px 0 rgba(0,0,0,0.06) inset; |
| display:flex; align-items:center; |
| padding:0 24px; box-sizing:border-box; |
| } |
| .pill-search .icon { width:40px; height:40px; margin-right:18px; } |
| .pill-search .text { flex:1; font-size:34px; color:#1c1c1c; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; } |
| .pill-search .camera { |
| width:70px; height:70px; border-radius:16px; background:#e9f6f5; |
| display:flex; align-items:center; justify-content:center; |
| margin-left:18px; |
| } |
| |
| |
| .content { |
| position:absolute; left:0; right:0; top:120px; bottom:140px; |
| padding:26px; |
| overflow-y:auto; |
| box-sizing:border-box; |
| } |
| .product-grid { |
| display:flex; flex-wrap:wrap; gap:26px; |
| } |
| .card { |
| width:calc(50% - 13px); |
| background:#fff; border-radius:16px; |
| box-shadow:0 1px 0 rgba(0,0,0,0.06) inset; |
| padding-bottom:20px; |
| box-sizing:border-box; |
| } |
| .card .img { |
| width:100%; height:470px; |
| background:#E0E0E0; border:1px solid #BDBDBD; |
| border-top-left-radius:16px; border-top-right-radius:16px; |
| display:flex; align-items:center; justify-content:center; |
| color:#757575; font-size:28px; |
| } |
| .card .sub-links { |
| padding:16px 20px 8px 20px; font-size:26px; color:#1a73e8; |
| } |
| .card .sponsored { padding:0 20px; font-size:24px; color:#6b6b6b; display:flex; align-items:center; gap:10px; } |
| .dot { width:18px; height:18px; border-radius:50%; background:#bdbdbd; display:inline-block; } |
| .card .title { padding:10px 20px 0 20px; font-size:32px; font-weight:700; color:#202020; line-height:1.2; } |
| .card .subtitle { padding:6px 20px 0 20px; font-size:28px; color:#333; line-height:1.35; } |
| .rating-row { padding:12px 20px 0 20px; display:flex; align-items:center; gap:14px; font-size:28px; color:#2b7; } |
| .rating-row .score { font-weight:700; color:#1e88e5; } |
| .rating-row .star { color:#ff9800; font-size:28px; } |
| .deal-pill { |
| margin:14px 20px; |
| background:#a1381f; color:#fff; font-weight:700; |
| padding:16px 22px; border-radius:10px; display:inline-block; font-size:28px; |
| } |
| .price-row { padding:8px 20px; font-size:36px; font-weight:800; color:#111; } |
| .mrp { padding:4px 20px; font-size:26px; color:#666; } |
| .save-pill { |
| margin:14px 20px; display:inline-block; |
| background:#58b24a; color:#fff; font-weight:800; font-size:26px; |
| padding:10px 16px; border-radius:10px; |
| } |
| .coupon-note { padding:8px 20px; font-size:26px; color:#333; } |
| .prime-tag { |
| margin:6px 20px; font-size:30px; color:#1e88e5; font-weight:800; |
| display:inline-flex; align-items:center; gap:10px; |
| } |
| .prime-tag .check { |
| width:26px; height:26px; border-radius:50%; background:#4caf50; |
| } |
| .delivery { padding:10px 20px; font-size:26px; color:#6b6b6b; } |
| .stock { padding:8px 20px; font-size:26px; color:#d93025; font-weight:700; } |
| |
| |
| .right-price { padding:18px 20px; font-size:44px; font-weight:800; color:#111; } |
| .right-note { padding:8px 20px; font-size:28px; color:#666; } |
| |
| |
| .img-only { height:520px; } |
| |
| |
| .bottom-nav { |
| position:absolute; left:0; right:0; bottom:0; |
| height:140px; background:#ffffff; border-top:1px solid #ddd; |
| display:flex; align-items:center; justify-content:space-around; |
| } |
| .nav-item { display:flex; flex-direction:column; align-items:center; gap:8px; color:#222; } |
| .nav-label { font-size:26px; } |
| .cart-badge { |
| position:absolute; top:-8px; right:-14px; background:#1e88e5; color:#fff; |
| font-size:22px; padding:4px 10px; border-radius:16px; |
| } |
| |
| |
| svg { display:block; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-row"> |
| <span>11:07</span> |
| <span style="font-size:26px;">📶</span> |
| <span style="font-size:26px;">🔋</span> |
| <span style="font-size:26px;">📳</span> |
| </div> |
| <div class="search-area"> |
| <div class="back-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M15 18l-6-6 6-6" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="pill-search"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7" fill="none" stroke="#555" stroke-width="2"/> |
| <path d="M21 21l-5.5-5.5" stroke="#555" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| <div class="text">party wear formal shoes for men</div> |
| <div class="camera"> |
| <svg width="36" height="36" viewBox="0 0 24 24"> |
| <rect x="4" y="7" width="16" height="12" rx="2" fill="none" stroke="#2b5" stroke-width="2"/> |
| <path d="M9 7l2-3h2l2 3" stroke="#2b5" stroke-width="2" fill="none"/> |
| <circle cx="12" cy="13" r="3" fill="none" stroke="#2b5" stroke-width="2"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="product-grid"> |
| |
| <div class="card"> |
| <div class="img">[IMG: Brown Brogue Formal Shoe]</div> |
| <div class="sub-links">+2 colours/patterns</div> |
| <div class="sponsored"><span>Sponsored</span><span class="dot"></span></div> |
| <div class="title">ALBERTO TORRESI</div> |
| <div class="subtitle">Men's Brogues Formal Shoes: Synthetic with TP...</div> |
| <div class="rating-row"> |
| <span class="score">3.3</span> |
| <span class="star">★</span> |
| <span style="color:#333;">36</span> |
| </div> |
| <div class="deal-pill">Deal of the Day</div> |
| <div class="price-row">₹1,799</div> |
| <div class="mrp">M.R.P: ₹7,999 (78% off)</div> |
| <div class="save-pill">Save 5%</div> |
| <div class="coupon-note">with coupon (limited sizes/colours)</div> |
| <div class="prime-tag"><span class="check"></span>prime</div> |
| <div class="delivery">FREE Delivery by Amazon</div> |
| <div class="stock">Only 3 left in stock.</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img">[IMG: Tan Oxford Formal Shoe]</div> |
| <div class="sub-links">+2 colours/patterns</div> |
| <div class="sponsored"><span>Sponsored</span><span class="dot"></span></div> |
| <div class="title">Hangston</div> |
| <div class="subtitle">Men's Professional & Office Wear Synthetic Leather...</div> |
| <div class="right-price">₹699</div> |
| <div class="right-note">M.R.P: ₹2,499 (72% off)</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img img-only">[IMG: Plain Dark Brown Derby Shoe]</div> |
| </div> |
| <div class="card"> |
| <div class="img img-only">[IMG: Brown Loafer with Textured Vamp]</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M4 11l8-7 8 7v9a1 1 0 0 1-1 1h-5v-6H10v6H5a1 1 0 0 1-1-1z" fill="#2b2b2b"/> |
| </svg> |
| <div class="nav-label">Home</div> |
| </div> |
| <div class="nav-item"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <circle cx="12" cy="7" r="4" fill="#2b2b2b"/> |
| <path d="M4 21c0-4 4-7 8-7s8 3 8 7" fill="none" stroke="#2b2b2b" stroke-width="2"/> |
| </svg> |
| <div class="nav-label">Account</div> |
| </div> |
| <div class="nav-item"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M12 6v-3l-5 5 5 5v-3c4 0 7 3 7 7" fill="none" stroke="#2b2b2b" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| <div class="nav-label">Refresh</div> |
| </div> |
| <div class="nav-item" style="position:relative;"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M6 6h15l-2 9H8L7 4H3" fill="none" stroke="#2b2b2b" stroke-width="2" stroke-linecap="round"/> |
| <circle cx="10" cy="20" r="2" fill="#2b2b2b"/> |
| <circle cx="18" cy="20" r="2" fill="#2b2b2b"/> |
| </svg> |
| <span class="cart-badge">0</span> |
| <div class="nav-label">Cart</div> |
| </div> |
| <div class="nav-item"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M4 6h16M4 12h16M4 18h16" stroke="#2b2b2b" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| <div class="nav-label">Menu</div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |