| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Switch FWD Running Shoes - Ratings & Reviews</title> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| background: transparent; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| color: #111; |
| } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #f3f3f3; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| box-sizing: border-box; |
| } |
| .status-bar .left-icons { |
| display: flex; |
| gap: 24px; |
| align-items: center; |
| color: #444; |
| font-size: 28px; |
| letter-spacing: 1px; |
| } |
| .status-bar .right-icons { |
| margin-left: auto; |
| display: flex; |
| gap: 20px; |
| align-items: center; |
| } |
| .icon { |
| width: 36px; |
| height: 36px; |
| } |
| |
| |
| .header { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 1080px; |
| padding: 40px 48px; |
| box-sizing: border-box; |
| background: #ffffff; |
| display: flex; |
| align-items: center; |
| } |
| .title { |
| font-weight: 800; |
| font-size: 46px; |
| letter-spacing: 2px; |
| } |
| .price-pill { |
| margin-left: auto; |
| background: #000; |
| color: #fff; |
| font-weight: 700; |
| font-size: 36px; |
| padding: 18px 28px; |
| border-radius: 18px; |
| } |
| .close-btn { |
| margin-left: 24px; |
| width: 60px; |
| height: 60px; |
| border: 2px solid #111; |
| border-radius: 50%; |
| display: grid; |
| place-items: center; |
| } |
| .close-btn svg { |
| width: 28px; |
| height: 28px; |
| } |
| |
| |
| .color-carousel { |
| position: absolute; |
| top: 220px; |
| left: 0; |
| width: 1080px; |
| padding: 24px 48px 24px 48px; |
| box-sizing: border-box; |
| display: flex; |
| gap: 48px; |
| background: #ffffff; |
| } |
| .thumb { |
| width: 170px; |
| height: 110px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 24px; |
| border-radius: 14px; |
| } |
| .thumb.active { |
| outline: 4px solid #cfcfcf; |
| } |
| |
| |
| .hero { |
| position: absolute; |
| top: 360px; |
| left: 0; |
| width: 1080px; |
| height: 300px; |
| background: #E0E0E0; |
| border-top: 1px solid #BDBDBD; |
| border-bottom: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 28px; |
| } |
| |
| |
| .content { |
| position: absolute; |
| top: 660px; |
| left: 0; |
| width: 1080px; |
| padding: 60px 60px 0 60px; |
| box-sizing: border-box; |
| background: #fff; |
| } |
| .section-title { |
| font-size: 64px; |
| font-weight: 800; |
| letter-spacing: 4px; |
| margin-bottom: 40px; |
| } |
| |
| .rating-summary { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 20px; |
| align-items: start; |
| } |
| .big-score { |
| font-size: 140px; |
| font-weight: 800; |
| line-height: 1; |
| } |
| .stars { |
| margin-top: 16px; |
| display: flex; |
| gap: 14px; |
| } |
| .stars svg { |
| width: 42px; |
| height: 42px; |
| fill: #000; |
| } |
| .reviews-link { |
| margin-top: 20px; |
| font-size: 32px; |
| font-weight: 700; |
| letter-spacing: 2px; |
| border-bottom: 6px solid #000; |
| display: inline-block; |
| padding-bottom: 8px; |
| } |
| |
| .recommend { |
| display: flex; |
| align-items: baseline; |
| gap: 16px; |
| } |
| .recommend .percent { |
| font-size: 140px; |
| font-weight: 800; |
| line-height: 1; |
| } |
| .recommend .caption { |
| font-size: 36px; |
| color: #222; |
| max-width: 420px; |
| } |
| |
| |
| .scale { |
| margin-top: 60px; |
| } |
| .scale .label { |
| font-size: 36px; |
| font-weight: 800; |
| letter-spacing: 3px; |
| margin-bottom: 22px; |
| } |
| .track { |
| position: relative; |
| height: 12px; |
| background: #e6e6e6; |
| border-radius: 8px; |
| overflow: visible; |
| } |
| .indicator { |
| position: absolute; |
| top: -8px; |
| width: 120px; |
| height: 20px; |
| background: #111; |
| border-radius: 10px; |
| } |
| .scale-grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr 1fr; |
| font-size: 32px; |
| color: #333; |
| margin-top: 18px; |
| } |
| |
| |
| .meter { |
| margin-top: 50px; |
| } |
| .meter .label { |
| font-size: 36px; |
| font-weight: 800; |
| letter-spacing: 3px; |
| margin-bottom: 20px; |
| } |
| .meter .bar { |
| position: relative; |
| height: 14px; |
| background: #e6e6e6; |
| border-radius: 8px; |
| } |
| .meter .progress { |
| position: absolute; |
| left: 0; |
| top: 0; |
| height: 14px; |
| background: #111; |
| border-radius: 8px; |
| } |
| .meter .extremes { |
| display: flex; |
| justify-content: space-between; |
| margin-top: 20px; |
| font-size: 34px; |
| color: #333; |
| } |
| |
| |
| .complete { |
| margin-top: 80px; |
| } |
| .complete-title { |
| font-size: 60px; |
| font-weight: 800; |
| letter-spacing: 3px; |
| margin-bottom: 30px; |
| } |
| .look-grid { |
| display: grid; |
| grid-template-columns: repeat(3, 1fr); |
| gap: 30px; |
| } |
| .look-item { |
| width: 100%; |
| height: 420px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 28px; |
| border-radius: 16px; |
| } |
| |
| |
| .gesture-bar { |
| position: absolute; |
| bottom: 20px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 600px; |
| height: 14px; |
| background: #000; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="left-icons"> |
| <span>5:14</span> |
| |
| <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#ddd"/></svg> |
| <svg class="icon" viewBox="0 0 24 24"><rect x="3" y="7" width="18" height="10" rx="2" fill="#ddd"/></svg> |
| <svg class="icon" viewBox="0 0 24 24"><path d="M3 18h18L12 6z" fill="#ddd"/></svg> |
| </div> |
| <div class="right-icons"> |
| <svg class="icon" viewBox="0 0 24 24"><path d="M17 4H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V6a2 2 0 00-2-2z" fill="#ddd"/></svg> |
| <svg class="icon" viewBox="0 0 24 24"><path d="M3 12h18" stroke="#ddd" stroke-width="3"/></svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="title">SWITCH FWD RUNNING SHOES</div> |
| <div class="price-pill">$140.00</div> |
| <div class="close-btn" aria-label="Close"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 5L19 19M19 5L5 19" stroke="#111" stroke-width="3" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="color-carousel"> |
| <div class="thumb">[IMG: Lime Shoe]</div> |
| <div class="thumb">[IMG: Pink Shoe]</div> |
| <div class="thumb">[IMG: Black Shoe]</div> |
| <div class="thumb">[IMG: Blush Shoe]</div> |
| <div class="thumb active">[IMG: Grey/Green Shoe]</div> |
| </div> |
|
|
| |
| <div class="hero">[IMG: Running shoe on pavement - hero banner]</div> |
|
|
| |
| <div class="content"> |
| <div class="section-title">RATINGS & REVIEWS</div> |
|
|
| <div class="rating-summary"> |
| <div> |
| <div class="big-score">4.7</div> |
| <div class="stars" aria-label="4.7 out of 5 stars"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.3-6.2 3.3 1.2-7-5-4.9 6.9-1z"/></svg> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.3-6.2 3.3 1.2-7-5-4.9 6.9-1z"/></svg> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.3-6.2 3.3 1.2-7-5-4.9 6.9-1z"/></svg> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.3-6.2 3.3 1.2-7-5-4.9 6.9-1z"/></svg> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.3-6.2 3.3 1.2-7-5-4.9 6.9-1z"/></svg> |
| </div> |
| <div class="reviews-link">57 REVIEWS</div> |
| </div> |
|
|
| <div class="recommend"> |
| <div class="percent">96 %</div> |
| <div class="caption">of customers recommend this product</div> |
| </div> |
| </div> |
|
|
| |
| <div class="scale"> |
| <div class="label">SIZE</div> |
| <div class="track"> |
| <div class="indicator" style="left: 460px;"></div> |
| </div> |
| <div class="scale-grid"> |
| <div>Too small</div> |
| <div style="text-align:center;">Perfect</div> |
| <div style="text-align:right;">Too large</div> |
| </div> |
| </div> |
|
|
| |
| <div class="scale"> |
| <div class="label">WIDTH</div> |
| <div class="track"> |
| <div class="indicator" style="left: 380px;"></div> |
| </div> |
| <div class="scale-grid"> |
| <div>Too narrow</div> |
| <div style="text-align:center;">Perfect</div> |
| <div style="text-align:right;">Too wide</div> |
| </div> |
| </div> |
|
|
| |
| <div class="meter"> |
| <div class="label">COMFORT</div> |
| <div class="bar"> |
| <div class="progress" style="width: 88%;"></div> |
| </div> |
| <div class="extremes"> |
| <div>Uncomfortable</div> |
| <div>Comfortable</div> |
| </div> |
| </div> |
|
|
| |
| <div class="meter"> |
| <div class="label">QUALITY</div> |
| <div class="bar"> |
| <div class="progress" style="width: 90%;"></div> |
| </div> |
| <div class="extremes"> |
| <div>Poor</div> |
| <div>Perfect</div> |
| </div> |
| </div> |
|
|
| |
| <div class="complete"> |
| <div class="complete-title">COMPLETE THE LOOK</div> |
| <div class="look-grid"> |
| <div class="look-item">[IMG: Headbands set]</div> |
| <div class="look-item">[IMG: Blue training tank]</div> |
| <div class="look-item">[IMG: Grey training tee]</div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |