| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Superstar Shoes - UI Mock</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; } |
| #render-target { |
| position: relative; |
| overflow: hidden; |
| width: 1080px; |
| height: 2400px; |
| background: #ffffff; |
| color: #111; |
| } |
| |
| |
| .status-bar { |
| height: 110px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| font-weight: 600; |
| font-size: 40px; |
| color: #111; |
| } |
| .status-left { display: flex; align-items: center; gap: 26px; } |
| .status-right { margin-left: auto; display: flex; align-items: center; gap: 26px; color: #555; font-weight: 500; } |
| |
| .icon { |
| width: 48px; height: 48px; display: inline-block; |
| } |
| .icon svg { width: 100%; height: 100%; } |
| |
| |
| .top-bar { |
| height: 140px; |
| padding: 0 28px; |
| display: flex; |
| align-items: center; |
| border-bottom: 1px solid #eee; |
| } |
| .back-btn { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; } |
| .page-title { |
| flex: 1; |
| text-align: center; |
| font-size: 44px; |
| font-weight: 700; |
| letter-spacing: 2px; |
| } |
| .search-btn { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; } |
| |
| .results { |
| text-align: center; |
| font-size: 32px; |
| color: #777; |
| margin-top: 6px; |
| letter-spacing: 1px; |
| } |
| |
| |
| .filters { |
| padding: 22px 28px 18px 28px; |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| border-bottom: 1px solid #eee; |
| } |
| .chip { |
| padding: 22px 28px; |
| border: 2px solid #ddd; |
| border-radius: 12px; |
| font-size: 34px; |
| color: #555; |
| background: #fafafa; |
| } |
| .filter-btn { |
| width: 76px; height: 76px; |
| border: 2px solid #ddd; border-radius: 12px; |
| display: flex; align-items: center; justify-content: center; |
| background: #fafafa; |
| margin-right: 6px; |
| } |
| |
| |
| .grid { |
| padding: 22px; |
| display: flex; |
| flex-wrap: wrap; |
| gap: 22px; |
| } |
| .card { |
| width: calc(50% - 11px); |
| background: #fff; |
| border-radius: 4px; |
| overflow: visible; |
| } |
| .img-wrap { |
| position: relative; |
| height: 520px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 32px; |
| text-align: center; |
| padding: 18px; |
| } |
| .favorite { |
| position: absolute; |
| right: 22px; |
| top: 22px; |
| width: 76px; height: 76px; |
| border-radius: 50%; |
| background: #fff; |
| border: 1px solid #DDD; |
| display: flex; align-items: center; justify-content: center; |
| box-shadow: 0 1px 2px rgba(0,0,0,0.08); |
| } |
| .best-seller { |
| display: inline-block; |
| margin-top: 18px; |
| margin-left: 18px; |
| padding: 14px 18px; |
| font-size: 30px; |
| font-weight: 700; |
| letter-spacing: 2px; |
| border: 2px solid #111; |
| } |
| .price-tag { |
| display: inline-block; |
| margin-top: 18px; |
| margin-left: 18px; |
| padding: 14px 18px; |
| font-size: 34px; |
| font-weight: 700; |
| background: #f6f6f6; |
| border-radius: 8px; |
| border: 1px solid #ddd; |
| } |
| .card-body { |
| padding: 22px 22px 26px 22px; |
| } |
| .product-title { |
| font-size: 40px; |
| font-weight: 800; |
| margin-bottom: 10px; |
| } |
| .subtitle { |
| font-size: 32px; |
| color: #666; |
| } |
| .meta-row { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-size: 34px; |
| color: #666; |
| margin-top: 14px; |
| } |
| .dots { display: inline-flex; gap: 8px; margin-left: 8px; } |
| .dot { width: 16px; height: 16px; border-radius: 50%; } |
| .dot.red { background: #e53935; } |
| .dot.blue { background: #1e88e5; } |
| .dot.yellow { background: #fbc02d; } |
| .dot.green { background: #43a047; } |
| |
| |
| .bottom-nav { |
| position: absolute; |
| left: 0; right: 0; bottom: 0; |
| height: 160px; |
| border-top: 1px solid #e6e6e6; |
| background: #f7f7f7; |
| display: flex; |
| align-items: center; |
| justify-content: space-around; |
| padding: 0 40px; |
| } |
| .nav-item { |
| width: 100px; height: 100px; |
| display: flex; align-items: center; justify-content: center; |
| color: #222; |
| } |
| |
| |
| .img-label-small { font-size: 28px; color: #757575; } |
| |
| |
| .soft-divider { height: 22px; } |
| |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div>11:01</div> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"><path d="M3 11h18v2H3z" fill="#888"/></svg> |
| </div> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="5" fill="#888"/></svg> |
| </div> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"><rect x="5" y="4" width="14" height="16" rx="2" fill="#888"/></svg> |
| </div> |
| </div> |
| <div class="status-right"> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"><path d="M3 12h14l4-4v8l-4-4H3z" fill="#777"/></svg> |
| </div> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"><rect x="6" y="3" width="12" height="18" rx="2" fill="#777"/></svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="top-bar"> |
| <div class="back-btn"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M15 5l-7 7 7 7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div> |
| <div class="page-title">SUPERSTAR SHOES</div> |
| <div class="results">128 RESULTS</div> |
| </div> |
| <div class="search-btn"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7" stroke="#111" stroke-width="2" fill="none"/> |
| <path d="M21 21l-5-5" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="filters"> |
| <div class="filter-btn"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M4 6h16M7 12h10M10 18h4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="chip">KIDS</div> |
| <div class="chip">MEN</div> |
| <div class="chip">WOMEN</div> |
| <div class="chip">UNISEX</div> |
| </div> |
|
|
| |
| <div class="grid"> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="favorite"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/> |
| </svg> |
| </div> |
| [IMG: White Adidas Superstar Shoe] |
| </div> |
| <div class="best-seller">BEST SELLER</div> |
| <div class="price-tag">$100.00</div> |
| <div class="card-body"> |
| <div class="product-title">Superstar Shoes</div> |
| <div class="meta-row"> |
| <div class="subtitle">Men's Originals</div> |
| <div> |
| +31 |
| <span class="dots"> |
| <span class="dot.blue"></span> |
| <span class="dot.red"></span> |
| </span> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="favorite"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/> |
| </svg> |
| </div> |
| [IMG: Kids Group Wearing Adidas on Stage] |
| </div> |
| <div class="best-seller">BEST SELLER</div> |
| <div class="price-tag">$80.00</div> |
| <div class="card-body"> |
| <div class="product-title">Superstar Shoes</div> |
| <div class="meta-row"> |
| <div class="subtitle">Kids Unisex Originals</div> |
| <div> |
| +3 |
| <span class="dots"> |
| <span class="dot.yellow"></span> |
| <span class="dot.blue"></span> |
| </span> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="favorite" style="right:22px; top:22px;"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/> |
| </svg> |
| </div> |
| [IMG: Black Adidas Superstar Shoe] |
| </div> |
| <div class="price-tag">$70.00</div> |
| <div class="card-body"> |
| <div class="product-title">Superstar Shoes</div> |
| <div class="meta-row"> |
| <div class="subtitle">Kids Unisex Originals</div> |
| <div> |
| +3 |
| <span class="dots"> |
| <span class="dot.red"></span> |
| <span class="dot.blue"></span> |
| </span> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="favorite"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/> |
| </svg> |
| </div> |
| <div class="img-label-small">[IMG: Person wearing Adidas Superstar]</div> |
| </div> |
| <div class="price-tag">$60.00</div> |
| <div class="card-body"> |
| <div class="product-title">Superstar Shoes</div> |
| <div class="meta-row"> |
| <div class="subtitle">Kids Unisex Originals</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card" style="height: 420px;"> |
| <div class="img-wrap" style="height: 260px;"> |
| <div class="favorite"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/> |
| </svg> |
| </div> |
| [IMG: Lifestyle photo - pants closeup] |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 2l2 5-2 3-2-3 2-5zM7 14c0-3 3-5 5-5s5 2 5 5-3 6-5 6-5-3-5-6z" fill="#222"/> |
| </svg> |
| </div> |
| <div class="nav-item"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7" stroke="#222" stroke-width="2" fill="none"/> |
| <path d="M21 21l-5-5" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="nav-item"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#222" stroke-width="1.8"/> |
| </svg> |
| </div> |
| <div class="nav-item"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M6 6h12l-2 12H8L6 6zm3 16a3 3 0 106 0" fill="#222"/> |
| </svg> |
| </div> |
| <div class="nav-item"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="12" cy="8" r="4" fill="#222"/> |
| <path d="M4 22c0-4 4-7 8-7s8 3 8 7" fill="#222"/> |
| </svg> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |