| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>UI Reconstruction</title> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color:#222; } |
| #render-target { |
| width:1080px; height:2400px; position:relative; overflow:hidden; |
| background:#ffffff; border-radius:0; box-shadow:none; |
| } |
| |
| |
| .header { |
| position:absolute; top:0; left:0; width:100%; height:280px; background:#0A78A6; |
| color:#fff; |
| } |
| .status-bar { |
| height:80px; display:flex; align-items:center; padding:0 32px; font-size:28px; opacity:0.9; justify-content:space-between; |
| } |
| .search-row { |
| display:flex; align-items:center; padding:0 32px; margin-top:16px; gap:24px; |
| } |
| .icon-btn { width:56px; height:56px; display:flex; align-items:center; justify-content:center; } |
| .search-box { |
| flex:1; height:96px; background:#fff; border-radius:48px; display:flex; align-items:center; padding:0 28px; color:#7a7a7a; font-size:34px; box-shadow:0 2px 0 rgba(0,0,0,0.06) inset; |
| } |
| .search-placeholder { flex:1; } |
| .cart-btn { width:64px; height:64px; display:flex; align-items:center; justify-content:center; } |
| |
| |
| .divider { position:absolute; top:280px; left:0; width:100%; height:14px; background:#f1f1f1; border-top:1px solid #e5e5e5; border-bottom:1px solid #e5e5e5; } |
| |
| |
| .content { position:absolute; top:294px; left:0; right:0; bottom:0; overflow:hidden auto; padding-bottom:260px; } |
| .section-title { font-size:44px; font-weight:800; margin:48px 40px 24px; } |
| .products-row { display:flex; gap:32px; padding:0 40px; } |
| .card { width:320px; } |
| .thumb { |
| position:relative; width:100%; height:220px; background:#E0E0E0; border:1px solid #BDBDBD; border-radius:24px; |
| display:flex; align-items:center; justify-content:center; color:#757575; font-size:26px; text-align:center; padding:10px; |
| } |
| .heart { |
| position:absolute; top:12px; right:12px; width:40px; height:40px; background:#ffffffcc; border-radius:50%; |
| display:flex; align-items:center; justify-content:center; box-shadow:0 1px 3px rgba(0,0,0,0.15); |
| } |
| .title { font-size:30px; line-height:36px; color:#444; margin-top:16px; } |
| .price-row { margin-top:12px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; } |
| .price { font-size:34px; font-weight:700; color:#000; } |
| .old-price { font-size:28px; color:#9e9e9e; text-decoration:line-through; } |
| .deal { |
| font-size:26px; color:#1f7a3b; background:#DDF4E1; border-radius:12px; padding:6px 12px; font-weight:700; |
| } |
| .add-row { margin-top:18px; display:flex; align-items:center; gap:16px; } |
| .add-btn { |
| height:70px; padding:0 34px; border:1px solid #d0d8de; border-radius:35px; background:#fff; color:#0878a2; font-weight:700; font-size:32px; |
| display:flex; align-items:center; justify-content:center; |
| } |
| .plus-btn { |
| width:70px; height:70px; border-radius:35px; border:1px solid #d0d8de; background:#fff; display:flex; align-items:center; justify-content:center; |
| } |
| |
| |
| .ratings { margin:48px 40px 0; } |
| .ratings-title { font-size:42px; font-weight:800; margin-bottom:24px; } |
| .ratings-grid { display:flex; gap:40px; } |
| .ratings-left { width:280px; } |
| .big-score { font-size:120px; font-weight:800; line-height:1; } |
| .stars-line { display:flex; gap:6px; margin:12px 0 8px; color:#bdbdbd; } |
| .ratings-note { font-size:30px; color:#777; } |
| .ratings-right { flex:1; } |
| .dist-row { display:flex; align-items:center; gap:16px; margin-bottom:16px; } |
| .dist-label { width:40px; color:#777; display:flex; align-items:center; gap:4px; font-size:30px; } |
| .bar { flex:1; height:44px; background:#e9ecef; border-radius:22px; position:relative; overflow:hidden; } |
| .bar > span { position:absolute; left:0; top:0; height:100%; width:0%; background:#f8c24c; } |
| .percent { width:70px; text-align:right; color:#777; font-size:30px; } |
| |
| |
| .explore { margin:44px 40px; display:flex; align-items:center; justify-content:space-between; color:#0878a2; } |
| .explore small { color:#777; display:block; font-size:28px; margin-bottom:4px; } |
| .view-link { font-size:34px; font-weight:700; display:flex; align-items:center; gap:10px; } |
| |
| |
| .bottom-bar { |
| position:absolute; bottom:0; left:0; width:100%; height:180px; background:#fff; border-top:1px solid #e6e6e6; |
| display:flex; align-items:center; justify-content:flex-end; padding:0 40px; |
| box-shadow:0 -6px 18px rgba(0,0,0,0.06); |
| } |
| .cta-btn { |
| height:104px; padding:0 60px; border-radius:52px; background:#0A78A6; color:#fff; font-size:40px; font-weight:800; border:none; |
| display:flex; align-items:center; justify-content:center; |
| } |
| |
| |
| .star { width:28px; height:28px; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| <div class="header"> |
| <div class="status-bar"> |
| <div>4:48</div> |
| <div>100%</div> |
| </div> |
| <div class="search-row"> |
| <div class="icon-btn"> |
| <svg width="36" height="36" viewBox="0 0 24 24" fill="none"> |
| <path d="M15 18L9 12L15 6" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="search-box"> |
| <svg width="36" height="36" viewBox="0 0 24 24" fill="none" style="margin-right:10px;"> |
| <circle cx="11" cy="11" r="7" stroke="#7a7a7a" stroke-width="2"/> |
| <path d="M20 20L16.5 16.5" stroke="#7a7a7a" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| <div class="search-placeholder">Search JioMart</div> |
| <svg width="34" height="34" viewBox="0 0 24 24" fill="none" style="margin-right:12px;"> |
| <path d="M12 3v10" stroke="#7a7a7a" stroke-width="2" stroke-linecap="round"/> |
| <path d="M9 13h6v4a3 3 0 01-6 0v-4z" stroke="#7a7a7a" stroke-width="2"/> |
| </svg> |
| </div> |
| <div class="cart-btn"> |
| <svg width="36" height="36" viewBox="0 0 24 24" fill="none"> |
| <path d="M4 6h2l2 10h10l2-7H8" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| <circle cx="10" cy="20" r="1.6" fill="#fff"/> |
| <circle cx="17" cy="20" r="1.6" fill="#fff"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="divider"></div> |
|
|
| <div class="content"> |
| <div class="section-title">Similar Products</div> |
|
|
| <div class="products-row"> |
| |
| <div class="card"> |
| <div class="thumb"> |
| [IMG: Screwdriver Set - box and bits] |
| <div class="heart"> |
| <svg width="22" height="22" viewBox="0 0 24 24" fill="none"> |
| <path d="M12 21s-7-5.2-9-8.3C1.7 9.5 3.4 7 6.4 7c1.7 0 3 .9 3.6 2.1C10.6 7.9 11.9 7 13.6 7c3 0 4.7 2.5 3.4 5.7C19 15.8 12 21 12 21z" stroke="#E06666" stroke-width="1.5" fill="#fff"/> |
| </svg> |
| </div> |
| </div> |
| <div class="title">Tools Titan 25 in 1<br>SCREWDRIVER SET 1</div> |
| <div class="price-row"> |
| <div class="price">₹259.00</div> |
| <div class="old-price">₹1299.00</div> |
| <div class="deal">80% OFF</div> |
| </div> |
| <div class="add-row"> |
| <div class="add-btn">Add</div> |
| <div class="plus-btn"> |
| <svg width="28" height="28" viewBox="0 0 24 24" fill="none"> |
| <path d="M12 5v14M5 12h14" stroke="#0878a2" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| [IMG: Screwdriver handle and bits] |
| <div class="heart"> |
| <svg width="22" height="22" viewBox="0 0 24 24" fill="none"> |
| <path d="M12 21s-7-5.2-9-8.3C1.7 9.5 3.4 7 6.4 7c1.7 0 3 .9 3.6 2.1C10.6 7.9 11.9 7 13.6 7c3 0 4.7 2.5 3.4 5.7C19 15.8 12 21 12 21z" stroke="#E06666" stroke-width="1.5" fill="#fff"/> |
| </svg> |
| </div> |
| </div> |
| <div class="title">Tools Titan 25 IN 1<br>SCREWDRIVER SET 8</div> |
| <div class="price-row"> |
| <div class="price">₹265.00</div> |
| <div class="old-price">₹799.00</div> |
| <div class="deal">66% OFF</div> |
| </div> |
| <div class="add-row"> |
| <div class="add-btn">Add</div> |
| <div class="plus-btn"> |
| <svg width="28" height="28" viewBox="0 0 24 24" fill="none"> |
| <path d="M12 5v14M5 12h14" stroke="#0878a2" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| [IMG: Bits set with case] |
| <div class="heart"> |
| <svg width="22" height="22" viewBox="0 0 24 24" fill="none"> |
| <path d="M12 21s-7-5.2-9-8.3C1.7 9.5 3.4 7 6.4 7c1.7 0 3 .9 3.6 2.1C10.6 7.9 11.9 7 13.6 7c3 0 4.7 2.5 3.4 5.7C19 15.8 12 21 12 21z" stroke="#E06666" stroke-width="1.5" fill="#fff"/> |
| </svg> |
| </div> |
| </div> |
| <div class="title">Tools Titan 25 in 1<br>SCREWDRIVER SET</div> |
| <div class="price-row"> |
| <div class="price">₹259.00</div> |
| <div class="old-price">₹1299.00</div> |
| <div class="deal">80% OFF</div> |
| </div> |
| <div class="add-row"> |
| <div class="add-btn">Add</div> |
| <div class="plus-btn"> |
| <svg width="28" height="28" viewBox="0 0 24 24" fill="none"> |
| <path d="M12 5v14M5 12h14" stroke="#0878a2" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="ratings"> |
| <div class="ratings-title">Ratings & Reviews</div> |
| <div class="ratings-grid"> |
| <div class="ratings-left"> |
| <div class="big-score">0</div> |
| <div class="stars-line"> |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| </div> |
| <div class="ratings-note">0 ratings</div> |
| </div> |
| <div class="ratings-right"> |
| <div class="dist-row"> |
| <div class="dist-label">5 |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| </div> |
| <div class="bar"><span style="width:0%"></span></div> |
| <div class="percent">0%</div> |
| </div> |
| <div class="dist-row"> |
| <div class="dist-label">4 |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| </div> |
| <div class="bar"><span style="width:0%"></span></div> |
| <div class="percent">0%</div> |
| </div> |
| <div class="dist-row"> |
| <div class="dist-label">3 |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| </div> |
| <div class="bar"><span style="width:0%"></span></div> |
| <div class="percent">0%</div> |
| </div> |
| <div class="dist-row"> |
| <div class="dist-label">2 |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| </div> |
| <div class="bar"><span style="width:0%"></span></div> |
| <div class="percent">0%</div> |
| </div> |
| <div class="dist-row"> |
| <div class="dist-label">1 |
| <svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg> |
| </div> |
| <div class="bar"><span style="width:0%"></span></div> |
| <div class="percent">0%</div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="explore"> |
| <div> |
| <small>Explore More!</small> |
| <div class="view-link">View Categories |
| <svg width="26" height="26" viewBox="0 0 24 24" fill="none"> |
| <path d="M8 5l8 7-8 7" stroke="#0878a2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
| <div></div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="bottom-bar"> |
| <button class="cta-btn">Add to Cart</button> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |