File size: 15,183 Bytes
ff1f000 | 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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Standing Desk - Results</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #222; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #fff;
}
/* Top gradient header */
.top-gradient {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 340px;
background: linear-gradient(180deg, #8ed9d4 0%, #bfeee6 100%);
}
/* Status bar */
.status-bar {
position: absolute;
top: 14px;
left: 24px;
right: 24px;
height: 44px;
display: flex;
align-items: center;
justify-content: space-between;
color: #1b1b1b;
font-weight: 600;
font-size: 36px;
opacity: 0.9;
}
.status-icons {
display: flex;
gap: 18px;
align-items: center;
}
.status-dot { width: 10px; height: 10px; background:#1b1b1b; border-radius:50%; opacity:0.7; }
/* App bar */
.app-bar {
position: absolute;
top: 84px;
left: 18px;
right: 18px;
display: flex;
align-items: center;
gap: 18px;
}
.back-btn {
width: 72px;
height: 72px;
border-radius: 36px;
display: grid;
place-items: center;
color: #1f2a2a;
}
.search-box {
flex: 1;
background: #fff;
border-radius: 24px;
box-shadow: 0 2px 0 rgba(0,0,0,0.08), 0 6px 18px rgba(0,0,0,0.08);
height: 92px;
display: flex;
align-items: center;
padding: 0 28px;
gap: 16px;
}
.search-input {
flex: 1;
font-size: 38px;
color: #222;
}
.search-input span { color: #606060; }
.scan-btn {
width: 64px; height: 64px; border-radius: 16px; background: #f4f7f8; display: grid; place-items: center;
}
/* Location strip */
.location-strip {
position: absolute;
top: 196px;
left: 0;
right: 0;
padding: 18px 28px 24px;
color: #0b3c3a;
}
.location-pill {
display: inline-flex;
align-items: center;
gap: 16px;
background: rgba(255,255,255,0.75);
border-radius: 22px;
padding: 18px 22px;
font-size: 30px;
color: #0f403e;
}
/* Scrollable content */
.content {
position: absolute;
top: 340px;
left: 0;
right: 0;
bottom: 150px; /* leave space for nav bar */
overflow-y: auto;
background: #fff;
}
/* Chips row */
.chips {
display: flex;
align-items: center;
gap: 16px;
padding: 18px 22px;
border-bottom: 1px solid #e9eef0;
}
.chip {
display: inline-flex;
align-items: center;
gap: 12px;
background: #eef6f7;
color: #0c4b4a;
padding: 18px 22px;
border-radius: 16px;
font-size: 28px;
border: 1px solid #d9e8ea;
}
.chip.outline {
background: #fff;
border-color: #e2e7ea;
color: #222;
}
.toggle {
width: 78px; height: 42px; background: #e9ecef; border-radius: 21px; position: relative; }
.toggle::after {
content: ""; position: absolute; width: 38px; height: 38px; top: 2px; left: 2px; background: #fff; border-radius: 50%; box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.chip .x { color:#3c7e80; background:#d7eef0; border-radius: 10px; padding: 0 8px; }
/* Section heading */
.section {
padding: 24px 28px 10px;
}
.section h2 {
margin: 0 0 8px;
font-size: 40px;
font-weight: 700;
}
.muted { color: #6e7478; font-size: 26px; }
/* Horizontal product teasers */
.teasers {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 22px;
padding: 12px 22px 24px;
}
.teaser {
background: #fff;
border: 1px solid #e6eaed;
border-radius: 14px;
padding: 14px;
}
.img-ph {
width: 100%;
height: 220px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 28px;
border-radius: 10px;
}
.deal-badge {
display: inline-block;
background: #a63a15;
color: #fff;
padding: 8px 12px;
border-radius: 8px;
font-size: 26px;
margin-top: 12px;
}
.price {
font-size: 46px;
font-weight: 700;
margin: 6px 0 0;
}
.strike { color:#7b8b8f; text-decoration: line-through; margin-left: 8px; font-size: 28px; }
.save { color:#607d89; font-size: 26px; }
/* Divider text */
.divider-note {
padding: 18px 28px;
color: #6e7478;
font-size: 26px;
border-top: 10px solid #f1f3f4;
}
/* Large product card */
.product-card {
margin: 16px 22px 0;
background: #fff;
border: 1px solid #e6eaed;
border-radius: 18px;
box-shadow: 0 4px 10px rgba(0,0,0,0.03);
padding: 18px;
display: grid;
grid-template-columns: 320px 1fr;
gap: 22px;
}
.product-card .img-square {
width: 320px; height: 320px;
}
.sponsored { color:#6e7478; font-size: 26px; margin-bottom: 6px; }
.title {
font-size: 34px;
line-height: 1.25;
margin: 0 0 8px;
font-weight: 600;
}
.rating-row { display:flex; align-items:center; gap: 10px; margin: 6px 0; }
.stars { color:#f59f00; display:flex; gap: 4px; }
.badge {
display:inline-block;
background:#f7e7bf;
color:#8a5e00;
padding: 6px 10px;
border-radius: 8px;
font-size: 26px;
margin: 6px 0 12px;
}
.price-row { display:flex; align-items:flex-end; gap: 16px; margin: 4px 0; }
.coupon {
display:inline-block;
background:#d9f2d1;
color:#0a6d1f;
padding: 6px 12px;
border-radius: 8px;
font-size: 26px;
margin-top: 8px;
}
.prime-row { display:flex; align-items:center; gap: 10px; color:#0c4b4a; font-size: 28px; margin-top: 10px; }
/* Bottom navigation */
.bottom-nav {
position: absolute;
left: 0; right: 0; bottom: 40px;
height: 140px;
background: #fff;
border-top: 1px solid #e6eaed;
display: grid;
grid-template-columns: repeat(5, 1fr);
align-items: center;
text-align: center;
font-size: 26px;
}
.nav-item { color:#283133; }
.nav-item.active { color:#0a736c; font-weight: 700; }
.nav-icon {
width: 48px; height: 48px; margin: 0 auto 6px; display:block;
}
.home-indicator {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 16px;
width: 360px;
height: 12px;
background: #c7c9cc;
border-radius: 8px;
}
/* Utilities */
.row { display:flex; align-items:center; gap: 12px; }
</style>
</head>
<body>
<div id="render-target">
<div class="top-gradient"></div>
<!-- Status bar -->
<div class="status-bar">
<div>1:04</div>
<div class="status-icons">
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
</div>
</div>
<!-- App bar with back and search -->
<div class="app-bar">
<div class="back-btn" aria-label="Back">
<svg width="36" height="36" viewBox="0 0 24 24" fill="#0b3c3a" xmlns="http://www.w3.org/2000/svg">
<path d="M14.7 4.3a1 1 0 0 1 0 1.4L9.4 11l5.3 5.3a1 1 0 1 1-1.4 1.4L7 11.7a1 1 0 0 1 0-1.4l6.9-6a1 1 0 0 1 .8-.3z"/>
</svg>
</div>
<div class="search-box">
<div class="search-input"><span>standing desk</span></div>
<div class="scan-btn">
<svg width="28" height="28" viewBox="0 0 24 24" fill="#0b3c3a"><path d="M3 7V5h4V3H1v6h2zm14-4v2h4v2h2V3h-6zM1 17v4h6v-2H3v-2H1zm22 0h-2v2h-2v2h4v-4z"/></svg>
</div>
</div>
</div>
<!-- Location -->
<div class="location-strip">
<div class="location-pill">
<svg width="28" height="28" viewBox="0 0 24 24" fill="#0a5d5a"><path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>
Delivering to Delhi 110001 - Update location
<svg width="18" height="18" viewBox="0 0 24 24" fill="#0a5d5a"><path d="M7 10l5 5 5-5H7z"/></svg>
</div>
</div>
<!-- Scrollable content -->
<div class="content">
<!-- Filter chips -->
<div class="chips">
<div class="chip">
<span style="color:#ff9900;font-weight:700;">prime</span>
<div class="toggle"></div>
</div>
<div class="chip">
Lapdesks <span class="x">×</span>
</div>
<div class="chip outline">
<div class="row">
<div class="stars">
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ffcc66"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
</div>
and
</div>
</div>
<div class="chip outline">Filters (1)
<svg width="18" height="18" viewBox="0 0 24 24" fill="#222" style="margin-left:8px;"><path d="M7 10l5 5 5-5H7z"/></svg>
</div>
</div>
<!-- For your workspace -->
<div class="section">
<h2>For your workspace</h2>
<div class="muted">Sponsored</div>
</div>
<div class="teasers">
<div class="teaser">
<div class="img-ph">[IMG: JIN OFFICE Logo]</div>
<div style="font-size:30px; margin-top: 12px;">Save up to 61% on JIN OFFICE</div>
</div>
<div class="teaser">
<div class="img-ph">[IMG: Standing Desk with Dual Monitors]</div>
<div class="deal-badge">Limited time Deal</div>
<div class="price">₹21,990 <span class="strike">₹38,500</span></div>
<div class="save">(43% off)</div>
</div>
<div class="teaser">
<div class="img-ph">[IMG: Standing Desk]</div>
<div class="deal-badge">Limited time Deal</div>
<div class="price">₹25,990</div>
</div>
</div>
<div class="divider-note">Price and other details may vary based on product size and colour.</div>
<!-- Large sponsored product card -->
<div class="product-card">
<div class="img-ph img-square">[IMG: Laptop table against blue wall]</div>
<div>
<div class="sponsored">Sponsored</div>
<div class="title">eStand Height Adjustable Laptop Table to be Used in Sitting & Standing Posture (Black HAT ...)</div>
<div class="rating-row">
<span style="color:#2a7bd3; font-weight:700;">4.4</span>
<div class="stars">
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ffcc66"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
</div>
<span class="muted">(24)</span>
</div>
<div class="badge">Great Indian Festival</div>
<div class="price-row">
<div class="price">₹5,999</div>
<div class="muted">M.R.P.: <span class="strike">₹11,999</span> <span style="color:#3d7b3d;">(50% off)</span></div>
</div>
<div class="coupon">Save ₹100 with coupon</div>
<div class="prime-row">
<span style="color:#ff9900; font-weight:700;">prime</span>
Get it by Wednesday, 15 November
</div>
</div>
</div>
<!-- Another small card preview -->
<div class="product-card" style="grid-template-columns: 320px 1fr; margin-bottom: 160px;">
<div class="img-ph img-square">[IMG: Adjustable Table Angled]</div>
<div>
<div class="sponsored">Sponsored</div>
<div class="title">eStand Multi Purpose Height Adjustable Table for Reading, Writing, Typing etc. Best to use in...</div>
<div class="rating-row">
<div class="stars">
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ffcc66"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
</div>
<span class="muted">(112)</span>
</div>
<div class="price-row">
<div class="price">₹4,299</div>
<div class="muted">M.R.P.: <span class="strike">₹7,499</span></div>
</div>
<div class="coupon">Save with coupon</div>
</div>
</div>
</div>
<!-- Bottom Navigation -->
<div class="bottom-nav">
<div class="nav-item active">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M12 3l9 8h-3v8h-5v-5H11v5H6v-8H3l9-8z"/></svg>
Home
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0 2c-4.4 0-8 2.2-8 5v2h16v-2c0-2.8-3.6-5-8-5z"/></svg>
You
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M4 4h16v4H4zm0 6h16v4H4zm0 6h16v4H4z"/></svg>
More
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M7 4h10l1 3H6l1-3zm-1 5h12l-1 10H7L6 9zm3 2v6h2v-6H9zm4 0v6h2v-6h-2z"/></svg>
Cart
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
Menu
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |