| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Product Detail - Predator Accuracy+</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: "Helvetica Neue", Arial, sans-serif; } |
| #render-target { |
| position: relative; |
| width: 1080px; |
| height: 2400px; |
| overflow: hidden; |
| background: #EDF2F4; |
| border-radius: 0; |
| box-shadow: none; |
| color: #1a1a1a; |
| } |
| |
| |
| .status-bar { |
| height: 110px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #000; |
| font-weight: 600; |
| font-size: 42px; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .status-dot { |
| width: 28px; height: 28px; background: #000; border-radius: 6px; |
| } |
| .wifi { |
| width: 42px; height: 28px; border: 3px solid #000; border-top-left-radius: 24px; border-top-right-radius: 24px; border-bottom: none; |
| } |
| .battery { |
| width: 64px; height: 30px; border: 3px solid #000; position: relative; |
| } |
| .battery::after { |
| content: ""; position: absolute; right: -10px; top: 8px; width: 8px; height: 14px; background: #000; |
| } |
| |
| |
| .close-btn { |
| position: absolute; |
| top: 140px; |
| right: 40px; |
| width: 80px; |
| height: 80px; |
| cursor: default; |
| } |
| .close-btn svg { width: 100%; height: 100%; } |
| |
| |
| .hero { |
| position: relative; |
| margin-top: 20px; |
| width: 100%; |
| height: 780px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .img-placeholder { |
| width: 980px; |
| height: 640px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 38px; |
| text-align: center; |
| border-radius: 10px; |
| } |
| .new-tag { |
| position: absolute; |
| left: 40px; |
| bottom: 40px; |
| background: #ffffff; |
| color: #000; |
| font-weight: 700; |
| font-size: 30px; |
| letter-spacing: 2px; |
| padding: 16px 24px; |
| border-radius: 4px; |
| box-shadow: 0 1px 0 rgba(0,0,0,0.1); |
| } |
| |
| |
| .thumbs { |
| width: 100%; |
| padding: 24px 40px 16px 40px; |
| box-sizing: border-box; |
| } |
| .thumb-row { |
| display: flex; |
| gap: 40px; |
| align-items: center; |
| justify-content: flex-start; |
| } |
| .thumb-item { |
| width: 220px; |
| height: 140px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 26px; |
| border-radius: 8px; |
| } |
| .pager { |
| width: 120px; |
| height: 16px; |
| margin: 20px auto 0 auto; |
| background: #CFCFCF; |
| border-radius: 10px; |
| } |
| |
| |
| .details { |
| margin-top: 16px; |
| background: #ffffff; |
| border-top-left-radius: 16px; |
| border-top-right-radius: 16px; |
| padding: 52px 40px 40px 40px; |
| box-sizing: border-box; |
| min-height: 1200px; |
| } |
| .title-row { |
| display: flex; |
| align-items: flex-start; |
| justify-content: space-between; |
| } |
| .product-title { |
| font-size: 58px; |
| font-weight: 800; |
| line-height: 74px; |
| letter-spacing: 1px; |
| } |
| .heart { |
| width: 70px; height: 70px; |
| } |
| .price-row { |
| margin-top: 20px; |
| display: flex; |
| align-items: center; |
| gap: 34px; |
| } |
| .price { |
| font-size: 36px; |
| font-weight: 800; |
| } |
| .tag { |
| font-size: 34px; |
| letter-spacing: 2px; |
| color: #444; |
| } |
| .divider { |
| height: 2px; background: #EFEFEF; margin: 42px 0; |
| } |
| |
| |
| .size-header { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| margin-bottom: 24px; |
| } |
| .size-label { |
| font-size: 34px; |
| font-weight: 700; |
| letter-spacing: 2px; |
| } |
| .measure-box { |
| width: 100px; height: 68px; border: 2px solid #000; display: flex; align-items: center; justify-content: center; border-radius: 6px; |
| } |
| .measure-box svg { width: 70px; height: 28px; } |
| .sizes { |
| display: flex; |
| gap: 56px; |
| align-items: center; |
| font-size: 32px; |
| white-space: nowrap; |
| overflow: hidden; |
| padding-bottom: 12px; |
| } |
| .size-item { |
| position: relative; |
| padding: 8px 6px; |
| color: #000; |
| } |
| .size-item.selected::after { |
| content: ""; |
| position: absolute; |
| left: 0; |
| right: 0; |
| bottom: -12px; |
| height: 8px; |
| background: #000; |
| border-radius: 4px; |
| } |
| |
| |
| .button { |
| width: 100%; |
| height: 128px; |
| border-radius: 4px; |
| font-size: 34px; |
| font-weight: 800; |
| letter-spacing: 2px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| box-sizing: border-box; |
| padding: 0 40px; |
| } |
| .btn-outline { |
| background: #fff; |
| border: 2px solid #000; |
| color: #000; |
| } |
| .btn-solid { |
| margin-top: 26px; |
| background: #000; |
| color: #fff; |
| border: 2px solid #000; |
| } |
| .bag-icon, .arrow-icon { width: 52px; height: 52px; } |
| |
| |
| .payment-row { |
| margin-top: 40px; |
| display: flex; |
| gap: 24px; |
| flex-wrap: wrap; |
| } |
| .pay-card { |
| width: 220px; |
| height: 120px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 10px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 28px; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 24px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 360px; |
| height: 18px; |
| background: #BFBFBF; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>3:18</div> |
| <div class="status-icons"> |
| <div class="status-dot"></div> |
| <div class="status-dot" style="opacity:0.7;"></div> |
| <div class="status-dot" style="opacity:0.5;"></div> |
| <div class="wifi"></div> |
| <div class="battery"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="close-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 4 L20 20 M20 4 L4 20" stroke="#000" stroke-width="2.6" stroke-linecap="round"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="hero"> |
| <div class="img-placeholder">[IMG: Predator Cleats - Top & Sole]</div> |
| <div class="new-tag">NEW</div> |
| </div> |
|
|
| |
| <div class="thumbs"> |
| <div class="thumb-row"> |
| <div class="thumb-item">[IMG: Pink Cleats]</div> |
| <div class="thumb-item">[IMG: Green Cleats]</div> |
| <div class="thumb-item">[IMG: Green Sole]</div> |
| </div> |
| <div class="pager"></div> |
| </div> |
|
|
| |
| <div class="details"> |
| <div class="title-row"> |
| <div class="product-title"> |
| PREDATOR ACCURACY+<br> |
| ARTIFICIAL GRASS CLEATS |
| </div> |
| <div class="heart"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.6-9.5-8.2C1 10.3 2.5 6.5 6.2 6.5c2.1 0 3.3 1.1 3.8 2.1.5-1 1.7-2.1 3.8-2.1 3.7 0 5.2 3.8 3.7 6.3C19 16.4 12 21 12 21z" fill="none" stroke="#000" stroke-width="1.8" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="price-row"> |
| <div class="price">$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="measure-box" title="Size guide"> |
| <svg viewBox="0 0 100 30"> |
| <path d="M5 25 H95" stroke="#000" stroke-width="4"/> |
| <path d="M20 10 V25 M35 10 V25 M50 10 V25 M65 10 V25 M80 10 V25" stroke="#000" stroke-width="3"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="sizes"> |
| <div class="size-item">10</div> |
| <div class="size-item">M 9.5 / W 10.5</div> |
| <div class="size-item selected">M 10 / W 11</div> |
| <div class="size-item">M 10.5 / W 11.5</div> |
| <div class="size-item">M 11 / W 12</div> |
| </div> |
|
|
| <div class="divider" style="margin-top: 30px;"></div> |
|
|
| <div class="button btn-outline"> |
| <div>ADD TO BAG</div> |
| <div class="bag-icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 8 H18 L17 22 H7 L6 8z" fill="none" stroke="#000" stroke-width="2"/> |
| <path d="M8 8 V6 A4 4 0 0 1 16 6 V8" fill="none" stroke="#000" stroke-width="2"/> |
| <path d="M17 13 M17 13" stroke="#000"/> |
| <path d="M19 11 v6 m-3-3 h6" stroke="#000" stroke-width="2"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="button btn-solid"> |
| <div>BUY IT NOW</div> |
| <div class="arrow-icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 12 H18 M12 6 L18 12 L12 18" stroke="#fff" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="payment-row"> |
| <div class="pay-card">[IMG: G Pay]</div> |
| <div class="pay-card">[IMG: Card]</div> |
| <div class="pay-card">[IMG: PayPal]</div> |
| <div class="pay-card">[IMG: Klarna]</div> |
| <div class="pay-card">[IMG: Afterpay]</div> |
| <div class="pay-card">[IMG: Apple Pay]</div> |
| </div> |
| </div> |
|
|
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |