| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Women • Soccer • Cleats</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; |
| position: relative; overflow: hidden; |
| background: #ffffff; |
| } |
| |
| |
| .status-bar { |
| height: 80px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 32px; |
| color: #5a5a5a; |
| font-size: 36px; |
| } |
| .status-icons { |
| display: flex; gap: 20px; align-items: center; |
| } |
| .status-dot { width: 26px; height: 26px; background:#c4c4c4; border-radius: 6px; } |
| |
| |
| .header { |
| border-bottom: 1px solid #ececec; |
| padding: 20px 24px 12px 24px; |
| } |
| .header-row { |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .title { |
| font-weight: 700; |
| font-size: 40px; |
| letter-spacing: 4px; |
| text-transform: uppercase; |
| color: #111; |
| } |
| .results { |
| text-align: center; |
| color: #777; |
| font-size: 30px; |
| margin-top: 8px; |
| padding-bottom: 8px; |
| } |
| .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; } |
| |
| |
| .filters { |
| display: flex; align-items: center; gap: 24px; |
| padding: 24px; |
| border-top: 1px solid #efefef; |
| border-bottom: 1px solid #efefef; |
| } |
| .filter-square { |
| width: 84px; height: 84px; border: 2px solid #bbb; border-radius: 10px; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .pill { |
| height: 72px; padding: 0 28px; border: 2px solid #d3d3d3; border-radius: 12px; |
| color: #777; font-weight: 700; letter-spacing: 2px; font-size: 26px; |
| display: inline-flex; align-items: center; |
| background: #fff; |
| } |
| |
| |
| .grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| column-gap: 0; |
| row-gap: 0; |
| } |
| .card { |
| background: #eef1f4; |
| border-right: 1px solid #dedede; |
| border-bottom: 1px solid #dedede; |
| } |
| .card:nth-child(2n) { border-right: none; } |
| .image-wrap { position: relative; } |
| .img-placeholder { |
| width: 100%; height: 420px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| color: #757575; |
| display: flex; align-items: center; justify-content: center; |
| font-size: 28px; |
| } |
| .heart { |
| position: absolute; right: 24px; top: 24px; width: 60px; height: 60px; |
| background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; |
| box-shadow: 0 1px 0 rgba(0,0,0,0.06); |
| } |
| .details { |
| padding: 20px 24px 28px 24px; |
| } |
| .badge-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; } |
| .badge { |
| background: #ffffff; border: 1px solid #d9d9d9; font-weight: 700; |
| font-size: 24px; color: #111; padding: 8px 12px; border-radius: 4px; |
| } |
| .price { |
| background: #ffffff; border: 1px solid #d9d9d9; font-weight: 700; |
| font-size: 28px; color: #111; padding: 10px 14px; border-radius: 6px; |
| } |
| .title-line { |
| font-size: 34px; color: #111; font-weight: 800; line-height: 1.25; margin-top: 16px; |
| } |
| .subtitle { |
| color: #555; font-size: 28px; margin-top: 12px; |
| } |
| .variant { |
| float: right; display: flex; align-items: center; gap: 8px; font-size: 28px; color: #555; margin-top: -36px; |
| } |
| .dot { width: 16px; height: 16px; border-radius: 50%; display: inline-block; } |
| .dot.red { background: #ea4335; } |
| .dot.blue { background: #4285f4; } |
| .dot.yellow { background: #fbbc05; } |
| .dot.green { background: #34a853; } |
| |
| |
| .bottom-nav { |
| position: absolute; left: 0; right: 0; bottom: 0; |
| height: 150px; background: #ffffff; border-top: 1px solid #e5e5e5; |
| display: flex; align-items: center; justify-content: space-around; |
| padding: 0 24px; |
| } |
| .nav-item { width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; position: relative; } |
| .badge-num { |
| position: absolute; bottom: 8px; right: 8px; background: #eaeaea; border: 1px solid #cfcfcf; |
| color: #333; font-size: 24px; padding: 2px 10px; border-radius: 6px; |
| } |
| .home-indicator { |
| position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); |
| width: 360px; height: 12px; background: #dcdcdc; border-radius: 6px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>3:17</div> |
| <div class="status-icons"> |
| <div class="status-dot"></div> |
| <div class="status-dot" style="width:34px;"></div> |
| <div class="status-dot" style="background:#9c9c9c;"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="header-row"> |
| <div class="icon-btn"> |
| <svg width="48" height="48" viewBox="0 0 48 48"> |
| <path d="M30 10 L14 24 L30 38" stroke="#000" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="title">WOMEN • SOCCER • CLEATS</div> |
| <div class="icon-btn"> |
| <svg width="48" height="48" viewBox="0 0 48 48"> |
| <circle cx="20" cy="20" r="12" stroke="#000" stroke-width="4" fill="none"></circle> |
| <line x1="30" y1="30" x2="42" y2="42" stroke="#000" stroke-width="4" stroke-linecap="round"></line> |
| </svg> |
| </div> |
| </div> |
| <div class="results">93 RESULTS</div> |
| </div> |
|
|
| |
| <div class="filters"> |
| <div class="filter-square"> |
| <svg width="42" height="42" viewBox="0 0 42 42"> |
| <line x1="6" y1="10" x2="36" y2="10" stroke="#555" stroke-width="3" /> |
| <line x1="12" y1="21" x2="36" y2="21" stroke="#555" stroke-width="3" /> |
| <line x1="18" y1="32" x2="36" y2="32" stroke="#555" stroke-width="3" /> |
| </svg> |
| </div> |
| <div class="pill">PRIMEKNIT</div> |
| <div class="pill">BOUNCE</div> |
| <div class="pill">LIGHTSTRIKE</div> |
| </div> |
|
|
| |
| <div class="grid"> |
|
|
| |
| <div class="card"> |
| <div class="image-wrap"> |
| <div class="img-placeholder">[IMG: Predator Accuracy+ Artificial Grass Cleats]</div> |
| <div class="heart"> |
| <svg width="34" height="34" viewBox="0 0 24 24"> |
| <path d="M12 20s-7-4.6-7-9a4.2 4.2 0 0 1 7-2.8A4.2 4.2 0 0 1 19 11c0 4.4-7 9-7 9z" fill="none" stroke="#333" stroke-width="1.8"/> |
| </svg> |
| </div> |
| </div> |
| <div class="details"> |
| <div class="badge-row"> |
| <div class="badge">NEW</div> |
| <div class="price">$300.00</div> |
| </div> |
| <div class="title-line">Predator Accuracy+ Artificial Grass Cleats</div> |
| <div class="subtitle">Performance</div> |
| <div class="variant"> |
| +1 |
| <span class="dot blue"></span><span class="dot red"></span><span class="dot yellow"></span><span class="dot green"></span> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="image-wrap"> |
| <div class="img-placeholder">[IMG: Predator Accuracy+ FG Cleats]</div> |
| <div class="heart"> |
| <svg width="34" height="34" viewBox="0 0 24 24"> |
| <path d="M12 20s-7-4.6-7-9a4.2 4.2 0 0 1 7-2.8A4.2 4.2 0 0 1 19 11c0 4.4-7 9-7 9z" fill="none" stroke="#333" stroke-width="1.8"/> |
| </svg> |
| </div> |
| </div> |
| <div class="details"> |
| <div class="badge-row"> |
| <div class="badge">NEW</div> |
| <div class="price">$300.00</div> |
| </div> |
| <div class="title-line" style="text-transform: uppercase;">Predator Accuracy+ FG</div> |
| <div class="subtitle">Performance</div> |
| <div class="variant"> |
| +3 |
| <span class="dot blue"></span><span class="dot red"></span><span class="dot yellow"></span><span class="dot green"></span> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="image-wrap"> |
| <div class="img-placeholder">[IMG: X CRAZYFAST+ FG Cleats]</div> |
| <div class="heart"> |
| <svg width="34" height="34" viewBox="0 0 24 24"> |
| <path d="M12 20s-7-4.6-7-9a4.2 4.2 0 0 1 7-2.8A4.2 4.2 0 0 1 19 11c0 4.4-7 9-7 9z" fill="none" stroke="#333" stroke-width="1.8"/> |
| </svg> |
| </div> |
| </div> |
| <div class="details"> |
| <div class="badge-row"> |
| <div class="badge" style="letter-spacing:2px;">BEST SELLER</div> |
| <div class="price">$300.00</div> |
| </div> |
| <div class="title-line">X CRAZYFAST+ FG</div> |
| <div class="subtitle">Performance</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="image-wrap"> |
| <div class="img-placeholder">[IMG: Copa Pure II+ Firm Ground Cleats]</div> |
| <div class="heart"> |
| <svg width="34" height="34" viewBox="0 0 24 24"> |
| <path d="M12 20s-7-4.6-7-9a4.2 4.2 0 0 1 7-2.8A4.2 4.2 0 0 1 19 11c0 4.4-7 9-7 9z" fill="none" stroke="#333" stroke-width="1.8"/> |
| </svg> |
| </div> |
| </div> |
| <div class="details"> |
| <div class="badge-row"> |
| <div class="badge">NEW</div> |
| <div class="price">$280.00</div> |
| </div> |
| <div class="title-line">Copa Pure II+ Firm Ground Cleats</div> |
| <div class="subtitle">Performance</div> |
| <div class="variant"> |
| +2 |
| <span class="dot blue"></span><span class="dot red"></span><span class="dot yellow"></span><span class="dot green"></span> |
| </div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item"> |
| <svg width="44" height="44" viewBox="0 0 44 44"> |
| <path d="M12 30c0-8 8-10 10-18 3 6 8 8 8 14 0 4-3 8-8 8s-10-2-10-4z" fill="none" stroke="#222" stroke-width="2"/> |
| </svg> |
| </div> |
| <div class="nav-item"> |
| <svg width="52" height="52" viewBox="0 0 48 48"> |
| <circle cx="20" cy="20" r="12" stroke="#222" stroke-width="4" fill="none"></circle> |
| <line x1="30" y1="30" x2="42" y2="42" stroke="#222" stroke-width="4" stroke-linecap="round"></line> |
| </svg> |
| </div> |
| <div class="nav-item"> |
| <svg width="50" height="50" viewBox="0 0 24 24"> |
| <path d="M12 20s-7-4.6-7-9a4.2 4.2 0 0 1 7-2.8A4.2 4.2 0 0 1 19 11c0 4.4-7 9-7 9z" fill="none" stroke="#222" stroke-width="2"/> |
| </svg> |
| <div class="badge-num">1</div> |
| </div> |
| <div class="nav-item"> |
| <svg width="48" height="48" viewBox="0 0 48 48"> |
| <rect x="6" y="6" width="16" height="16" stroke="#222" stroke-width="3" fill="none"></rect> |
| <rect x="26" y="12" width="16" height="16" stroke="#222" stroke-width="3" fill="none"></rect> |
| </svg> |
| <div class="badge-num">4</div> |
| </div> |
| <div class="nav-item"> |
| <svg width="52" height="52" viewBox="0 0 48 48"> |
| <circle cx="24" cy="24" r="16" stroke="#222" stroke-width="3" fill="none"></circle> |
| <circle cx="24" cy="24" r="6" fill="#222"></circle> |
| </svg> |
| </div> |
| </div> |
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |