| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Shopping - Shirts for Men</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; } |
| #render-target { |
| position: relative; |
| overflow: hidden; |
| width: 1080px; |
| height: 2400px; |
| background: #FFFFFF; |
| box-sizing: border-box; |
| } |
| |
| |
| .status-bar { |
| height: 96px; |
| background: #ECECEC; |
| display: flex; |
| align-items: center; |
| padding: 0 32px; |
| color: #4A4A4A; |
| font-size: 34px; |
| box-sizing: border-box; |
| } |
| .status-spacer { flex: 1; } |
| .status-dot { width: 10px; height: 10px; background: #707070; border-radius: 50%; margin: 0 12px; } |
| |
| |
| .topbar { |
| height: 120px; |
| display: flex; |
| align-items: center; |
| padding: 0 28px; |
| box-sizing: border-box; |
| border-bottom: 1px solid #E6E6E6; |
| background: #FFFFFF; |
| } |
| .topbar .title { |
| font-size: 48px; |
| color: #222; |
| margin-left: 20px; |
| flex: 1; |
| } |
| .icon-btn { |
| width: 84px; |
| height: 84px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| border-radius: 42px; |
| } |
| .icon-btn svg { width: 48px; height: 48px; fill: #3A3A3A; } |
| .badge { |
| position: absolute; |
| top: 6px; |
| right: 6px; |
| background: #E53935; |
| color: #fff; |
| font-size: 26px; |
| border-radius: 18px; |
| line-height: 28px; |
| height: 28px; |
| min-width: 28px; |
| padding: 0 8px; |
| text-align: center; |
| } |
| |
| |
| .sort-filter { |
| height: 120px; |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| border-bottom: 1px solid #E9E9E9; |
| background: #FFFFFF; |
| } |
| .sf-item { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| gap: 18px; |
| font-size: 38px; |
| color: #333; |
| position: relative; |
| } |
| .sf-item svg { width: 44px; height: 44px; fill: #4A4A4A; } |
| .sf-divider { |
| position: absolute; |
| right: 0; |
| top: 24px; |
| bottom: 24px; |
| width: 1px; |
| background: #EEEEEE; |
| } |
| .sf-dot { |
| position: absolute; |
| top: 18px; |
| left: 620px; |
| width: 26px; |
| height: 26px; |
| background: #E53935; |
| border-radius: 50%; |
| color: #fff; |
| font-size: 22px; |
| line-height: 26px; |
| text-align: center; |
| } |
| |
| |
| .banner { |
| margin: 20px 24px; |
| height: 220px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 24px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 40px; |
| } |
| |
| |
| .grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 24px; |
| padding: 0 24px 24px; |
| box-sizing: border-box; |
| } |
| .card { |
| background: #FFFFFF; |
| border: 1px solid #EEEEEE; |
| border-radius: 24px; |
| padding: 14px; |
| box-sizing: border-box; |
| position: relative; |
| } |
| .ad-pill { |
| position: absolute; |
| top: 18px; |
| left: 18px; |
| background: #F3F3F3; |
| color: #707070; |
| font-size: 28px; |
| padding: 6px 12px; |
| border-radius: 12px; |
| } |
| .wish-btn { |
| position: absolute; |
| top: 18px; |
| right: 18px; |
| width: 72px; |
| height: 72px; |
| border-radius: 36px; |
| background: #FFFFFF; |
| border: 1px solid #E6E6E6; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .wish-btn svg { width: 40px; height: 40px; fill: none; stroke: #6C6C6C; stroke-width: 2px; } |
| |
| .img-placeholder { |
| width: 100%; |
| height: 540px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 18px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 34px; |
| } |
| .brand { |
| font-size: 42px; |
| color: #1F1F1F; |
| margin: 18px 8px 6px; |
| } |
| .desc { |
| font-size: 34px; |
| color: #6E6E6E; |
| margin: 0 8px 12px; |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| } |
| .price-row { |
| display: flex; |
| align-items: baseline; |
| gap: 14px; |
| margin: 0 8px 12px; |
| font-size: 38px; |
| } |
| .strike { |
| color: #9E9E9E; |
| text-decoration: line-through; |
| } |
| .sale { color: #222; font-weight: 600; } |
| .off { color: #2E7D32; font-weight: 600; } |
| |
| .pill-blue { |
| display: inline-flex; |
| align-items: center; |
| gap: 12px; |
| background: #EAF0FF; |
| color: #2F5BD2; |
| padding: 12px 16px; |
| border-radius: 14px; |
| font-size: 32px; |
| margin: 0 8px 12px; |
| } |
| .pill-blue svg { width: 32px; height: 32px; fill: #2F5BD2; } |
| |
| .rating-row { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| margin: 0 8px 12px; |
| } |
| .stars { |
| color: #2E7D32; |
| font-size: 38px; |
| letter-spacing: 6px; |
| } |
| .rating-count { |
| font-size: 32px; |
| color: #7A7A7A; |
| } |
| |
| .hot-deal { |
| display: inline-block; |
| font-size: 32px; |
| color: #2E7D32; |
| background: #E8F5E9; |
| padding: 10px 16px; |
| border-radius: 12px; |
| margin: 0 8px 14px; |
| } |
| |
| .coupon { |
| display: flex; |
| align-items: center; |
| background: #EAF7E5; |
| border-radius: 12px; |
| margin: 0 8px 16px; |
| overflow: hidden; |
| } |
| .coupon .amount { |
| background: #DFF3D6; |
| color: #2E7D32; |
| font-weight: 600; |
| padding: 14px 18px; |
| font-size: 34px; |
| } |
| .coupon .divider { |
| width: 2px; |
| height: 100%; |
| border-left: 2px dashed #BBD9B3; |
| } |
| .coupon .label { |
| flex: 1; |
| padding: 14px 18px; |
| font-size: 34px; |
| color: #2E7D32; |
| } |
| |
| |
| .bottom-nav { |
| position: absolute; |
| left: 0; |
| right: 0; |
| bottom: 120px; |
| height: 160px; |
| background: #FFFFFF; |
| border-top: 1px solid #E6E6E6; |
| display: grid; |
| grid-template-columns: repeat(5, 1fr); |
| align-items: center; |
| text-align: center; |
| } |
| .nav-item { |
| position: relative; |
| } |
| .nav-item svg { width: 48px; height: 48px; fill: #6A6A6A; } |
| .nav-item .label { |
| font-size: 30px; |
| color: #6A6A6A; |
| margin-top: 8px; |
| } |
| .nav-item.active svg { fill: #3D5AFE; } |
| .nav-item.active .label { color: #3D5AFE; } |
| .nav-dot { |
| position: absolute; |
| top: 24px; |
| right: 130px; |
| width: 18px; |
| height: 18px; |
| background: #E53935; |
| border-radius: 50%; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 32px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 360px; |
| height: 16px; |
| background: #000; |
| border-radius: 8px; |
| opacity: 0.7; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div>11:29</div> |
| <div class="status-spacer"></div> |
| <div style="display:flex; align-items:center; gap:18px;"> |
| <div style="background:#9E9E9E; color:#fff; border-radius:8px; padding:6px 10px; font-size:28px;">B</div> |
| <div style="font-size:28px; color:#707070;">TEMU</div> |
| <div class="status-dot"></div> |
| <svg viewBox="0 0 24 24" style="width:34px;height:34px; fill:#707070;"><path d="M12 4a8 8 0 0 0-8 8h2a6 6 0 0 1 12 0h2a8 8 0 0 0-8-8zm-6 12v-2h12v2H6zm3 4v-2h6v2H9z"/></svg> |
| <svg viewBox="0 0 24 24" style="width:34px;height:34px; fill:#707070;"><path d="M12 4a8 8 0 0 0-8 8h16a8 8 0 0 0-8-8zm-6 10v2h12v-2H6zm3 4v2h6v-2H9z"/></svg> |
| </div> |
| </div> |
|
|
| |
| <div class="topbar"> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"><path d="M15.5 19l-7-7 7-7" stroke="#3A3A3A" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg> |
| </div> |
| <div class="title">shirts for men</div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 1 0 4.9 14.3l5 5 1.4-1.4-5-5A8 8 0 0 0 10 2zm0 2a6 6 0 1 1 0 12 6 6 0 0 1 0-12z"/></svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"><path d="M12 2a4 4 0 0 1 4 4v3a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4zm-2 14h4v6h-4v-6z"/></svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 6 3.99 4 6.5 4c1.74 0 3.41.81 4.5 2.09C12.09 4.81 13.76 4 15.5 4 18.01 4 20 6 20 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" fill="#6A6A6A"/></svg> |
| </div> |
| <div class="icon-btn" style="position:relative;"> |
| <svg viewBox="0 0 24 24"><path d="M7 18c-1.1 0-2-.9-2-2V7H3V5h3l1-2h8l1 2h3v2h-2v9c0 1.1-.9 2-2 2H7zm0-11v9h10V7H7z"/></svg> |
| <div class="badge">1</div> |
| </div> |
| </div> |
|
|
| |
| <div class="sort-filter"> |
| <div class="sf-item"> |
| <svg viewBox="0 0 24 24"><path d="M6 4l4 4H7v12H5V8H2l4-4zm12 16l-4-4h3V4h2v12h3l-4 4z"/></svg> |
| <div>Sort</div> |
| <div class="sf-divider"></div> |
| </div> |
| <div class="sf-item"> |
| <svg viewBox="0 0 24 24"><path d="M6 5h12v2H6V5zm-2 6h10v2H4v-2zm4 6h8v2H8v-2z"/></svg> |
| <div>Filter</div> |
| <div class="badge" style="top:16px; right:200px; height:28px; line-height:28px; font-size:24px; min-width:28px; border-radius:14px;">1</div> |
| </div> |
| </div> |
|
|
| |
| <div class="banner">[IMG: Promotional Banner]</div> |
|
|
| |
| <div class="grid"> |
| |
| <div class="card"> |
| <div class="ad-pill">Ad</div> |
| <div class="wish-btn"> |
| <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-9.33-8.1C1.47 10.5 2.5 7.5 5.5 7.5c2 0 3.38 1.15 4.5 2.6 1.12-1.45 2.5-2.6 4.5-2.6 3 0 4.03 3 2.83 5.4C19 16.65 12 21 12 21z"/></svg> |
| </div> |
| <div class="img-placeholder">[IMG: Model wearing printed shirt]</div> |
| <div class="brand">Allen Solly</div> |
| <div class="desc">Men Regular Fit Solid Casual Shirt</div> |
| <div class="price-row"> |
| <span class="strike">1,999</span> |
| <span class="sale">₹1,299</span> |
| <span class="off">35% off</span> |
| </div> |
| <div class="pill-blue"> |
| <svg viewBox="0 0 24 24"><path d="M3 12h13l3-4v10h-3l-3 4H3V12z"/></svg> |
| Free Delivery |
| </div> |
| <div class="rating-row"> |
| <div class="stars">★ ★ ★ ★ ☆</div> |
| <div class="rating-count">(45)</div> |
| </div> |
| <div class="hot-deal">Hot Deal</div> |
| <div class="coupon"> |
| <div class="amount">₹35</div> |
| <div class="divider"></div> |
| <div class="label">Coupon available</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="ad-pill">Ad</div> |
| <div class="wish-btn"> |
| <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-9.33-8.1C1.47 10.5 2.5 7.5 5.5 7.5c2 0 3.38 1.15 4.5 2.6 1.12-1.45 2.5-2.6 4.5-2.6 3 0 4.03 3 2.83 5.4C19 16.65 12 21 12 21z"/></svg> |
| </div> |
| <div class="img-placeholder">[IMG: Model wearing blue checked shirt]</div> |
| <div class="brand">Allen Solly</div> |
| <div class="desc">Men Regular Fit Solid Casual Shirt</div> |
| <div class="price-row"> |
| <span class="strike">1,899</span> |
| <span class="sale">₹1,234</span> |
| <span class="off">35% off</span> |
| </div> |
| <div class="pill-blue"> |
| <svg viewBox="0 0 24 24"><path d="M3 12h13l3-4v10h-3l-3 4H3V12z"/></svg> |
| Free Delivery |
| </div> |
| <div class="rating-row"> |
| <div class="stars">★ ★ ★ ★ ☆</div> |
| <div class="rating-count">(28)</div> |
| </div> |
| <div class="hot-deal">Hot Deal</div> |
| <div class="coupon"> |
| <div class="amount">₹35</div> |
| <div class="divider"></div> |
| <div class="label">Coupon available</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="wish-btn"> |
| <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-9.33-8.1C1.47 10.5 2.5 7.5 5.5 7.5c2 0 3.38 1.15 4.5 2.6 1.12-1.45 2.5-2.6 4.5-2.6 3 0 4.03 3 2.83 5.4C19 16.65 12 21 12 21z"/></svg> |
| </div> |
| <div class="img-placeholder">[IMG: Model wearing pink shirt]</div> |
| </div> |
|
|
| <div class="card"> |
| <div class="wish-btn"> |
| <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-9.33-8.1C1.47 10.5 2.5 7.5 5.5 7.5c2 0 3.38 1.15 4.5 2.6 1.12-1.45 2.5-2.6 4.5-2.6 3 0 4.03 3 2.83 5.4C19 16.65 12 21 12 21z"/></svg> |
| </div> |
| <div class="img-placeholder">[IMG: Model wearing dark green shirt]</div> |
| </div> |
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item"> |
| <svg viewBox="0 0 24 24"><path d="M12 3l9 8h-3v9h-5v-6H11v6H6v-9H3l9-8z"/></svg> |
| <div class="label">Home</div> |
| </div> |
| <div class="nav-item active"> |
| <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 1 0 4.9 14.3l5 5 1.4-1.4-5-5A8 8 0 0 0 10 2zm0 2a6 6 0 1 1 0 12 6 6 0 0 1 0-12z"/></svg> |
| <div class="label">Search</div> |
| </div> |
| <div class="nav-item"> |
| <div class="nav-dot"></div> |
| <svg viewBox="0 0 24 24"><path d="M3 4h8v6H3V4zm0 10h8v6H3v-6zm10-10h8v8h-8V4zm0 10h8v6h-8v-6z"/></svg> |
| <div class="label">Categories</div> |
| </div> |
| <div class="nav-item"> |
| <svg viewBox="0 0 24 24"><path d="M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zm0 2c-4.42 0-8 2.24-8 5v3h16v-3c0-2.76-3.58-5-8-5z"/></svg> |
| <div class="label">Account</div> |
| </div> |
| <div class="nav-item" style="position:relative;"> |
| <svg viewBox="0 0 24 24"><path d="M7 18c-1.1 0-2-.9-2-2V7H3V5h3l1-2h8l1 2h3v2h-2v9c0 1.1-.9 2-2 2H7zm0-11v9h10V7H7z"/></svg> |
| <div class="label">Cart</div> |
| <div class="badge" style="top:22px; right:160px; height:26px; line-height:26px; font-size:22px; min-width:26px; border-radius:13px;">1</div> |
| </div> |
| </div> |
|
|
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |