| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>PUMA Slides - Product Grid</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 { |
| width: 1080px; height: 2400px; position: relative; overflow: hidden; |
| background: #ffffff; color: #111; |
| } |
| |
| |
| .status-bar { |
| height: 92px; |
| padding: 0 36px; |
| display: flex; align-items: center; justify-content: space-between; |
| font-weight: 600; font-size: 32px; |
| } |
| .status-icons { display: flex; gap: 18px; } |
| .dot { |
| width: 26px; height: 26px; border-radius: 50%; background: #3A3A3A; |
| opacity: .7; |
| } |
| .sys-icons { display: flex; gap: 22px; align-items: center; } |
| .sys-icons .icon-cell { width: 28px; height: 28px; background: #1f1f1f; border-radius: 6px; opacity: .85; } |
| |
| |
| .app-bar { |
| height: 100px; padding: 0 36px; |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .left-group, .right-group { display: flex; align-items: center; gap: 26px; } |
| .icon-btn { |
| width: 64px; height: 64px; border-radius: 14px; |
| display: flex; align-items: center; justify-content: center; |
| background: #f4f4f4; border: 1px solid #e0e0e0; |
| } |
| .icon-btn svg { width: 34px; height: 34px; stroke: #111; } |
| .cart-badge { |
| position: absolute; top: -10px; right: -10px; |
| background: #111; color: #fff; font-size: 28px; font-weight: 700; |
| width: 42px; height: 42px; border-radius: 21px; display: flex; align-items: center; justify-content: center; |
| } |
| |
| |
| .title-row { |
| padding: 10px 36px 12px 36px; |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .title-row .title { font-size: 44px; font-weight: 800; letter-spacing: .5px; } |
| .title-row .sort { font-size: 36px; font-weight: 700; color: #111; display: flex; align-items: center; gap: 16px; } |
| .sort svg { width: 30px; height: 30px; stroke: #111; } |
| |
| |
| .content { |
| padding: 18px 36px 0 36px; |
| height: 1900px; |
| overflow: hidden; |
| } |
| .grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 28px 28px; |
| } |
| .card { |
| border-radius: 18px; |
| overflow: visible; |
| } |
| .img-wrap { |
| position: relative; |
| width: 100%; height: 440px; |
| border-radius: 18px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; text-align: center; padding: 16px; |
| } |
| .badge-new { |
| position: absolute; top: 18px; left: 18px; |
| background: #111; color: #fff; font-weight: 800; font-size: 28px; padding: 10px 16px; border-radius: 10px; |
| } |
| .heart { |
| position: absolute; top: 18px; right: 18px; width: 52px; height: 52px; |
| border-radius: 50%; background: #fff; border: 2px solid #e5e5e5; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .heart svg { width: 28px; height: 28px; fill: none; stroke: #111; stroke-width: 2.2; } |
| |
| .colors-row { |
| display: flex; align-items: center; gap: 14px; |
| font-size: 32px; color: #222; margin-top: 22px; |
| } |
| .chev { |
| width: 26px; height: 26px; |
| } |
| |
| .title-price { |
| margin-top: 8px; |
| } |
| .prod-title { font-size: 40px; font-weight: 800; } |
| .price { font-size: 40px; font-weight: 800; margin-top: 12px; } |
| .promo { |
| margin-top: 16px; font-size: 34px; line-height: 1.38; color: #8A3A27; font-weight: 700; |
| } |
| |
| |
| .bottom-nav { |
| position: absolute; left: 0; bottom: 0; width: 100%; |
| height: 210px; background: #fff; border-top: 1px solid #e6e6e6; |
| display: flex; align-items: center; justify-content: space-around; |
| } |
| .nav-item { |
| display: flex; flex-direction: column; align-items: center; gap: 14px; color: #777; font-size: 32px; font-weight: 800; |
| } |
| .nav-item .nav-icon { |
| width: 64px; height: 64px; border-radius: 14px; border: 1px solid #dcdcdc; display: flex; align-items: center; justify-content: center; background: #f7f7f7; |
| } |
| .nav-item.active { color: #111; } |
| .nav-item.active .nav-icon { background: #111; border-color: #111; } |
| .nav-item.active .nav-icon svg { stroke: #fff; } |
| .nav-item .nav-icon svg { width: 36px; height: 36px; stroke: #111; } |
| |
| |
| .muted { color: #666; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div style="display:flex; align-items:center; gap:28px;"> |
| <div>10:17</div> |
| <div class="status-icons"> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="dot" style="opacity:.5;"></div> |
| </div> |
| </div> |
| <div class="sys-icons"> |
| <div class="icon-cell"></div> |
| <div class="icon-cell"></div> |
| <div class="icon-cell"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="left-group"> |
| <div class="icon-btn" title="Back"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M15 6l-6 6 6 6" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="right-group"> |
| <div class="icon-btn" title="Filters"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M4 7h16M8 12h8M10 17h4" stroke-width="2.5" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="icon-btn" style="position:relative;" title="Cart"> |
| <div class="cart-badge">1</div> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M6 6h15l-2 9H7L6 6zM7 6l-2-2H3" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="icon-btn" title="Search"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <circle cx="11" cy="11" r="7" stroke-width="2.2"/> |
| <path d="M20 20l-4-4" stroke-width="2.2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="title-row"> |
| <div class="title">44 PRODUCTS</div> |
| <div class="sort">SORT |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M10 4l-3 3 3 3M14 20l3-3-3-3" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="grid"> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="badge-new">NEW</div> |
| <div class="heart"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-5.5-7-10.1C5 7 7.1 5 9.5 5c1.6 0 2.7.8 3.5 2 .8-1.2 1.9-2 3.5-2C18.9 5 21 7 21 10.9 21 15.5 12 21 12 21z"/> |
| </svg> |
| </div> |
| <div>[IMG: Shibui Cat Slides - light sage foam]</div> |
| </div> |
|
|
| <div class="colors-row"> |
| <div>3 Colors</div> |
| <svg class="chev" viewBox="0 0 24 24" fill="none"> |
| <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| <div class="title-price"> |
| <div class="prod-title">Shibui Cat Slides</div> |
| <div class="price">$45.00</div> |
| <div class="promo"> |
| TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART. |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="badge-new">NEW</div> |
| <div class="heart"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-5.5-7-10.1C5 7 7.1 5 9.5 5c1.6 0 2.7.8 3.5 2 .8-1.2 1.9-2 3.5-2C18.9 5 21 7 21 10.9 21 15.5 12 21 12 21z"/> |
| </svg> |
| </div> |
| <div>[IMG: Softride Slides - white/black strap and outsole view]</div> |
| </div> |
|
|
| <div class="colors-row"> |
| <div>3 Colors</div> |
| <svg class="chev" viewBox="0 0 24 24" fill="none"> |
| <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| <div class="title-price"> |
| <div class="prod-title">Softride Slides</div> |
| <div class="price">$45.00</div> |
| <div class="promo"> |
| TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART. |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="badge-new">NEW</div> |
| <div class="heart"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-5.5-7-10.1C5 7 7.1 5 9.5 5c1.6 0 2.7.8 3.5 2 .8-1.2 1.9-2 3.5-2C18.9 5 21 7 21 10.9 21 15.5 12 21 12 21z"/> |
| </svg> |
| </div> |
| <div>[IMG: PUMA Slides - green strap with white logo, black footbed]</div> |
| </div> |
|
|
| <div class="colors-row"> |
| <div>5 Colors</div> |
| <svg class="chev" viewBox="0 0 24 24" fill="none"> |
| <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| <div class="title-price"> |
| <div class="prod-title">Leadcat 2.0</div> |
| <div class="price">$45.00</div> |
| <div class="promo"> |
| TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART. |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="heart"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21s-7-5.5-7-10.1C5 7 7.1 5 9.5 5c1.6 0 2.7.8 3.5 2 .8-1.2 1.9-2 3.5-2C18.9 5 21 7 21 10.9 21 15.5 12 21 12 21z"/> |
| </svg> |
| </div> |
| <div>[IMG: Shibui Cat Slides - triple black profile]</div> |
| </div> |
|
|
| <div class="colors-row"> |
| <div>3 Colors</div> |
| <svg class="chev" viewBox="0 0 24 24" fill="none"> |
| <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| <div class="title-price"> |
| <div class="prod-title">Shibui Cat Slides</div> |
| <div class="price">$45.00</div> |
| </div> |
| </div> |
|
|
| </div> |
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M3 11l9-7 9 7v9H6v-5" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div>HOME</div> |
| </div> |
|
|
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M7 4h10v6H7zM4 14h16v6H4z" stroke-width="2.2" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div>DROPS</div> |
| </div> |
|
|
| <div class="nav-item active"> |
| <div class="nav-icon"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M4 6h16l-3 12H7L4 6z" stroke-width="2.2" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div>SHOP</div> |
| </div> |
|
|
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M6 6h15l-2 9H7L6 6zM8 21a1 1 0 100-2 1 1 0 000 2zm9 0a1 1 0 100-2 1 1 0 000 2z" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div>CART</div> |
| </div> |
|
|
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <circle cx="12" cy="8" r="4" stroke-width="2.2"/> |
| <path d="M4 20c1.8-4 6.2-4 8-4s6.2 0 8 4" stroke-width="2.2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div>ACCOUNT</div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |