File size: 14,143 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 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 | <html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Women Formal Shoes - UI Mock</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: linear-gradient(180deg, #a8e9e8 0%, #bfe9dc 60%, #e8f4ef 100%);
border-radius: 38px;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
/* Status bar */
.status-bar {
height: 90px;
display: flex;
align-items: center;
padding: 0 36px;
color: #2f3a3b;
font-weight: 600;
font-size: 36px;
}
.status-left { display: flex; align-items: center; gap: 18px; }
.status-right { margin-left: auto; display: flex; align-items: center; gap: 28px; }
/* Search */
.search-row {
display: flex;
align-items: center;
padding: 0 24px;
height: 120px;
}
.back-btn {
width: 88px; height: 88px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
background: transparent;
}
.search-box {
flex: 1;
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 18px rgba(0,0,0,0.08);
display: flex; align-items: center;
height: 96px;
padding: 0 28px;
gap: 18px;
}
.search-input {
flex: 1;
font-size: 40px;
color: #1f2a2b;
}
.camera-btn {
width: 84px; height: 84px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
background: #f3f6f7;
border: 1px solid #d9e1e4;
}
/* Chips / filters */
.chips {
display: flex; align-items: center; gap: 20px;
padding: 24px;
}
.chip {
display: inline-flex; align-items: center; gap: 14px;
background: #fff;
color: #1f2a2b;
border-radius: 999px;
padding: 18px 26px;
box-shadow: 0 8px 16px rgba(0,0,0,0.06);
font-size: 34px;
}
.chip.dark { background: #070707; color: #fff; }
.chip .toggle {
width: 64px; height: 40px; background: #eef2f5; border-radius: 22px; position: relative; border: 1px solid #dbe2e6;
}
.chip .toggle::after {
content:""; position:absolute; top:4px; left:4px; width:32px; height:32px; background:#fff; border-radius:50%; border:1px solid #cfd7dc;
}
/* Horizontal product teasers */
.teaser-row { display: flex; gap: 22px; padding: 0 24px; margin-top: 10px; }
.teaser-card {
width: 512px; background: #fff; border-radius: 18px;
box-shadow: 0 8px 16px rgba(0,0,0,0.08);
overflow: hidden;
}
.teaser-img { height: 240px; display:flex; align-items:center; justify-content:center; background:#E0E0E0; border-bottom:1px solid #BDBDBD; color:#757575; }
.deal-label {
background: #a33a22; color: #fff; font-weight: 700; font-size: 34px;
padding: 16px 22px; display: inline-block; border-radius: 12px; margin: 16px 16px 8px;
}
.price-line { display:flex; align-items:center; gap:12px; padding: 6px 16px 18px; font-size: 36px; color:#1f2a2b; }
.mrp { color:#7b8b92; text-decoration: line-through; font-size: 30px; }
.prime-tag {
display: inline-flex; align-items: center; gap: 8px; font-size: 28px; color:#1573ff; background:#f0f6ff; padding: 6px 12px; border-radius: 12px;
}
/* Informational rows */
.info-row { padding: 24px; font-size: 36px; color:#2b3a3c; }
.sponsored { display:flex; align-items:center; justify-content:flex-end; padding: 0 24px; color:#596a70; font-size: 32px; gap: 10px; }
/* Two-column product grid */
.grid-note { padding: 10px 24px; font-size: 32px; color:#516168; }
.product-grid { display:flex; gap: 22px; padding: 0 24px; }
.product-card {
width: 516px; background:#fff; border-radius: 18px; box-shadow: 0 8px 14px rgba(0,0,0,0.08); overflow:hidden;
}
.badge {
position: absolute; top: -12px; left: 24px; background:#f4a43a; color:#1f2a2b; font-weight:700;
padding: 12px 20px; border-radius: 12px; font-size: 32px;
}
.p-img { height: 460px; background:#E0E0E0; border-bottom:1px solid #BDBDBD; display:flex; align-items:center; justify-content:center; color:#757575; position:relative; }
.p-content { padding: 18px; }
.mini-link { color:#0f60ff; font-size: 32px; }
.spon-line { color:#6b7b83; font-size: 28px; display:flex; align-items:center; gap:8px; margin-top:4px; }
.title { font-size: 36px; color:#1f2a2b; font-weight:700; margin-top: 10px; }
.subtitle { font-size: 32px; color:#2d3e41; margin-top: 6px; }
.rating { display:flex; align-items:center; gap:8px; margin-top: 8px; font-size: 32px; color:#1f2a2b; }
.stars svg { width: 28px; height: 28px; }
.price-block { display:flex; align-items:center; gap:14px; margin-top: 12px; font-size: 42px; color:#111; }
.mrp-small { color:#75858c; text-decoration: line-through; font-size: 30px; }
.save-pill { display:inline-block; background:#2faa3a; color:#fff; padding: 8px 14px; border-radius: 10px; font-size: 30px; margin-top: 6px; }
/* Bottom nav */
.bottom-nav {
position:absolute; bottom:0; left:0; right:0;
height: 180px; background:#fff; border-top-left-radius:22px; border-top-right-radius:22px;
box-shadow: 0 -8px 16px rgba(0,0,0,0.08);
display:flex; align-items:center; justify-content:space-around;
}
.nav-item { display:flex; flex-direction:column; align-items:center; gap: 8px; color:#1f2a2b; font-size: 30px; }
.nav-item .label { font-size: 34px; }
/* Utility icons */
.icon { display:inline-block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<span>5:47</span>
<span>42°</span>
</div>
<div class="status-right">
<!-- simple dot icons to mimic screenshot -->
<svg class="icon" width="30" height="30"><circle cx="15" cy="15" r="4" fill="#2f3a3b"/></svg>
<svg class="icon" width="30" height="30"><rect x="6" y="9" width="18" height="12" rx="2" fill="#2f3a3b"/></svg>
<svg class="icon" width="30" height="30"><circle cx="15" cy="15" r="10" stroke="#2f3a3b" stroke-width="3" fill="none"/></svg>
</div>
</div>
<!-- Search Row -->
<div class="search-row">
<div class="back-btn">
<svg width="48" height="48" viewBox="0 0 24 24">
<path d="M15 18l-6-6 6-6" stroke="#1f2a2b" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-box">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7" stroke="#405155" stroke-width="2" fill="none"/>
<path d="M20 20l-4.2-4.2" stroke="#405155" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
<div class="search-input">women formal shoes</div>
<div class="camera-btn">
<svg width="32" height="32" viewBox="0 0 24 24">
<path d="M7 7h10l-2-3H9l-2 3z" fill="#2f3a3b"/>
<rect x="4" y="8" width="16" height="10" rx="2" fill="#2f3a3b"/>
<circle cx="12" cy="13" r="3" fill="#fff"/>
</svg>
</div>
</div>
</div>
<!-- Chips Row -->
<div class="chips">
<div class="chip">
<span style="color:#ff9900; font-weight:700;">prime</span>
<div class="toggle"></div>
</div>
<div class="chip">
<!-- stars -->
<div class="stars">
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
</div>
<span>& Up</span>
</div>
<div class="chip dark">Black</div>
<div class="chip">
Filters
<svg width="24" height="24" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#1f2a2b" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
</div>
</div>
<!-- Teasers -->
<div class="teaser-row">
<div class="teaser-card">
<div class="teaser-img">[IMG: Navy Loafer Shoe]</div>
<div class="deal-label">Deal of the Day</div>
<div class="price-line">
₹799
<div class="prime-tag">
<svg width="18" height="18" viewBox="0 0 24 24"><path d="M4 12l4 4 12-12" stroke="#1573ff" stroke-width="3" fill="none"/></svg>
prime
</div>
<span class="mrp">₹999</span>
<span style="color:#435a61; font-size:30px;">(20% off)</span>
</div>
</div>
<div class="teaser-card">
<div class="teaser-img">[IMG: Blue Loafer Shoe]</div>
<div class="deal-label">Deal of the Day</div>
<div class="price-line">
₹799
<div class="prime-tag">
<svg width="18" height="18" viewBox="0 0 24 24"><path d="M4 12l4 4 12-12" stroke="#1573ff" stroke-width="3" fill="none"/></svg>
prime
</div>
<span class="mrp">₹999</span>
<span style="color:#435a61; font-size:30px;">(20% off)</span>
</div>
</div>
</div>
<div class="info-row">Save up to 20% on Doctor Extra Soft</div>
<div class="sponsored">
Sponsored
<svg width="22" height="22" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" stroke="#6b7b83" stroke-width="2" fill="none"/><text x="11" y="16" font-size="12" fill="#6b7b83">i</text></svg>
</div>
<div class="grid-note">Price and other details may vary based on product size and colour.</div>
<!-- Product Grid -->
<div class="product-grid">
<div class="product-card">
<div class="p-img">
<div class="badge">Best seller</div>
[IMG: Elegant Feet Black Formal Shoes]
</div>
<div class="p-content">
<div class="mini-link">+1 colour/pattern</div>
<div class="spon-line">
Sponsored
<svg width="20" height="20" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" stroke="#6b7b83" stroke-width="2" fill="none"/><text x="11" y="16" font-size="12" fill="#6b7b83">i</text></svg>
</div>
<div class="title">Elegant feet</div>
<div class="subtitle">Latest Collection | Comfortable Stylish Solid..</div>
<div class="rating">
<span style="color:#2b7adb; font-weight:700;">2.7</span>
<div class="stars">
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ddd"/></svg>
</div>
<span>(9)</span>
</div>
<div class="price-block">
₹699
<span class="mrp-small">M.R.P: ₹1999</span>
</div>
</div>
</div>
<div class="product-card">
<div class="p-img">[IMG: Right Steps Black Formal Shoes]</div>
<div class="p-content">
<div class="mini-link">+1 colour/pattern</div>
<div class="spon-line">
Sponsored
<svg width="20" height="20" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" stroke="#6b7b83" stroke-width="2" fill="none"/><text x="11" y="16" font-size="12" fill="#6b7b83">i</text></svg>
</div>
<div class="title">Right Steps</div>
<div class="subtitle">Formal Shoes for Women's and Girls</div>
<div class="rating">
<span style="color:#2b7adb; font-weight:700;">3.4</span>
<div class="stars">
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ffb400"/></svg>
<svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.3 6.2L12 16l-5.8 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#ddd"/></svg>
</div>
<span>(9)</span>
</div>
<div class="price-block">
₹899
<span class="mrp-small">M.R.P: ₹999 (10% off)</span>
</div>
<div class="save-pill">Save 5%</div>
<div class="subtitle" style="color:#6b7b83;">(limited sizes/colours)</div>
</div>
</div>
</div>
<!-- Bottom Navigation -->
<div class="bottom-nav">
<div class="nav-item">
<svg width="52" height="52" viewBox="0 0 24 24">
<path d="M3 10l9-7 9 7v9a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1v-9z" fill="#0f60ff"/>
</svg>
<div class="label">Home</div>
</div>
<div class="nav-item">
<svg width="52" height="52" viewBox="0 0 24 24">
<circle cx="12" cy="8" r="4" fill="#1f2a2b"/>
<path d="M4 20c0-4 4-7 8-7s8 3 8 7" fill="none" stroke="#1f2a2b" stroke-width="2"/>
</svg>
<div class="label">You</div>
</div>
<div class="nav-item">
<svg width="52" height="52" viewBox="0 0 24 24">
<path d="M12 6a6 6 0 1 1 0 12 6 6 0 0 1 0-12z" fill="#1f2a2b"/>
<path d="M10 12h4" stroke="#fff" stroke-width="2"/>
</svg>
<div class="label">More</div>
</div>
<div class="nav-item">
<svg width="52" height="52" viewBox="0 0 24 24">
<path d="M6 6h14l-2 10H8L6 6z" fill="#1f2a2b"/>
<circle cx="9" cy="19" r="2" fill="#1f2a2b"/>
<circle cx="17" cy="19" r="2" fill="#1f2a2b"/>
</svg>
<div class="label">Cart</div>
</div>
<div class="nav-item">
<svg width="52" height="52" viewBox="0 0 24 24">
<path d="M4 6h16M4 12h16M4 18h16" stroke="#1f2a2b" stroke-width="2" stroke-linecap="round"/>
</svg>
<div class="label">Menu</div>
</div>
</div>
</div>
</body>
</html> |