| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Product Detail - Cleats</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: "Helvetica Neue", Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| } |
| |
| |
| .hero { |
| position: relative; |
| background: #edf2f4; |
| height: 980px; |
| padding: 80px 60px 0 60px; |
| } |
| .close-btn { |
| position: absolute; |
| right: 40px; |
| top: 60px; |
| width: 60px; height: 60px; |
| cursor: pointer; |
| } |
| .close-btn svg { width: 100%; height: 100%; } |
| .shoe-row { |
| display: flex; |
| flex-direction: column; |
| gap: 40px; |
| align-items: center; |
| margin-top: 40px; |
| } |
| .img-placeholder { |
| width: 900px; |
| height: 320px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| color: #757575; |
| font-weight: 600; |
| letter-spacing: 1px; |
| } |
| .new-pill { |
| position: absolute; |
| left: 60px; |
| bottom: 170px; |
| font-size: 28px; |
| letter-spacing: 2px; |
| text-transform: uppercase; |
| padding: 14px 22px; |
| background: #ffffff; |
| border: 1px solid #ddd; |
| color: #000; |
| } |
| |
| |
| .thumb-strip { |
| position: absolute; |
| left: 0; right: 0; |
| bottom: 0; |
| background: #f1f1f1; |
| height: 190px; |
| border-top: 1px solid #ddd; |
| display: flex; |
| align-items: center; |
| padding: 0 60px; |
| gap: 140px; |
| } |
| .thumb { |
| width: 200px; height: 120px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; justify-content: center; align-items: center; |
| color: #757575; font-size: 24px; |
| } |
| .strip-indicator { |
| position: absolute; |
| left: 50%; transform: translateX(-50%); |
| bottom: 18px; |
| width: 140px; height: 14px; |
| background: #d7d7d7; |
| border-radius: 7px; |
| } |
| |
| |
| .content { |
| background: #fff; |
| padding: 60px; |
| } |
| .title-row { |
| position: relative; |
| padding-right: 120px; |
| } |
| .favorite { |
| position: absolute; |
| right: 0; |
| top: 0; |
| width: 64px; height: 64px; |
| } |
| .favorite svg { width: 100%; height: 100%; } |
| .product-title { |
| font-size: 62px; |
| line-height: 76px; |
| font-weight: 800; |
| letter-spacing: 1px; |
| text-transform: uppercase; |
| color: #111; |
| margin: 0 0 40px 0; |
| } |
| .price-line { |
| font-size: 34px; |
| color: #111; |
| display: flex; |
| align-items: baseline; |
| gap: 40px; |
| } |
| .tag { |
| font-size: 30px; |
| color: #555; |
| letter-spacing: 3px; |
| text-transform: uppercase; |
| } |
| .divider { |
| height: 1px; background: #e6e6e6; margin: 40px 0 0 0; |
| } |
| |
| |
| .size-header { |
| display: flex; align-items: center; gap: 24px; |
| margin-top: 60px; |
| } |
| .size-label { |
| font-size: 36px; font-weight: 700; letter-spacing: 2px; |
| color: #222; text-transform: uppercase; |
| } |
| .ruler-box { |
| width: 90px; height: 70px; border: 2px solid #222; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .ruler-box svg { width: 64px; height: 36px; } |
| .sizes { |
| margin-top: 40px; |
| display: flex; gap: 90px; |
| overflow: hidden; |
| padding-bottom: 20px; |
| } |
| .size-item { |
| font-size: 34px; color: #111; |
| letter-spacing: 2px; |
| padding-bottom: 12px; |
| } |
| .size-item.active { |
| border-bottom: 6px solid #111; |
| } |
| .divider-large { height: 1px; background: #e6e6e6; margin: 40px 0; } |
| |
| |
| .btn-outline, .btn-solid { |
| height: 140px; |
| border-radius: 2px; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 40px; |
| font-size: 34px; letter-spacing: 3px; font-weight: 800; text-transform: uppercase; |
| } |
| .btn-outline { border: 3px solid #111; color: #111; background: #fff; } |
| .btn-solid { background: #111; color: #fff; margin-top: 30px; } |
| .bag-icon, .arrow-icon { width: 60px; height: 60px; } |
| .bag-icon svg, .arrow-icon svg { width: 100%; height: 100%; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="hero"> |
| <div class="close-btn" aria-label="Close"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 5 L19 19 M19 5 L5 19" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
|
|
| <div class="shoe-row"> |
| <div class="img-placeholder">[IMG: Cleats - Side View]</div> |
| <div class="img-placeholder">[IMG: Cleats - Sole / Bottom View]</div> |
| </div> |
|
|
| <div class="new-pill">NEW</div> |
|
|
| <div class="thumb-strip"> |
| <div class="thumb">[IMG: Pink Variant]</div> |
| <div class="thumb">[IMG: Green Variant]</div> |
| <div class="thumb">[IMG: Pink Sole]</div> |
| <div class="thumb">[IMG: Green Sole]</div> |
| <div class="strip-indicator"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="title-row"> |
| <h1 class="product-title">Predator Accuracy+<br>Artificial Grass Cleats</h1> |
| <div class="favorite" aria-label="Add to wishlist"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 20s-6-4.35-8.2-6.56C1.76 12.4 2 9.6 4.05 8.08c1.9-1.39 4.32-.79 5.73.87L12 10.9l2.22-1.95c1.41-1.66 3.83-2.26 5.73-.87C22 9.6 22.24 12.4 20.2 13.44 18 15.65 12 20 12 20z" fill="none" stroke="#111" stroke-width="1.8" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="price-line"> |
| <div style="font-weight:800">$300.00</div> |
| <div class="tag">Performance</div> |
| </div> |
|
|
| <div class="divider"></div> |
|
|
| <div class="size-header"> |
| <div class="size-label">Size</div> |
| <div class="ruler-box" aria-label="Size guide"> |
| <svg viewBox="0 0 64 36"> |
| <rect x="2" y="6" width="60" height="24" fill="none" stroke="#111" stroke-width="2"/> |
| <path d="M10 6 v10 M16 6 v6 M22 6 v10 M28 6 v6 M34 6 v10 M40 6 v6 M46 6 v10 M52 6 v6" stroke="#111" stroke-width="2"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="sizes"> |
| <div class="size-item">M 7 / W 8</div> |
| <div class="size-item">M 7.5 / W 8.5</div> |
| <div class="size-item active">M 8 / W 9</div> |
| <div class="size-item">M 8.5 / W 9.5</div> |
| <div class="size-item">M 9 / W 10</div> |
| </div> |
|
|
| <div class="divider-large"></div> |
|
|
| <div class="btn-outline"> |
| <span>Add to bag</span> |
| <div class="bag-icon" aria-hidden="true"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M7 8h10l1 12H6L7 8z" fill="none" stroke="#111" stroke-width="2"/> |
| <path d="M9 8V6a3 3 0 016 0v2" fill="none" stroke="#111" stroke-width="2"/> |
| <path d="M15 13h-2v-2h-2v2H9v2h2v2h2v-2h2z" fill="none" stroke="#111" stroke-width="1.6"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="btn-solid"> |
| <span>Buy it now</span> |
| <div class="arrow-icon" aria-hidden="true"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 12h12M13 6l6 6-6 6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |