File size: 10,677 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1440, initial-scale=1.0" />
<title>Product Comparison - Shoes</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color: #1f2a37; }
#render-target {
width: 1440px;
height: 3120px;
position: relative;
overflow: hidden;
background: #ffffff;
}
/* Top status/OS bar (visual only) */
.os-bar {
position: absolute;
top: 0;
left: 0;
width: 1440px;
height: 120px;
background: #e7e7e7;
}
/* App header */
.app-header {
position: absolute;
top: 120px;
left: 0;
width: 1440px;
height: 120px;
background: #ffffff;
}
.app-header .inner {
height: 100%;
display: flex;
align-items: center;
padding: 0 60px;
justify-content: space-between;
}
.icon-btn {
width: 72px;
height: 72px;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: default;
}
.icon {
width: 48px;
height: 48px;
stroke: #1f2a37;
fill: none;
stroke-width: 30;
}
/* Comparison section */
.comparison {
position: absolute;
top: 260px;
left: 0;
width: 1440px;
}
.product-images {
width: 100%;
padding: 0 80px;
box-sizing: border-box;
display: grid;
grid-template-columns: 420px 430px 430px;
column-gap: 40px;
align-items: stretch;
}
.product-images .spacer { /* left spacer aligns with labels column */
height: 560px;
}
.img-box {
height: 560px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 34px;
letter-spacing: 0.5px;
}
.comparison-grid {
margin-top: 20px;
width: 100%;
padding: 0 80px;
box-sizing: border-box;
display: grid;
grid-template-columns: 420px 430px 430px;
column-gap: 40px;
}
.row {
display: contents;
}
.cell {
padding: 46px 36px;
border-bottom: 2px solid #e6ebef;
font-size: 42px;
line-height: 1.2;
}
.label {
font-weight: 700;
color: #2b3a4a;
}
.spec {
background: #f3f9fe;
}
.price-badge {
display: inline-block;
background: #ffe317;
color: #0f1e2d;
font-weight: 800;
font-size: 40px;
padding: 18px 28px;
border-radius: 10px;
}
.reviews {
display: inline-flex;
align-items: center;
gap: 18px;
color: #1976d2;
font-weight: 700;
}
.star {
width: 40px;
height: 40px;
fill: #ffb400;
vertical-align: middle;
}
.v-sep {
position: absolute;
top: 260px;
left: 560px; /* 80 padding + 420 label + 60? adjust below with calc */
}
.cta-row {
display: flex;
gap: 40px;
}
.cta {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 18px;
background: #ffe317;
color: #0f1e2d;
font-weight: 800;
font-size: 42px;
border-radius: 22px;
padding: 30px 60px;
border: 0;
box-shadow: 0 3px 0 #d9c700 inset;
}
.cta svg { width: 46px; height: 46px; stroke: #0f1e2d; stroke-width: 24; fill: none; }
/* Customers also bought */
.section-title {
margin: 60px 80px 24px 80px;
font-weight: 800;
font-size: 54px;
letter-spacing: 1px;
color: #2b3a4a;
}
.also-bought {
margin: 0 80px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 36px;
}
.thumb {
position: relative;
height: 420px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 34px;
}
.ribbon {
position: absolute;
top: 18px;
left: 18px;
background: #0084ff;
color: #fff;
font-weight: 800;
font-size: 28px;
padding: 10px 18px;
border-radius: 6px;
}
.ribbon.green { background: #2e7d32; }
/* Sticky bottom bar */
.sticky-bar {
position: absolute;
left: 60px;
right: 60px;
bottom: 80px;
background: #ffffff;
border-radius: 30px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
padding: 26px;
display: flex;
align-items: center;
gap: 26px;
}
.fav-box {
width: 180px;
height: 140px;
border-radius: 20px;
background: #f7fafc;
border: 4px solid #dbe6f3;
display: flex;
align-items: center;
justify-content: center;
}
.fav-box svg { width: 72px; height: 72px; stroke: #1e88e5; stroke-width: 26; fill: none; }
.sticky-cta {
flex: 1;
height: 140px;
background: #ffe317;
border: none;
border-radius: 20px;
font-size: 56px;
font-weight: 900;
color: #0f1e2d;
letter-spacing: 1px;
display: flex;
align-items: center;
justify-content: center;
gap: 26px;
box-shadow: 0 3px 0 #d9c700 inset;
}
.sticky-cta svg { width: 62px; height: 62px; stroke: #0f1e2d; stroke-width: 26; fill: none; }
/* Fine tune grid lines (visual separators) */
.comparison-grid .cell:not(.label):not(.spec) { background: #ffffff; }
.comparison-grid .cell.spec { background: #eef6fb; }
/* Helper for small gray subtitle text */
.muted { color: #6b7b8a; font-weight: 600; }
/* Ensure enough content height */
.spacer-bottom { height: 720px; }
</style>
</head>
<body>
<div id="render-target">
<!-- OS status area -->
<div class="os-bar"></div>
<!-- Header with back/search/wishlist/cart -->
<div class="app-header">
<div class="inner">
<div class="icon-btn" title="Back">
<svg class="icon" viewBox="0 0 512 512">
<path d="M320 96 L160 256 L320 416" />
</svg>
</div>
<div style="display:flex; gap:36px;">
<div class="icon-btn" title="Search">
<svg class="icon" viewBox="0 0 512 512">
<circle cx="224" cy="224" r="160"></circle>
<line x1="344" y1="344" x2="456" y2="456"></line>
</svg>
</div>
<div class="icon-btn" title="Wishlist">
<svg class="icon" viewBox="0 0 512 512">
<path d="M256 440 C256 440 96 344 96 216 C96 154 144 112 200 112 C237 112 256 136 256 136 C256 136 275 112 312 112 C368 112 416 154 416 216 C416 344 256 440 256 440 Z" />
</svg>
</div>
<div class="icon-btn" title="Cart">
<svg class="icon" viewBox="0 0 512 512">
<circle cx="192" cy="432" r="40"></circle>
<circle cx="352" cy="432" r="40"></circle>
<path d="M88 96 H132 L170 320 H412 L456 176 H192" />
</svg>
</div>
</div>
</div>
</div>
<!-- Comparison images row -->
<div class="comparison">
<div class="product-images">
<div class="spacer"></div>
<div class="img-box">[IMG: Grey running shoe]</div>
<div class="img-box">[IMG: Black running shoe]</div>
</div>
<!-- Comparison table -->
<div class="comparison-grid">
<!-- Name -->
<div class="row">
<div class="cell label">Name</div>
<div class="cell spec">Men Run 100</div>
<div class="cell">Jog Flow 100</div>
</div>
<!-- Price -->
<div class="row">
<div class="cell label">Price</div>
<div class="cell spec"><span class="price-badge">₹899</span></div>
<div class="cell"><span class="price-badge">₹1,799</span></div>
</div>
<!-- Reviews -->
<div class="row">
<div class="cell label">Reviews</div>
<div class="cell spec">
<span class="reviews">
<svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.6 5.82 22 7 14.14l-5-4.87 6.91-1.01z"/></svg>
4.4 (17.5k)
</span>
</div>
<div class="cell">
<span class="reviews">
<svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.6 5.82 22 7 14.14l-5-4.87 6.91-1.01z"/></svg>
4.5 (74)
</span>
</div>
</div>
<!-- Foam -->
<div class="row">
<div class="cell label">Foam</div>
<div class="cell spec">2/5</div>
<div class="cell">4/5</div>
</div>
<!-- Lightweight -->
<div class="row">
<div class="cell label">Lightweight</div>
<div class="cell spec">5/5</div>
<div class="cell">5/5</div>
</div>
<!-- Grip -->
<div class="row">
<div class="cell label">Grip</div>
<div class="cell spec">3/5</div>
<div class="cell">3/5</div>
</div>
<!-- Add to cart buttons row -->
<div class="row">
<div class="cell label"></div>
<div class="cell spec">
<button class="cta">
ADD TO CART
<svg viewBox="0 0 512 512">
<circle cx="192" cy="432" r="36"></circle>
<circle cx="352" cy="432" r="36"></circle>
<path d="M88 96 H132 L170 320 H412 L456 176 H192" />
</svg>
</button>
</div>
<div class="cell">
<button class="cta">
ADD TO CART
<svg viewBox="0 0 512 512">
<circle cx="192" cy="432" r="36"></circle>
<circle cx="352" cy="432" r="36"></circle>
<path d="M88 96 H132 L170 320 H412 L456 176 H192" />
</svg>
</button>
</div>
</div>
</div>
<!-- Customers also bought -->
<div class="section-title">CUSTOMERS ALSO BOUGHT</div>
<div class="also-bought">
<div class="thumb">
<div class="ribbon">BESTSELLER</div>
[IMG: Men track pants]
</div>
<div class="thumb">
<div class="ribbon green">ECO DESIGN</div>
[IMG: Small massage device]
</div>
</div>
<div class="spacer-bottom"></div>
</div>
<!-- Bottom sticky cart bar -->
<div class="sticky-bar">
<div class="fav-box">
<svg viewBox="0 0 512 512">
<path d="M256 440 C256 440 96 344 96 216 C96 154 144 112 200 112 C237 112 256 136 256 136 C256 136 275 112 312 112 C368 112 416 154 416 216 C416 344 256 440 256 440 Z" />
<line x1="256" y1="172" x2="256" y2="296"></line>
<line x1="196" y1="236" x2="316" y2="236"></line>
</svg>
</div>
<button class="sticky-cta">
ADD TO CART
<svg viewBox="0 0 512 512">
<circle cx="192" cy="432" r="40"></circle>
<circle cx="352" cy="432" r="40"></circle>
<path d="M88 96 H132 L170 320 H412 L456 176 H192" />
</svg>
</button>
</div>
</div>
</body>
</html> |