File size: 13,331 Bytes
fa881a6 | 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 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UI Reconstruction</title>
<style>
body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color:#222; }
#render-target {
width:1080px; height:2400px; position:relative; overflow:hidden;
background:#ffffff; border-radius:0; box-shadow:none;
}
/* Header */
.header {
position:absolute; top:0; left:0; width:100%; height:280px; background:#0A78A6;
color:#fff;
}
.status-bar {
height:80px; display:flex; align-items:center; padding:0 32px; font-size:28px; opacity:0.9; justify-content:space-between;
}
.search-row {
display:flex; align-items:center; padding:0 32px; margin-top:16px; gap:24px;
}
.icon-btn { width:56px; height:56px; display:flex; align-items:center; justify-content:center; }
.search-box {
flex:1; height:96px; background:#fff; border-radius:48px; display:flex; align-items:center; padding:0 28px; color:#7a7a7a; font-size:34px; box-shadow:0 2px 0 rgba(0,0,0,0.06) inset;
}
.search-placeholder { flex:1; }
.cart-btn { width:64px; height:64px; display:flex; align-items:center; justify-content:center; }
/* Divider below header */
.divider { position:absolute; top:280px; left:0; width:100%; height:14px; background:#f1f1f1; border-top:1px solid #e5e5e5; border-bottom:1px solid #e5e5e5; }
/* Content */
.content { position:absolute; top:294px; left:0; right:0; bottom:0; overflow:hidden auto; padding-bottom:260px; }
.section-title { font-size:44px; font-weight:800; margin:48px 40px 24px; }
.products-row { display:flex; gap:32px; padding:0 40px; }
.card { width:320px; }
.thumb {
position:relative; width:100%; height:220px; background:#E0E0E0; border:1px solid #BDBDBD; border-radius:24px;
display:flex; align-items:center; justify-content:center; color:#757575; font-size:26px; text-align:center; padding:10px;
}
.heart {
position:absolute; top:12px; right:12px; width:40px; height:40px; background:#ffffffcc; border-radius:50%;
display:flex; align-items:center; justify-content:center; box-shadow:0 1px 3px rgba(0,0,0,0.15);
}
.title { font-size:30px; line-height:36px; color:#444; margin-top:16px; }
.price-row { margin-top:12px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.price { font-size:34px; font-weight:700; color:#000; }
.old-price { font-size:28px; color:#9e9e9e; text-decoration:line-through; }
.deal {
font-size:26px; color:#1f7a3b; background:#DDF4E1; border-radius:12px; padding:6px 12px; font-weight:700;
}
.add-row { margin-top:18px; display:flex; align-items:center; gap:16px; }
.add-btn {
height:70px; padding:0 34px; border:1px solid #d0d8de; border-radius:35px; background:#fff; color:#0878a2; font-weight:700; font-size:32px;
display:flex; align-items:center; justify-content:center;
}
.plus-btn {
width:70px; height:70px; border-radius:35px; border:1px solid #d0d8de; background:#fff; display:flex; align-items:center; justify-content:center;
}
/* Ratings section */
.ratings { margin:48px 40px 0; }
.ratings-title { font-size:42px; font-weight:800; margin-bottom:24px; }
.ratings-grid { display:flex; gap:40px; }
.ratings-left { width:280px; }
.big-score { font-size:120px; font-weight:800; line-height:1; }
.stars-line { display:flex; gap:6px; margin:12px 0 8px; color:#bdbdbd; }
.ratings-note { font-size:30px; color:#777; }
.ratings-right { flex:1; }
.dist-row { display:flex; align-items:center; gap:16px; margin-bottom:16px; }
.dist-label { width:40px; color:#777; display:flex; align-items:center; gap:4px; font-size:30px; }
.bar { flex:1; height:44px; background:#e9ecef; border-radius:22px; position:relative; overflow:hidden; }
.bar > span { position:absolute; left:0; top:0; height:100%; width:0%; background:#f8c24c; }
.percent { width:70px; text-align:right; color:#777; font-size:30px; }
/* Explore more row (above bottom bar) */
.explore { margin:44px 40px; display:flex; align-items:center; justify-content:space-between; color:#0878a2; }
.explore small { color:#777; display:block; font-size:28px; margin-bottom:4px; }
.view-link { font-size:34px; font-weight:700; display:flex; align-items:center; gap:10px; }
/* Bottom sticky bar */
.bottom-bar {
position:absolute; bottom:0; left:0; width:100%; height:180px; background:#fff; border-top:1px solid #e6e6e6;
display:flex; align-items:center; justify-content:flex-end; padding:0 40px;
box-shadow:0 -6px 18px rgba(0,0,0,0.06);
}
.cta-btn {
height:104px; padding:0 60px; border-radius:52px; background:#0A78A6; color:#fff; font-size:40px; font-weight:800; border:none;
display:flex; align-items:center; justify-content:center;
}
/* Simple star icon style */
.star { width:28px; height:28px; }
</style>
</head>
<body>
<div id="render-target">
<div class="header">
<div class="status-bar">
<div>4:48</div>
<div>100%</div>
</div>
<div class="search-row">
<div class="icon-btn">
<svg width="36" height="36" viewBox="0 0 24 24" fill="none">
<path d="M15 18L9 12L15 6" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-box">
<svg width="36" height="36" viewBox="0 0 24 24" fill="none" style="margin-right:10px;">
<circle cx="11" cy="11" r="7" stroke="#7a7a7a" stroke-width="2"/>
<path d="M20 20L16.5 16.5" stroke="#7a7a7a" stroke-width="2" stroke-linecap="round"/>
</svg>
<div class="search-placeholder">Search JioMart</div>
<svg width="34" height="34" viewBox="0 0 24 24" fill="none" style="margin-right:12px;">
<path d="M12 3v10" stroke="#7a7a7a" stroke-width="2" stroke-linecap="round"/>
<path d="M9 13h6v4a3 3 0 01-6 0v-4z" stroke="#7a7a7a" stroke-width="2"/>
</svg>
</div>
<div class="cart-btn">
<svg width="36" height="36" viewBox="0 0 24 24" fill="none">
<path d="M4 6h2l2 10h10l2-7H8" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="10" cy="20" r="1.6" fill="#fff"/>
<circle cx="17" cy="20" r="1.6" fill="#fff"/>
</svg>
</div>
</div>
</div>
<div class="divider"></div>
<div class="content">
<div class="section-title">Similar Products</div>
<div class="products-row">
<!-- Card 1 -->
<div class="card">
<div class="thumb">
[IMG: Screwdriver Set - box and bits]
<div class="heart">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none">
<path d="M12 21s-7-5.2-9-8.3C1.7 9.5 3.4 7 6.4 7c1.7 0 3 .9 3.6 2.1C10.6 7.9 11.9 7 13.6 7c3 0 4.7 2.5 3.4 5.7C19 15.8 12 21 12 21z" stroke="#E06666" stroke-width="1.5" fill="#fff"/>
</svg>
</div>
</div>
<div class="title">Tools Titan 25 in 1<br>SCREWDRIVER SET 1</div>
<div class="price-row">
<div class="price">₹259.00</div>
<div class="old-price">₹1299.00</div>
<div class="deal">80% OFF</div>
</div>
<div class="add-row">
<div class="add-btn">Add</div>
<div class="plus-btn">
<svg width="28" height="28" viewBox="0 0 24 24" fill="none">
<path d="M12 5v14M5 12h14" stroke="#0878a2" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="card">
<div class="thumb">
[IMG: Screwdriver handle and bits]
<div class="heart">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none">
<path d="M12 21s-7-5.2-9-8.3C1.7 9.5 3.4 7 6.4 7c1.7 0 3 .9 3.6 2.1C10.6 7.9 11.9 7 13.6 7c3 0 4.7 2.5 3.4 5.7C19 15.8 12 21 12 21z" stroke="#E06666" stroke-width="1.5" fill="#fff"/>
</svg>
</div>
</div>
<div class="title">Tools Titan 25 IN 1<br>SCREWDRIVER SET 8</div>
<div class="price-row">
<div class="price">₹265.00</div>
<div class="old-price">₹799.00</div>
<div class="deal">66% OFF</div>
</div>
<div class="add-row">
<div class="add-btn">Add</div>
<div class="plus-btn">
<svg width="28" height="28" viewBox="0 0 24 24" fill="none">
<path d="M12 5v14M5 12h14" stroke="#0878a2" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="card">
<div class="thumb">
[IMG: Bits set with case]
<div class="heart">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none">
<path d="M12 21s-7-5.2-9-8.3C1.7 9.5 3.4 7 6.4 7c1.7 0 3 .9 3.6 2.1C10.6 7.9 11.9 7 13.6 7c3 0 4.7 2.5 3.4 5.7C19 15.8 12 21 12 21z" stroke="#E06666" stroke-width="1.5" fill="#fff"/>
</svg>
</div>
</div>
<div class="title">Tools Titan 25 in 1<br>SCREWDRIVER SET</div>
<div class="price-row">
<div class="price">₹259.00</div>
<div class="old-price">₹1299.00</div>
<div class="deal">80% OFF</div>
</div>
<div class="add-row">
<div class="add-btn">Add</div>
<div class="plus-btn">
<svg width="28" height="28" viewBox="0 0 24 24" fill="none">
<path d="M12 5v14M5 12h14" stroke="#0878a2" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
</div>
<!-- Ratings & Reviews -->
<div class="ratings">
<div class="ratings-title">Ratings & Reviews</div>
<div class="ratings-grid">
<div class="ratings-left">
<div class="big-score">0</div>
<div class="stars-line">
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
</div>
<div class="ratings-note">0 ratings</div>
</div>
<div class="ratings-right">
<div class="dist-row">
<div class="dist-label">5
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
</div>
<div class="bar"><span style="width:0%"></span></div>
<div class="percent">0%</div>
</div>
<div class="dist-row">
<div class="dist-label">4
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
</div>
<div class="bar"><span style="width:0%"></span></div>
<div class="percent">0%</div>
</div>
<div class="dist-row">
<div class="dist-label">3
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
</div>
<div class="bar"><span style="width:0%"></span></div>
<div class="percent">0%</div>
</div>
<div class="dist-row">
<div class="dist-label">2
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
</div>
<div class="bar"><span style="width:0%"></span></div>
<div class="percent">0%</div>
</div>
<div class="dist-row">
<div class="dist-label">1
<svg class="star" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 17.3l-6.2 3.4 1.5-6.8L2 9.7l6.9-.7L12 2l3.1 7 6.9.7-5.3 4.2 1.5 6.8z"/></svg>
</div>
<div class="bar"><span style="width:0%"></span></div>
<div class="percent">0%</div>
</div>
</div>
</div>
</div>
<!-- Explore More -->
<div class="explore">
<div>
<small>Explore More!</small>
<div class="view-link">View Categories
<svg width="26" height="26" viewBox="0 0 24 24" fill="none">
<path d="M8 5l8 7-8 7" stroke="#0878a2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<div></div>
</div>
</div>
<!-- Bottom bar -->
<div class="bottom-bar">
<button class="cta-btn">Add to Cart</button>
</div>
</div>
</body>
</html> |