| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Nike Bag - Mock</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: #ffffff; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #000000; |
| color: #ffffff; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| box-sizing: border-box; |
| font-size: 44px; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| font-size: 36px; |
| } |
| .icon-circle { |
| width: 36px; |
| height: 36px; |
| border: 3px solid #fff; |
| border-radius: 50%; |
| opacity: 0.85; |
| } |
| .battery { |
| display: inline-flex; |
| align-items: center; |
| gap: 12px; |
| } |
| |
| |
| .header { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 1080px; |
| height: 140px; |
| background: #ffffff; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| box-sizing: border-box; |
| border-bottom: 1px solid #eee; |
| } |
| .back-btn { |
| width: 72px; |
| height: 72px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| margin-right: 20px; |
| } |
| .header-title { |
| font-size: 56px; |
| font-weight: 700; |
| color: #111; |
| } |
| |
| |
| .content { |
| position: absolute; |
| top: 260px; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| padding: 0 36px 240px 36px; |
| box-sizing: border-box; |
| overflow: hidden; |
| } |
| |
| .item { |
| position: relative; |
| padding-top: 24px; |
| padding-bottom: 24px; |
| border-bottom: 1px solid #e9e9e9; |
| } |
| .item-row { |
| display: flex; |
| gap: 36px; |
| } |
| .thumb { |
| width: 420px; |
| height: 360px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 34px; |
| text-align: center; |
| } |
| .details { |
| flex: 1; |
| padding-top: 6px; |
| } |
| .title { |
| font-size: 48px; |
| font-weight: 700; |
| color: #111; |
| margin-bottom: 16px; |
| } |
| .sub { |
| font-size: 38px; |
| color: #666; |
| margin-bottom: 10px; |
| line-height: 1.35; |
| } |
| .qty-price { |
| margin-top: 18px; |
| display: flex; |
| align-items: flex-start; |
| justify-content: space-between; |
| } |
| .qty { |
| font-size: 42px; |
| color: #111; |
| display: inline-flex; |
| align-items: center; |
| gap: 14px; |
| } |
| .chev { |
| width: 26px; |
| height: 26px; |
| } |
| .price-block { |
| text-align: right; |
| } |
| .mrp { |
| font-size: 44px; |
| font-weight: 800; |
| color: #111; |
| } |
| .tax { |
| margin-top: 12px; |
| font-size: 34px; |
| color: #777; |
| line-height: 1.3; |
| } |
| |
| |
| .summary { |
| padding-top: 36px; |
| padding-bottom: 24px; |
| } |
| .sum-row { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-size: 44px; |
| color: #333; |
| margin: 20px 0; |
| } |
| .sum-row .amount { |
| color: #333; |
| } |
| .est { |
| font-weight: 800; |
| font-size: 48px; |
| } |
| |
| |
| .checkout { |
| position: absolute; |
| bottom: 180px; |
| left: 60px; |
| width: 960px; |
| height: 180px; |
| background: #111111; |
| border-radius: 90px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #ffffff; |
| font-size: 56px; |
| font-weight: 700; |
| box-shadow: 0 6px 18px rgba(0,0,0,0.2); |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 70px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 520px; |
| height: 16px; |
| background: #CFCFCF; |
| border-radius: 8px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>9:41</div> |
| <div class="status-right"> |
| <div class="icon-circle"></div> |
| <div class="icon-circle"></div> |
| <div class="battery"> |
| <span>51%</span> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="back-btn"> |
| <svg width="58" height="58" viewBox="0 0 24 24"> |
| <path d="M15 19L8 12l7-7" stroke="#111" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="header-title">Bag</div> |
| </div> |
|
|
| |
| <div class="content"> |
| |
| <div class="item"> |
| <div class="item-row"> |
| <div class="thumb">[IMG: Black Nike Air Max 97]</div> |
| <div class="details"> |
| <div class="title">Nike Air Max 97</div> |
| <div class="sub">Men's Shoes</div> |
| <div class="sub">Black/Anthracite/Picante Red</div> |
| <div class="sub">Size 7</div> |
|
|
| <div class="qty-price"> |
| <div class="qty"> |
| <span>Qty 2</span> |
| <svg class="chev" viewBox="0 0 24 24"> |
| <path d="M6 9l6 6 6-6" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="price-block"> |
| <div class="mrp">MRP : ₹ 33 990.00</div> |
| <div class="tax">Incl. of taxes<br>(Also includes all applicable duties)</div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="item-row"> |
| <div class="thumb">[IMG: Nike Air Max 95 - Custom]</div> |
| <div class="details"> |
| <div class="title">Nike Air Max 95 By You</div> |
| <div class="sub">Custom Men's Shoe</div> |
| <div class="sub">Multi-Colour/Multi-Colour/Multi-Colour</div> |
| <div class="sub">Size 10</div> |
|
|
| <div class="qty-price"> |
| <div class="qty"> |
| <span>Qty 1</span> |
| <svg class="chev" viewBox="0 0 24 24"> |
| <path d="M6 9l6 6 6-6" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="price-block"> |
| <div class="mrp">MRP : ₹ 18 195.00</div> |
| <div class="tax">Incl. of taxes<br>(Also includes all applicable duties)</div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="summary"> |
| <div class="sum-row"> |
| <div>Subtotal</div> |
| <div class="amount">₹ 52 185.00</div> |
| </div> |
| <div class="sum-row"> |
| <div>Shipping</div> |
| <div class="amount">₹ 1 250.00</div> |
| </div> |
| <div class="sum-row est"> |
| <div>Estimated Total</div> |
| <div>₹ 53 435.00</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="checkout">Checkout</div> |
|
|
| |
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |