| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Refine Results Drawer</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } |
| #render-target { |
| width: 1440px; |
| height: 3120px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| color: #111; |
| } |
| |
| |
| .status-bar { |
| height: 120px; |
| padding: 0 60px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-size: 46px; |
| color: #222; |
| } |
| .status-left { |
| display: flex; |
| align-items: center; |
| gap: 40px; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 40px; |
| } |
| .dot { width: 22px; height: 22px; background:#000; border-radius:50%; display:inline-block; } |
| .wifi-icon, .battery-icon { |
| width: 64px; height: 40px; |
| } |
| |
| |
| .header { |
| height: 160px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 60px; |
| border-bottom: 1px solid #eee; |
| } |
| .clear-all { |
| font-size: 52px; |
| letter-spacing: 3px; |
| font-weight: 700; |
| } |
| .title { |
| font-size: 56px; |
| font-weight: 700; |
| letter-spacing: 2px; |
| color: #111; |
| } |
| .close-btn { |
| width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; |
| } |
| .close-btn svg { width: 72px; height: 72px; } |
| |
| .content { |
| padding: 40px 60px 300px 60px; |
| } |
| |
| |
| .section-title { |
| font-size: 56px; |
| font-weight: 700; |
| margin: 60px 0 30px 0; |
| } |
| |
| |
| .radio-list { display: grid; grid-template-columns: 1fr; gap: 32px; } |
| .radio-row { |
| display: flex; |
| align-items: center; |
| gap: 32px; |
| font-size: 54px; |
| } |
| .radio { |
| width: 58px; height: 58px; border-radius: 50%; |
| border: 4px solid #bbb; box-sizing: border-box; |
| } |
| |
| |
| .collection-head { |
| display: flex; |
| align-items: center; |
| gap: 20px; |
| } |
| .count-badge { |
| background: #000; color: #fff; font-size: 40px; font-weight: 700; |
| padding: 10px 18px; border-radius: 10px; |
| } |
| .tag-grid { |
| display: flex; flex-wrap: wrap; gap: 26px; margin-top: 24px; |
| } |
| .pill { |
| padding: 28px 36px; |
| border: 4px solid #d9d9d9; |
| border-radius: 16px; |
| font-size: 48px; |
| color: #555; |
| background: #fff; |
| } |
| .pill.selected { |
| background: #111; |
| color: #fff; |
| border-color: #111; |
| } |
| |
| |
| .cta-bar { |
| position: absolute; |
| left: 30px; |
| right: 30px; |
| bottom: 40px; |
| height: 180px; |
| background: #000; |
| color: #fff; |
| border-radius: 8px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 60px; |
| box-shadow: 0 10px 40px rgba(0,0,0,0.15); |
| } |
| .cta-text { font-size: 56px; letter-spacing: 2px; } |
| .arrow { |
| width: 80px; height: 80px; |
| } |
| |
| |
| .sale-pill { |
| width: 220px; |
| padding: 26px 36px; |
| border: 4px solid #d9d9d9; |
| border-radius: 16px; |
| font-size: 46px; |
| color: #666; |
| display: inline-block; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div>2:20</div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| </div> |
| <div class="status-icons"> |
| <svg class="wifi-icon" viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2"> |
| <path d="M2 8c5-4 15-4 20 0" /> |
| <path d="M6 12c3-2 9-2 12 0" /> |
| <path d="M10.5 16.5c1.5-1 3.5-1 5 0" /> |
| <circle cx="12" cy="20" r="1.8" fill="#444"></circle> |
| </svg> |
| <svg class="battery-icon" viewBox="0 0 28 16" fill="none" stroke="#444" stroke-width="2"> |
| <rect x="1" y="2" width="22" height="12" rx="2"></rect> |
| <rect x="3" y="4" width="16" height="8" fill="#444"></rect> |
| <rect x="24" y="6" width="3" height="4" rx="1" fill="#444"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="clear-all">CLEAR ALL</div> |
| <div class="title">REFINE RESULTS</div> |
| <div class="close-btn"> |
| <svg viewBox="0 0 24 24" stroke="#111" stroke-width="2" fill="none"> |
| <path d="M5 5 L19 19"></path> |
| <path d="M19 5 L5 19"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="content"> |
|
|
| |
| <div class="section-title">Sort by</div> |
| <div class="radio-list"> |
| <div class="radio-row"><div class="radio"></div><div>Price (low/high)</div></div> |
| <div class="radio-row"><div class="radio"></div><div>Newest first</div></div> |
| <div class="radio-row"><div class="radio"></div><div>Top Sellers</div></div> |
| <div class="radio-row"><div class="radio"></div><div>Price (high/low)</div></div> |
| <div class="radio-row"><div class="radio"></div><div>Customer Top Rated</div></div> |
| </div> |
|
|
| |
| <div class="section-title collection-head"> |
| <span>Collection</span> |
| <span class="count-badge">1</span> |
| </div> |
|
|
| <div class="tag-grid"> |
| <div class="pill">ULTRABOOST</div> |
| <div class="pill">ADIZERO</div> |
| <div class="pill">ADILETTE</div> |
| <div class="pill selected">NMD</div> |
|
|
| <div class="pill">SUPERSTAR</div> |
| <div class="pill">FORUM</div> |
| <div class="pill">STAN SMITH</div> |
| <div class="pill">PREDATOR</div> |
| <div class="pill">X</div> |
|
|
| <div class="pill">SAMBA</div> |
| <div class="pill">GAZELLE</div> |
| <div class="pill">RIVALRY</div> |
| <div class="pill">OZ</div> |
| <div class="pill">CAMPUS</div> |
|
|
| <div class="pill">COPA</div> |
| <div class="pill">ADIFOM</div> |
| <div class="pill">FREE HIKER</div> |
| <div class="pill">XPLR</div> |
| <div class="pill">ICON</div> |
|
|
| <div class="pill">LITE RACER</div> |
| <div class="pill">NIZZA</div> |
| <div class="pill">4DFWD</div> |
| <div class="pill">DURAMO</div> |
|
|
| <div class="pill">ADVENTURE</div> |
| <div class="pill">RETROPY</div> |
| <div class="pill">AVRYN</div> |
| <div class="pill">SWIFT</div> |
| <div class="pill">RDY</div> |
|
|
| <div class="pill">TRAE</div> |
| <div class="pill">AFTERBURNER</div> |
| </div> |
|
|
| |
| <div class="section-title" style="margin-top: 80px;">Sale</div> |
| <span class="sale-pill">SALE</span> |
|
|
| </div> |
|
|
| |
| <div class="cta-bar"> |
| <div class="cta-text">100 RESULTS</div> |
| <svg class="arrow" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2"> |
| <path d="M5 12h12"></path> |
| <path d="M12 5l7 7-7 7"></path> |
| </svg> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |