| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>PUMA Slides Grid</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; |
| position: relative; overflow: hidden; |
| background: #ffffff; color: #111; |
| } |
| |
| |
| .status { |
| position: absolute; top: 16px; left: 36px; right: 36px; height: 44px; |
| display: flex; align-items: center; justify-content: space-between; |
| font-weight: 600; font-size: 38px; |
| } |
| .status .dots { display: flex; gap: 26px; align-items: center; } |
| .dot { |
| width: 20px; height: 20px; background:#333; border-radius:50%; |
| display:inline-block; |
| } |
| |
| |
| .top-controls { |
| position: absolute; top: 92px; left: 20px; right: 20px; height: 72px; |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .back-btn { |
| display: flex; align-items: center; gap: 10px; padding: 12px 16px; |
| } |
| .icon-btn { |
| position: relative; width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center; |
| } |
| .badge { |
| position: absolute; top: -6px; right: -2px; |
| min-width: 36px; height: 36px; padding: 0 8px; |
| background: #000; color:#fff; border-radius: 18px; |
| font-size: 24px; line-height: 36px; text-align: center; |
| } |
| |
| |
| .section-header { |
| position: absolute; top: 188px; left: 48px; right: 48px; height: 80px; |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .section-title { |
| font-size: 56px; font-weight: 800; letter-spacing: 0.5px; |
| } |
| .sort { |
| display: flex; align-items: center; gap: 16px; font-size: 40px; font-weight: 700; |
| } |
| |
| |
| .grid { |
| position: absolute; top: 280px; left: 48px; right: 48px; bottom: 180px; |
| } |
| .cards { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| column-gap: 30px; row-gap: 52px; |
| } |
| .card { |
| position: relative; min-height: 780px; |
| } |
| .img-wrap { |
| position: relative; width: 100%; height: 420px; background:#E0E0E0; border:1px solid #BDBDBD; |
| display:flex; align-items:center; justify-content:center; color:#757575; font-size: 34px; |
| } |
| .label-new { |
| position: absolute; top: -22px; left: 0; |
| background:#0a0a0a; color:#fff; font-size: 30px; font-weight: 800; |
| padding: 10px 18px; |
| } |
| .heart { |
| position: absolute; top: -18px; right: 10px; width: 64px; height: 64px; display:flex; align-items:center; justify-content:center; |
| } |
| .colors { |
| margin-top: 22px; font-size: 36px; color:#333; display:flex; align-items:center; gap: 10px; |
| } |
| .title { |
| margin-top: 16px; font-size: 44px; font-weight: 800; |
| } |
| .price { |
| margin-top: 12px; font-size: 44px; font-weight: 800; |
| } |
| .promo { |
| margin-top: 18px; font-size: 34px; color:#8A2D13; line-height: 1.45; font-weight: 700; |
| } |
| |
| |
| .bottom-nav { |
| position: absolute; left: 0; right: 0; bottom: 0; height: 160px; |
| border-top: 1px solid #ddd; background:#fff; |
| display:flex; align-items:center; justify-content: space-around; |
| } |
| .tab { |
| display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 10px; |
| color:#1a1a1a; font-size: 30px; font-weight: 700; |
| } |
| .tab .cart-badge { |
| position: absolute; top: 8px; right: 24px; background:#b79254; color:#fff; width: 44px; height: 44px; border-radius:22px; font-size:26px; display:flex; align-items:center; justify-content:center; |
| } |
| |
| |
| svg { display: block; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status"> |
| <div>10:17</div> |
| <div class="dots"> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| </div> |
| </div> |
|
|
| |
| <div class="top-controls"> |
| <div class="back-btn"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M15 19L8 12l7-7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div style="display:flex; align-items:center; gap:30px;"> |
| <div class="icon-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2" fill="none"/> |
| <path d="M21 21l-4.5-4.5" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M6 6h15l-2 10H7L6 6z" stroke="#111" stroke-width="2" fill="none" stroke-linejoin="round"/> |
| <circle cx="9" cy="20" r="1.6" fill="#111"/> |
| <circle cx="18" cy="20" r="1.6" fill="#111"/> |
| </svg> |
| <div class="badge">1</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section-header"> |
| <div class="section-title">44 PRODUCTS</div> |
| <div class="sort"> |
| SORT |
| <svg width="36" height="36" viewBox="0 0 24 24"> |
| <path d="M7 7h10M7 12h7M7 17h4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="grid"> |
| <div class="cards"> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="label-new">NEW</div> |
| <div class="heart"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M12 21s-7.5-4.6-9-8.7C1.9 8.4 4 6 6.8 6c1.7 0 3 .9 3.8 2.1C11.4 6.9 12.8 6 14.5 6c2.8 0 4.9 2.4 3.7 6.3C19.5 16.4 12 21 12 21z" stroke="#111" stroke-width="1.6" fill="none"/> |
| </svg> |
| </div> |
| [IMG: Light green slide sandal] |
| </div> |
| <div class="colors">3 Colors |
| <svg width="22" height="22" viewBox="0 0 24 24"> |
| <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="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 class="card"> |
| <div class="img-wrap"> |
| <div class="label-new">NEW</div> |
| <div class="heart"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M12 21s-7.5-4.6-9-8.7C1.9 8.4 4 6 6.8 6c1.7 0 3 .9 3.8 2.1C11.4 6.9 12.8 6 14.5 6c2.8 0 4.9 2.4 3.7 6.3C19.5 16.4 12 21 12 21z" stroke="#111" stroke-width="1.6" fill="none"/> |
| </svg> |
| </div> |
| [IMG: White & gray PUMA slide, top & sole] |
| </div> |
| <div class="colors">3 Colors |
| <svg width="22" height="22" viewBox="0 0 24 24"> |
| <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="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 class="card"> |
| <div class="img-wrap"> |
| <div class="label-new">NEW</div> |
| <div class="heart"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M12 21s-7.5-4.6-9-8.7C1.9 8.4 4 6 6.8 6c1.7 0 3 .9 3.8 2.1C11.4 6.9 12.8 6 14.5 6c2.8 0 4.9 2.4 3.7 6.3C19.5 16.4 12 21 12 21z" stroke="#111" stroke-width="1.6" fill="none"/> |
| </svg> |
| </div> |
| [IMG: Olive/black PUMA slide with logo] |
| </div> |
| <div class="colors">5 Colors |
| <svg width="22" height="22" viewBox="0 0 24 24"> |
| <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="title">Leadcat Slides</div> |
| <div class="price">$35.00</div> |
| <div class="promo"> |
| TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART. |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-wrap"> |
| <div class="heart"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M12 21s-7.5-4.6-9-8.7C1.9 8.4 4 6 6.8 6c1.7 0 3 .9 3.8 2.1C11.4 6.9 12.8 6 14.5 6c2.8 0 4.9 2.4 3.7 6.3C19.5 16.4 12 21 12 21z" stroke="#111" stroke-width="1.6" fill="none"/> |
| </svg> |
| </div> |
| [IMG: Black molded slide sandal] |
| </div> |
| <div class="colors">3 Colors |
| <svg width="22" height="22" viewBox="0 0 24 24"> |
| <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="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> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="tab"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M3 11l9-7 9 7v9H3z" stroke="#111" stroke-width="2" fill="none" stroke-linejoin="round"/> |
| </svg> |
| <div>HOME</div> |
| </div> |
| <div class="tab"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M4 4h16v6H4zM7 14h10v6H7z" stroke="#111" stroke-width="2" fill="none"/> |
| </svg> |
| <div>DROPS</div> |
| </div> |
| <div class="tab" style="color:#000;"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M6 6h12M6 12h12M6 18h12" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| <div>SHOP</div> |
| </div> |
| <div class="tab" style="position:relative;"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M6 6h15l-2 10H7L6 6z" stroke="#111" stroke-width="2" fill="none"/> |
| <circle cx="9" cy="20" r="1.6" fill="#111"/> |
| <circle cx="18" cy="20" r="1.6" fill="#111"/> |
| </svg> |
| <div>CART</div> |
| </div> |
| <div class="tab" style="position:relative;"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <circle cx="12" cy="7" r="4" stroke="#111" stroke-width="2" fill="none"/> |
| <path d="M4 21c0-4 4-6 8-6s8 2 8 6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| <div>ACCOUNT</div> |
| <div class="cart-badge">2</div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |