| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Shop UI</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| } |
| |
| .header { |
| padding: 80px 64px 40px 64px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .title { |
| font-size: 52px; |
| font-weight: 800; |
| letter-spacing: 2px; |
| color: #111; |
| } |
| .icon-btn { |
| width: 72px; |
| height: 72px; |
| } |
| .search-row { |
| padding: 24px 64px 24px 64px; |
| border-bottom: 1px solid #ededed; |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .search-placeholder { |
| font-size: 36px; |
| color: #9e9e9e; |
| } |
| |
| .tabs { |
| display: flex; |
| gap: 48px; |
| padding: 32px 64px 16px 64px; |
| font-size: 32px; |
| font-weight: 700; |
| letter-spacing: 3px; |
| color: #222; |
| } |
| .tabs .tab { color: #222; } |
| .tabs .active { color: #111; } |
| .tabs-underline { |
| height: 8px; |
| width: 140px; |
| background: #111; |
| margin-left: 64px; |
| } |
| |
| .promo { |
| padding: 220px 64px 80px 64px; |
| } |
| .promo h3 { |
| margin: 0 0 24px 0; |
| font-size: 36px; |
| font-weight: 800; |
| letter-spacing: 6px; |
| color: #222; |
| } |
| .promo p { |
| margin: 0; |
| font-size: 34px; |
| color: #666; |
| } |
| |
| .section { |
| border-top: 1px solid #f0f0f0; |
| padding: 120px 64px 120px 64px; |
| } |
| .section h2 { |
| margin: 0; |
| font-size: 60px; |
| font-weight: 800; |
| letter-spacing: 4px; |
| color: #222; |
| } |
| |
| .shop-by { |
| border-top: 1px solid #f0f0f0; |
| padding: 64px; |
| } |
| .shop-by .label { |
| font-size: 32px; |
| font-weight: 800; |
| letter-spacing: 3px; |
| color: #222; |
| margin-bottom: 32px; |
| } |
| .chip-row { |
| display: flex; |
| gap: 24px; |
| } |
| .chip { |
| background: #000; |
| color: #fff; |
| padding: 36px 40px; |
| border-radius: 4px; |
| font-size: 34px; |
| font-weight: 800; |
| letter-spacing: 3px; |
| min-width: 320px; |
| text-align: center; |
| } |
| |
| .bottom-nav { |
| position: absolute; |
| left: 0; |
| right: 0; |
| bottom: 88px; |
| height: 160px; |
| display: flex; |
| align-items: center; |
| justify-content: space-around; |
| border-top: 1px solid #eeeeee; |
| background: #ffffff; |
| padding: 0 24px; |
| } |
| .nav-icon { |
| position: relative; |
| width: 72px; |
| height: 72px; |
| } |
| .badge { |
| position: absolute; |
| right: -6px; |
| bottom: -10px; |
| background: #e0e0e0; |
| color: #111; |
| font-size: 28px; |
| font-weight: 800; |
| width: 44px; |
| height: 44px; |
| border-radius: 8px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| border: 1px solid #cfcfcf; |
| } |
| |
| |
| .img-ph { |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| color: #757575; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="header"> |
| <div class="title">SHOP</div> |
| <svg class="icon-btn" viewBox="0 0 24 24"> |
| <circle cx="12" cy="8" r="4" fill="none" stroke="#111" stroke-width="2"></circle> |
| <path d="M4 22c0-4.4 3.6-8 8-8s8 3.6 8 8" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| </div> |
|
|
| |
| <div class="search-row"> |
| <svg width="56" height="56" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7" fill="none" stroke="#111" stroke-width="2"></circle> |
| <path d="M20 20l-4-4" stroke="#111" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| <div class="search-placeholder">Find products...</div> |
| </div> |
|
|
| |
| <div class="tabs"> |
| <div class="tab active">WOMEN</div> |
| <div class="tab">MEN</div> |
| <div class="tab">KIDS</div> |
| </div> |
| <div class="tabs-underline"></div> |
|
|
| |
| <div class="promo"> |
| <h3>SCORE UP TO 60% OFF</h3> |
| <p>Save big on warm weather styles.</p> |
| </div> |
|
|
| |
| <div class="section"> |
| <h2>SHOES</h2> |
| </div> |
| <div class="section"> |
| <h2>CLOTHING</h2> |
| </div> |
| <div class="section"> |
| <h2>ACCESSORIES</h2> |
| </div> |
|
|
| |
| <div class="shop-by"> |
| <div class="label">SHOP BY</div> |
| <div class="chip-row"> |
| <div class="chip">BACK TO SCHOOL</div> |
| <div class="chip">NEW & TRENDING</div> |
| <div class="chip">ONLY AT OUR STORE</div> |
| </div> |
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| |
| <svg class="nav-icon" viewBox="0 0 24 24"> |
| <path d="M12 2c2 4-1 4 2 7 1.5 1.5 2 3.3 2 5 0 3.3-2.7 6-6 6s-6-2.7-6-6c0-3.6 2.7-5.5 5-7.5 1.5-1.3 2-2.5 3-4.5z" fill="none" stroke="#cfcfcf" stroke-width="2" stroke-linejoin="round"></path> |
| </svg> |
|
|
| |
| <svg class="nav-icon" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="6" fill="none" stroke="#cfcfcf" stroke-width="2"></circle> |
| <path d="M20 20l-3.5-3.5" stroke="#cfcfcf" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
|
|
| |
| <div style="position: relative;"> |
| <svg class="nav-icon" viewBox="0 0 24 24"> |
| <path d="M12 20s-7-4.6-7-9.4C5 8 6.9 6 9.2 6c1.4 0 2.5.7 3.2 1.7C13.1 6.7 14.2 6 15.6 6 17.9 6 19.8 8 19 10.6 19 15.4 12 20 12 20z" fill="none" stroke="#cfcfcf" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| <div class="badge">1</div> |
| </div> |
|
|
| |
| <div style="position: relative;"> |
| <svg class="nav-icon" viewBox="0 0 24 24"> |
| <path d="M6 9h12l-1 11H7L6 9z" fill="none" stroke="#cfcfcf" stroke-width="2"></path> |
| <path d="M9 9V7a3 3 0 016 0v2" fill="none" stroke="#cfcfcf" stroke-width="2"></path> |
| </svg> |
| <div class="badge">4</div> |
| </div> |
|
|
| |
| <svg class="nav-icon" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="8" fill="none" stroke="#cfcfcf" stroke-width="2"></circle> |
| <circle cx="12" cy="12" r="4" fill="none" stroke="#cfcfcf" stroke-width="2"></circle> |
| <circle cx="12" cy="12" r="1.5" fill="#cfcfcf"></circle> |
| </svg> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |