| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Product Page - Cleats</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| * { box-sizing: border-box; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| } |
| |
| |
| .hero { |
| position: relative; |
| width: 100%; |
| height: 980px; |
| background: #EDF2F4; |
| border-bottom: 1px solid #DADFE3; |
| } |
| |
| .status-bar { |
| position: absolute; |
| top: 24px; |
| left: 32px; |
| color: #9AA0A6; |
| font-size: 36px; |
| letter-spacing: 1px; |
| } |
| .status-icons { |
| position: absolute; |
| top: 24px; |
| right: 32px; |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| color: #9AA0A6; |
| font-size: 24px; |
| } |
| .wifi { |
| width: 34px; height: 24px; border: 2px solid #9AA0A6; border-radius: 12px; |
| } |
| .battery { |
| width: 44px; height: 24px; border: 2px solid #9AA0A6; position: relative; border-radius: 4px; |
| } |
| .battery::after { |
| content: ""; |
| position: absolute; |
| right: -8px; top: 6px; |
| width: 6px; height: 12px; background: #9AA0A6; border-radius: 2px; |
| } |
| |
| .close-btn { |
| position: absolute; |
| top: 230px; |
| right: 40px; |
| font-size: 96px; |
| line-height: 1; |
| color: #000000; |
| } |
| |
| .product-visual { |
| position: absolute; |
| left: 60px; |
| right: 60px; |
| top: 160px; |
| } |
| .img-placeholder { |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| color: #757575; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| text-transform: uppercase; |
| font-weight: 600; |
| letter-spacing: 1px; |
| } |
| .shoe-top { |
| width: 960px; height: 360px; |
| margin: 0 auto 30px auto; |
| } |
| .shoe-sole { |
| width: 960px; height: 360px; |
| margin: 0 auto; |
| } |
| |
| .new-tag { |
| position: absolute; |
| bottom: 210px; |
| left: 60px; |
| background: #ffffff; |
| color: #000000; |
| font-size: 32px; |
| letter-spacing: 3px; |
| padding: 14px 22px; |
| border-radius: 4px; |
| box-shadow: 0 1px 0 rgba(0,0,0,0.08); |
| } |
| |
| .thumbs-area { |
| position: absolute; |
| bottom: 0; |
| left: 0; right: 0; |
| height: 190px; |
| background: #ECECEC; |
| border-top: 1px solid #DADADA; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| gap: 60px; |
| padding: 20px 0 40px 0; |
| } |
| .thumb { |
| width: 220px; height: 120px; |
| position: relative; |
| } |
| .thumb.focus { |
| outline: 2px dashed #CFCFCF; |
| } |
| .slider-indicator { |
| position: absolute; |
| bottom: 18px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 160px; height: 16px; |
| background: #D0D0D0; |
| border-radius: 8px; |
| } |
| |
| |
| .content { |
| position: relative; |
| background: #ffffff; |
| padding: 56px 60px 0 60px; |
| } |
| .title-row { |
| position: relative; |
| padding-right: 120px; |
| } |
| h1.title { |
| margin: 0 0 28px 0; |
| font-size: 58px; |
| font-weight: 800; |
| letter-spacing: 2px; |
| line-height: 1.18; |
| text-transform: uppercase; |
| color: #111111; |
| } |
| .favorite { |
| position: absolute; |
| right: 0; |
| top: 6px; |
| } |
| .favorite svg { |
| width: 72px; height: 72px; |
| stroke: #111; fill: none; stroke-width: 8px; |
| } |
| |
| .meta { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| margin-bottom: 36px; |
| } |
| .price { |
| font-size: 34px; font-weight: 700; color: #000; |
| letter-spacing: 2px; |
| } |
| .category { |
| font-size: 30px; color: #666; letter-spacing: 4px; text-transform: uppercase; |
| } |
| |
| .divider { |
| height: 1px; background: #E5E5E5; margin: 36px 0; |
| } |
| |
| .size-header { |
| display: flex; align-items: center; gap: 18px; |
| margin-bottom: 24px; |
| } |
| .size-header .label { |
| font-size: 30px; letter-spacing: 4px; color: #333; text-transform: uppercase; font-weight: 700; |
| } |
| .ruler { |
| border: 2px solid #1a1a1a; width: 84px; height: 64px; display: inline-flex; align-items: center; justify-content: center; |
| } |
| .ruler div { |
| width: 60px; height: 20px; border-top: 2px solid #1a1a1a; border-bottom: 2px solid #1a1a1a; |
| position: relative; |
| } |
| .ruler div::before, .ruler div::after { |
| content: ""; position: absolute; top: -10px; width: 2px; height: 40px; background: #1a1a1a; |
| } |
| .ruler div::before { left: 8px; } .ruler div::after { right: 8px; } |
| |
| .sizes { |
| display: flex; gap: 60px; padding: 20px 0 40px 0; color: #333; |
| font-size: 30px; letter-spacing: 3px; |
| white-space: nowrap; |
| } |
| |
| |
| .cta { |
| padding: 10px 0 0 0; |
| } |
| .btn { |
| width: 960px; height: 120px; |
| font-size: 34px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 36px; |
| margin: 22px 0; |
| cursor: pointer; |
| } |
| .btn.outline { |
| border: 3px solid #111; background: #fff; color: #111; |
| } |
| .btn.solid { |
| background: #111; color: #fff; border: 3px solid #111; |
| } |
| .icon-bag svg { width: 48px; height: 48px; stroke: #111; fill: none; stroke-width: 6px; } |
| .btn.solid .arrow svg { stroke: #fff; } |
| .arrow svg { width: 48px; height: 48px; stroke: #111; fill: none; stroke-width: 8px; } |
| |
| |
| .payments { |
| display: flex; gap: 32px; padding: 40px 0; |
| } |
| .pay-img { |
| width: 240px; height: 110px; background: #E0E0E0; border: 1px solid #BDBDBD; |
| color: #757575; display: flex; align-items: center; justify-content: center; font-weight: 600; letter-spacing: 1px; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 24px; left: 50%; transform: translateX(-50%); |
| width: 360px; height: 18px; background: #CFCFCF; border-radius: 9px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| <div class="hero"> |
| <div class="status-bar">3:18</div> |
| <div class="status-icons"> |
| <div class="wifi"></div> |
| <div class="battery"></div> |
| </div> |
|
|
| <div class="close-btn">×</div> |
|
|
| <div class="product-visual"> |
| <div class="img-placeholder shoe-top">[IMG: Cleat - Side View]</div> |
| <div class="img-placeholder shoe-sole">[IMG: Cleat - Sole View]</div> |
| </div> |
|
|
| <div class="new-tag">NEW</div> |
|
|
| <div class="thumbs-area"> |
| <div class="img-placeholder thumb">[IMG: Pink Cleat]</div> |
| <div class="img-placeholder thumb focus">[IMG: Lime Cleat]</div> |
| <div class="img-placeholder thumb">[IMG: Detail]</div> |
| <div class="slider-indicator"></div> |
| </div> |
| </div> |
|
|
| <div class="content"> |
| <div class="title-row"> |
| <h1 class="title">PREDATOR ACCURACY+<br>ARTIFICIAL GRASS CLEATS</h1> |
| <div class="favorite"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.4-9.5-8.2C0 9.6 2.2 6 5.9 6c2 0 3.5 1.1 4.1 2.5C10.6 7.1 12 6 14.1 6c3.7 0 5.9 3.6 3.4 6.8C19 16.6 12 21 12 21z"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="meta"> |
| <div class="price">$300.00</div> |
| <div class="category">PERFORMANCE</div> |
| </div> |
|
|
| <div class="divider"></div> |
|
|
| <div class="size-header"> |
| <div class="label">SIZE</div> |
| <div class="ruler"><div></div></div> |
| </div> |
|
|
| <div class="sizes"> |
| <div>M6 / W8.5</div> |
| <div>M8 / W9</div> |
| <div>M8.5 / W9.5</div> |
| <div>M9 / W10</div> |
| <div>M9.5 / W10.5</div> |
| <div>M10 / W11</div> |
| </div> |
|
|
| <div class="cta"> |
| <div class="btn outline"> |
| <div>ADD TO BAG</div> |
| <div class="icon-bag"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="5" y="7" width="14" height="14"></rect> |
| <path d="M9 7V5c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2v2"></path> |
| <path d="M12 12v6M9 15h6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="btn solid"> |
| <div>BUY IT NOW</div> |
| <div class="arrow"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 12h14"></path> |
| <path d="M13 5l7 7-7 7"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="payments"> |
| <div class="pay-img">[IMG: Google Pay]</div> |
| <div class="pay-img">[IMG: PayPal]</div> |
| <div class="pay-img">[IMG: Klarna]</div> |
| </div> |
| </div> |
|
|
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |