| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1440, initial-scale=1.0"> |
| <title>More Like This - Tools</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1440px; height: 3120px; |
| position: relative; overflow: hidden; |
| background: #ffffff; |
| font-family: Arial, Helvetica, sans-serif; |
| color: #222; |
| } |
| |
| |
| .status-bar { |
| height: 120px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 48px; |
| font-size: 42px; |
| color: #333; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .dot { width: 14px; height: 14px; background:#9e9e9e; border-radius:50%; display:inline-block; } |
| |
| |
| .header { |
| position: relative; |
| padding: 24px 48px 0 48px; |
| } |
| .back-btn { |
| width: 96px; height: 96px; border-radius: 48px; |
| border: 1px solid #e0e0e0; background: #fff; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .header-actions { |
| position: absolute; right: 48px; top: 0; |
| display: flex; gap: 24px; |
| } |
| .circle-icon { |
| width: 96px; height: 96px; border-radius: 48px; |
| border: 1px solid #e0e0e0; background: #fff; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .icon { width: 48px; height: 48px; } |
| |
| |
| .tabs-wrap { |
| margin: 24px 48px 16px 48px; |
| background: #f1f1f1; |
| border-radius: 40px; |
| padding: 8px; |
| display: flex; |
| gap: 8px; |
| } |
| .tab { |
| flex: 1; |
| text-align: center; |
| padding: 24px 0; |
| border-radius: 32px; |
| font-size: 40px; |
| color: #666; |
| } |
| .tab.active { |
| background: #ffffff; |
| color: #333; |
| box-shadow: 0 2px 8px rgba(0,0,0,0.06); |
| font-weight: bold; |
| } |
| |
| |
| .divider { height: 8px; background: #f3f3f3; } |
| |
| |
| .grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| column-gap: 32px; |
| row-gap: 48px; |
| padding: 32px 48px 0 48px; |
| } |
| .product { |
| border-top: 8px solid #f3f3f3; |
| padding-top: 32px; |
| } |
| .img { |
| width: 100%; height: 620px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 44px; |
| border-radius: 12px; |
| } |
| .badge { |
| display: inline-block; |
| margin-top: 24px; |
| padding: 14px 22px; |
| border-radius: 12px; |
| font-size: 36px; |
| font-weight: bold; |
| } |
| .badge.green { background: #e7f4e7; color: #2e7d32; } |
| .badge.pink { background: #fde7f3; color: #b0006d; } |
| |
| .title { |
| margin-top: 18px; |
| font-size: 42px; |
| line-height: 1.3; |
| color: #333; |
| } |
| .price-row { |
| display: flex; align-items: baseline; gap: 18px; |
| margin-top: 16px; |
| } |
| .price { |
| font-size: 54px; font-weight: 800; color: #000; |
| } |
| .old-price { |
| font-size: 40px; color: #888; text-decoration: line-through; |
| } |
| .off { |
| font-size: 40px; color: #b47c12; font-weight: bold; |
| } |
| |
| |
| .gesture-bar { |
| position: absolute; bottom: 32px; left: 50%; |
| transform: translateX(-50%); |
| width: 420px; height: 16px; background: #000; border-radius: 12px; |
| opacity: 0.8; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>2:27</div> |
| <div class="status-right"> |
| |
| <svg class="icon" viewBox="0 0 24 24" fill="#616161"> |
| <path d="M3 9h18v6H3z"/> |
| </svg> |
| <svg class="icon" viewBox="0 0 24 24" fill="#616161"> |
| <path d="M12 3l10 9H2z"/> |
| </svg> |
| <span class="dot"></span> |
| <svg class="icon" viewBox="0 0 24 24" fill="#616161"> |
| <path d="M4 4h16v14H4z"/><path d="M8 20h8v1H8z"/> |
| </svg> |
| <svg class="icon" viewBox="0 0 24 24" fill="#616161"> |
| <path d="M6 18h12l2-9H4zM6 6h2l1-2h6l1 2h2"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="back-btn"> |
| <svg class="icon" viewBox="0 0 24 24" fill="#555"> |
| <path d="M15 18l-6-6 6-6"/> |
| </svg> |
| </div> |
| <div class="header-actions"> |
| <div class="circle-icon"> |
| <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2"> |
| <circle cx="11" cy="11" r="7"></circle> |
| <path d="M20 20l-4-4"></path> |
| </svg> |
| </div> |
| <div class="circle-icon"> |
| <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2"> |
| <path d="M3 11l9-8 9 8v9H3z"></path> |
| <path d="M9 20v-5h6v5"></path> |
| </svg> |
| </div> |
| <div class="circle-icon"> |
| <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2"> |
| <path d="M6 6h15l-2 10H7L6 6z"></path> |
| <circle cx="9" cy="20" r="1.5"></circle> |
| <circle cx="17" cy="20" r="1.5"></circle> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="tabs-wrap"> |
| <div class="tab">Details</div> |
| <div class="tab active">More Like This</div> |
| <div class="tab">Reviews</div> |
| </div> |
| <div class="divider"></div> |
|
|
| |
| <div class="grid"> |
| |
| <div class="product"> |
| <div class="img">[IMG: 102pc Drill & Tool Kit Case]</div> |
| <div class="badge green">PRICE DROP</div> |
| <div class="title">BD - 102pc drill machine 650W & tool accessories set</div> |
| <div class="price-row"> |
| <div class="price">₹2,973</div> |
| <div class="old-price">₹4,999</div> |
| <div class="off">41% OFF</div> |
| </div> |
| </div> |
|
|
| |
| <div class="product"> |
| <div class="img">[IMG: Orange Ratchet Socket Set Case]</div> |
| <div class="title">Shopper52 - 46 in 1 Pcs Tool Kit & socket set</div> |
| <div class="price-row"> |
| <div class="price">₹547</div> |
| <div class="old-price">₹1,999</div> |
| <div class="off">73% OFF</div> |
| </div> |
| </div> |
|
|
| |
| <div class="product"> |
| <div class="img">[IMG: Black Ratchet Socket Kit Case]</div> |
| <div class="badge green">PRICE DROP</div> |
| <div class="title">BD 46 Pcs Screwdriver Set</div> |
| <div class="price-row"> |
| <div class="price">₹499</div> |
| <div class="old-price">₹1,250</div> |
| <div class="off">60% OFF</div> |
| </div> |
| </div> |
|
|
| |
| <div class="product"> |
| <div class="img">[IMG: Precision Screwdriver Bits with Pouch]</div> |
| <div class="badge pink">TOP RATED</div> |
| <div class="title">HOMETALES 25 in 1 Screwdriver Precision Bits Kit</div> |
| <div class="price-row"> |
| <div class="price">₹299</div> |
| <div class="old-price">₹1,199</div> |
| <div class="off">75% OFF</div> |
| </div> |
| </div> |
|
|
| |
| <div class="product"> |
| <div class="img">[IMG: Cordless Lighted Electric Screwdriver]</div> |
| <div class="title">Rechargeable Electric Screwdriver with Light</div> |
| <div class="price-row"> |
| <div class="price">₹1,799</div> |
| <div class="old-price">₹3,499</div> |
| <div class="off">49% OFF</div> |
| </div> |
| </div> |
|
|
| |
| <div class="product"> |
| <div class="img">[IMG: Red Socket Bit Set Case]</div> |
| <div class="title">Compact Socket Bit Kit 40 Pcs</div> |
| <div class="price-row"> |
| <div class="price">₹699</div> |
| <div class="old-price">₹1,799</div> |
| <div class="off">61% OFF</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |