| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=1440, initial-scale=1.0" /> |
| <title>Product Comparison - Shoes</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color: #1f2a37; } |
| #render-target { |
| width: 1440px; |
| height: 3120px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| } |
| |
| |
| .os-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1440px; |
| height: 120px; |
| background: #e7e7e7; |
| } |
| |
| |
| .app-header { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 1440px; |
| height: 120px; |
| background: #ffffff; |
| } |
| .app-header .inner { |
| height: 100%; |
| display: flex; |
| align-items: center; |
| padding: 0 60px; |
| justify-content: space-between; |
| } |
| .icon-btn { |
| width: 72px; |
| height: 72px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| cursor: default; |
| } |
| .icon { |
| width: 48px; |
| height: 48px; |
| stroke: #1f2a37; |
| fill: none; |
| stroke-width: 30; |
| } |
| |
| |
| .comparison { |
| position: absolute; |
| top: 260px; |
| left: 0; |
| width: 1440px; |
| } |
| |
| .product-images { |
| width: 100%; |
| padding: 0 80px; |
| box-sizing: border-box; |
| display: grid; |
| grid-template-columns: 420px 430px 430px; |
| column-gap: 40px; |
| align-items: stretch; |
| } |
| .product-images .spacer { |
| height: 560px; |
| } |
| .img-box { |
| height: 560px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 34px; |
| letter-spacing: 0.5px; |
| } |
| |
| .comparison-grid { |
| margin-top: 20px; |
| width: 100%; |
| padding: 0 80px; |
| box-sizing: border-box; |
| display: grid; |
| grid-template-columns: 420px 430px 430px; |
| column-gap: 40px; |
| } |
| |
| .row { |
| display: contents; |
| } |
| |
| .cell { |
| padding: 46px 36px; |
| border-bottom: 2px solid #e6ebef; |
| font-size: 42px; |
| line-height: 1.2; |
| } |
| |
| .label { |
| font-weight: 700; |
| color: #2b3a4a; |
| } |
| |
| .spec { |
| background: #f3f9fe; |
| } |
| |
| .price-badge { |
| display: inline-block; |
| background: #ffe317; |
| color: #0f1e2d; |
| font-weight: 800; |
| font-size: 40px; |
| padding: 18px 28px; |
| border-radius: 10px; |
| } |
| |
| .reviews { |
| display: inline-flex; |
| align-items: center; |
| gap: 18px; |
| color: #1976d2; |
| font-weight: 700; |
| } |
| .star { |
| width: 40px; |
| height: 40px; |
| fill: #ffb400; |
| vertical-align: middle; |
| } |
| |
| .v-sep { |
| position: absolute; |
| top: 260px; |
| left: 560px; |
| } |
| |
| .cta-row { |
| display: flex; |
| gap: 40px; |
| } |
| .cta { |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| gap: 18px; |
| background: #ffe317; |
| color: #0f1e2d; |
| font-weight: 800; |
| font-size: 42px; |
| border-radius: 22px; |
| padding: 30px 60px; |
| border: 0; |
| box-shadow: 0 3px 0 #d9c700 inset; |
| } |
| .cta svg { width: 46px; height: 46px; stroke: #0f1e2d; stroke-width: 24; fill: none; } |
| |
| |
| .section-title { |
| margin: 60px 80px 24px 80px; |
| font-weight: 800; |
| font-size: 54px; |
| letter-spacing: 1px; |
| color: #2b3a4a; |
| } |
| |
| .also-bought { |
| margin: 0 80px; |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 36px; |
| } |
| |
| .thumb { |
| position: relative; |
| height: 420px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 34px; |
| } |
| .ribbon { |
| position: absolute; |
| top: 18px; |
| left: 18px; |
| background: #0084ff; |
| color: #fff; |
| font-weight: 800; |
| font-size: 28px; |
| padding: 10px 18px; |
| border-radius: 6px; |
| } |
| .ribbon.green { background: #2e7d32; } |
| |
| |
| .sticky-bar { |
| position: absolute; |
| left: 60px; |
| right: 60px; |
| bottom: 80px; |
| background: #ffffff; |
| border-radius: 30px; |
| box-shadow: 0 8px 24px rgba(0,0,0,0.1); |
| padding: 26px; |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| } |
| .fav-box { |
| width: 180px; |
| height: 140px; |
| border-radius: 20px; |
| background: #f7fafc; |
| border: 4px solid #dbe6f3; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .fav-box svg { width: 72px; height: 72px; stroke: #1e88e5; stroke-width: 26; fill: none; } |
| .sticky-cta { |
| flex: 1; |
| height: 140px; |
| background: #ffe317; |
| border: none; |
| border-radius: 20px; |
| font-size: 56px; |
| font-weight: 900; |
| color: #0f1e2d; |
| letter-spacing: 1px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| gap: 26px; |
| box-shadow: 0 3px 0 #d9c700 inset; |
| } |
| .sticky-cta svg { width: 62px; height: 62px; stroke: #0f1e2d; stroke-width: 26; fill: none; } |
| |
| |
| .comparison-grid .cell:not(.label):not(.spec) { background: #ffffff; } |
| .comparison-grid .cell.spec { background: #eef6fb; } |
| |
| |
| .muted { color: #6b7b8a; font-weight: 600; } |
| |
| |
| .spacer-bottom { height: 720px; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="os-bar"></div> |
|
|
| |
| <div class="app-header"> |
| <div class="inner"> |
| <div class="icon-btn" title="Back"> |
| <svg class="icon" viewBox="0 0 512 512"> |
| <path d="M320 96 L160 256 L320 416" /> |
| </svg> |
| </div> |
| <div style="display:flex; gap:36px;"> |
| <div class="icon-btn" title="Search"> |
| <svg class="icon" viewBox="0 0 512 512"> |
| <circle cx="224" cy="224" r="160"></circle> |
| <line x1="344" y1="344" x2="456" y2="456"></line> |
| </svg> |
| </div> |
| <div class="icon-btn" title="Wishlist"> |
| <svg class="icon" viewBox="0 0 512 512"> |
| <path d="M256 440 C256 440 96 344 96 216 C96 154 144 112 200 112 C237 112 256 136 256 136 C256 136 275 112 312 112 C368 112 416 154 416 216 C416 344 256 440 256 440 Z" /> |
| </svg> |
| </div> |
| <div class="icon-btn" title="Cart"> |
| <svg class="icon" viewBox="0 0 512 512"> |
| <circle cx="192" cy="432" r="40"></circle> |
| <circle cx="352" cy="432" r="40"></circle> |
| <path d="M88 96 H132 L170 320 H412 L456 176 H192" /> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="comparison"> |
| <div class="product-images"> |
| <div class="spacer"></div> |
| <div class="img-box">[IMG: Grey running shoe]</div> |
| <div class="img-box">[IMG: Black running shoe]</div> |
| </div> |
|
|
| |
| <div class="comparison-grid"> |
| |
| <div class="row"> |
| <div class="cell label">Name</div> |
| <div class="cell spec">Men Run 100</div> |
| <div class="cell">Jog Flow 100</div> |
| </div> |
|
|
| |
| <div class="row"> |
| <div class="cell label">Price</div> |
| <div class="cell spec"><span class="price-badge">₹899</span></div> |
| <div class="cell"><span class="price-badge">₹1,799</span></div> |
| </div> |
|
|
| |
| <div class="row"> |
| <div class="cell label">Reviews</div> |
| <div class="cell spec"> |
| <span class="reviews"> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.6 5.82 22 7 14.14l-5-4.87 6.91-1.01z"/></svg> |
| 4.4 (17.5k) |
| </span> |
| </div> |
| <div class="cell"> |
| <span class="reviews"> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.6 5.82 22 7 14.14l-5-4.87 6.91-1.01z"/></svg> |
| 4.5 (74) |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="row"> |
| <div class="cell label">Foam</div> |
| <div class="cell spec">2/5</div> |
| <div class="cell">4/5</div> |
| </div> |
|
|
| |
| <div class="row"> |
| <div class="cell label">Lightweight</div> |
| <div class="cell spec">5/5</div> |
| <div class="cell">5/5</div> |
| </div> |
|
|
| |
| <div class="row"> |
| <div class="cell label">Grip</div> |
| <div class="cell spec">3/5</div> |
| <div class="cell">3/5</div> |
| </div> |
|
|
| |
| <div class="row"> |
| <div class="cell label"></div> |
| <div class="cell spec"> |
| <button class="cta"> |
| ADD TO CART |
| <svg viewBox="0 0 512 512"> |
| <circle cx="192" cy="432" r="36"></circle> |
| <circle cx="352" cy="432" r="36"></circle> |
| <path d="M88 96 H132 L170 320 H412 L456 176 H192" /> |
| </svg> |
| </button> |
| </div> |
| <div class="cell"> |
| <button class="cta"> |
| ADD TO CART |
| <svg viewBox="0 0 512 512"> |
| <circle cx="192" cy="432" r="36"></circle> |
| <circle cx="352" cy="432" r="36"></circle> |
| <path d="M88 96 H132 L170 320 H412 L456 176 H192" /> |
| </svg> |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section-title">CUSTOMERS ALSO BOUGHT</div> |
| <div class="also-bought"> |
| <div class="thumb"> |
| <div class="ribbon">BESTSELLER</div> |
| [IMG: Men track pants] |
| </div> |
| <div class="thumb"> |
| <div class="ribbon green">ECO DESIGN</div> |
| [IMG: Small massage device] |
| </div> |
| </div> |
|
|
| <div class="spacer-bottom"></div> |
| </div> |
|
|
| |
| <div class="sticky-bar"> |
| <div class="fav-box"> |
| <svg viewBox="0 0 512 512"> |
| <path d="M256 440 C256 440 96 344 96 216 C96 154 144 112 200 112 C237 112 256 136 256 136 C256 136 275 112 312 112 C368 112 416 154 416 216 C416 344 256 440 256 440 Z" /> |
| <line x1="256" y1="172" x2="256" y2="296"></line> |
| <line x1="196" y1="236" x2="316" y2="236"></line> |
| </svg> |
| </div> |
| <button class="sticky-cta"> |
| ADD TO CART |
| <svg viewBox="0 0 512 512"> |
| <circle cx="192" cy="432" r="40"></circle> |
| <circle cx="352" cy="432" r="40"></circle> |
| <path d="M88 96 H132 L170 320 H412 L456 176 H192" /> |
| </svg> |
| </button> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |