File size: 10,789 Bytes
67530d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | <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 bar */
.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 */
.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 */
.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 */
.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 */
.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;
}
/* Small helper icons */
svg { display: block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<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>
<!-- Top controls -->
<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>
<!-- Section header -->
<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>
<!-- Product grid -->
<div class="grid">
<div class="cards">
<!-- Card 1 -->
<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>
<!-- Card 2 -->
<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>
<!-- Card 3 -->
<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>
<!-- Card 4 -->
<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>
<!-- Bottom navigation -->
<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> |