File size: 8,070 Bytes
c32f9a6 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Search Results - Door Hinges</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: #F3F4F6;
}
/* Status bar */
.status-bar {
height: 96px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 32px;
color: #555;
font-size: 28px;
background: #FFFFFF;
}
.status-left { font-weight: 600; }
.status-right { display: flex; gap: 18px; align-items: center; }
.status-icon svg { width: 34px; height: 34px; fill: #555; }
/* Header */
.header {
height: 140px;
background: #FFFFFF;
border-bottom: 1px solid #E6E6E6;
display: flex;
align-items: center;
padding: 0 24px;
gap: 20px;
}
.icon-btn {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
}
.icon-btn svg { width: 36px; height: 36px; fill: #333; }
.search-input {
flex: 1;
height: 88px;
background: #F1F1F1;
border: 1px solid #DDDDDD;
border-radius: 44px;
display: flex;
align-items: center;
padding: 0 20px;
gap: 18px;
}
.search-field {
flex: 1;
color: #6B7280;
font-size: 32px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.search-utilities { display: flex; gap: 18px; }
.search-utilities .util { width: 48px; height: 48px; display:flex; align-items:center; justify-content:center; }
.search-utilities svg { width: 34px; height: 34px; fill: #555; }
.cart-btn { margin-left: 8px; }
/* Sort / Filter bar */
.sort-filter {
height: 110px;
background: #FFFFFF;
display: flex;
align-items: center;
border-bottom: 1px solid #E6E6E6;
}
.sf-item {
width: 540px;
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
color: #1F2937;
font-size: 34px;
font-weight: 600;
}
.sf-item svg { width: 36px; height: 36px; fill: #374151; }
.sf-divider {
position: absolute;
left: 540px;
width: 1px;
height: 56px;
background: #E5E7EB;
}
.badge {
position: relative;
display: inline-block;
}
.badge::after {
content: "1";
position: absolute;
top: -12px;
right: -14px;
background: #EF4444;
color: #fff;
font-size: 22px;
line-height: 22px;
padding: 4px 8px;
border-radius: 14px;
border: 2px solid #FFFFFF;
}
/* Products grid */
.products {
position: relative;
display: grid;
grid-template-columns: 540px 540px;
grid-auto-rows: auto;
background: #FFFFFF;
}
.products .col { min-height: 820px; }
.products .col.left { border-right: 1px solid #E6E6E6; }
.product-card {
padding: 24px;
}
.product-image {
width: 492px;
height: 436px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 28px;
position: relative;
border-radius: 6px;
margin-bottom: 22px;
}
.heart {
position: absolute;
top: 12px;
right: 12px;
width: 40px;
height: 40px;
}
.title {
font-size: 36px;
color: #111827;
margin-bottom: 14px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.price-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
}
.discount {
display: flex;
align-items: center;
color: #10B981;
font-size: 34px;
font-weight: 700;
gap: 8px;
}
.old-price {
font-size: 34px;
color: #9CA3AF;
text-decoration: line-through;
}
.new-price {
font-size: 40px;
font-weight: 800;
color: #111827;
}
.stock-warning {
color: #C81D63;
font-size: 34px;
font-weight: 700;
margin-bottom: 22px;
}
.delivery {
color: #111827;
font-size: 32px;
}
/* Large light area below content (as in screenshot) */
.spacer {
height: 1400px;
background: #F3F4F6;
border-top: 1px solid #E6E6E6;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">8:42</div>
<div class="status-right">
<div class="status-icon">
<svg viewBox="0 0 24 24"><path d="M2 12a10 10 0 1 0 20 0A10 10 0 0 0 2 12zm5 0a5 5 0 1 1 10 0 5 5 0 0 1-10 0z"/></svg>
</div>
<div class="status-icon">
<svg viewBox="0 0 24 24"><path d="M3 18h18v2H3v-2zm2-5h14v2H5v-2zm2-5h10v2H7V8z"/></svg>
</div>
<div class="status-icon">
<svg viewBox="0 0 24 24"><path d="M4 8l8-6 8 6v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8zm8-3.5L6.5 8H17.5L12 4.5z"/></svg>
</div>
<div class="status-icon">
<svg viewBox="0 0 24 24"><path d="M12 5a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm7 12H5a2 2 0 0 0-2 2v1h18v-1a2 2 0 0 0-2-2z"/></svg>
</div>
<div class="status-icon">
<svg viewBox="0 0 24 24"><path d="M17 7a5 5 0 1 1-10 0 5 5 0 0 1 10 0zM2 21h20v2H2z"/></svg>
</div>
</div>
</div>
<!-- Header with back, search box, cart -->
<div class="header">
<div class="icon-btn">
<svg viewBox="0 0 24 24"><path d="M15.5 5.5L9 12l6.5 6.5-1.4 1.4L6.2 12l7.9-7.9 1.4 1.4z"/></svg>
</div>
<div class="search-input">
<svg viewBox="0 0 24 24"><path d="M15.5 15.5 20 20l-1.5 1.5-4.5-4.5v-.8l-.3-.3a6 6 0 1 1 .8-.8l.3.3h.7zM10 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10z"/></svg>
<div class="search-field">door hinges 5 inch</div>
<div class="search-utilities">
<div class="util">
<svg viewBox="0 0 24 24"><path d="M12 3a3 3 0 0 1 3 3v4a3 3 0 1 1-6 0V6a3 3 0 0 1 3-3zm-4 13h8v3H8v-3z"/></svg>
</div>
<div class="util">
<svg viewBox="0 0 24 24"><path d="M7 7h3l2-2h4a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1zM12 9a4 4 0 1 0 0 8 4 4 0 0 0 0-8z"/></svg>
</div>
</div>
</div>
<div class="icon-btn cart-btn">
<svg viewBox="0 0 24 24"><path d="M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zM6 6h15l-2 8H8L6 6zm-2-2H1v2h2l3 10h12v-2H7.6L6.2 6z"/></svg>
</div>
</div>
<!-- Sort / Filter row -->
<div class="sort-filter">
<div class="sf-item">
<svg viewBox="0 0 24 24"><path d="M7 6h2v12H7V6zm8 0h2v12h-2V6zM4 10h6v2H4v-2zm10 0h6v2h-6v-2z"/></svg>
<span>Sort</span>
</div>
<div class="sf-divider"></div>
<div class="sf-item">
<span class="badge">
<svg viewBox="0 0 24 24"><path d="M4 7h12v2H4V7zm0 4h8v2H4v-2zm0 4h16v2H4v-2zM16 7h4v2h-4V7zm8 4"/></svg>
</span>
<span>Filter</span>
</div>
</div>
<!-- Products grid -->
<div class="products">
<div class="col left">
<div class="product-card">
<div class="product-image">
[IMG: Stainless steel door hinges collage]
<svg class="heart" viewBox="0 0 24 24">
<path d="M12 21s-6.5-4.3-8.5-7A5 5 0 0 1 12 6a5 5 0 0 1 8.5 8c-2 2.7-8.5 7-8.5 7z" fill="none" stroke="#C0C0C0" stroke-width="1.6"/>
</svg>
</div>
<div class="title">BESTLINING Stainless St...</div>
<div class="price-row">
<div class="discount">
<svg viewBox="0 0 24 24" width="24" height="24" style="fill:#10B981;"><path d="M12 15L6 9h12z"/></svg>
33%
</div>
<div class="old-price">2,999</div>
<div class="new-price">₹1,999</div>
</div>
<div class="stock-warning">Only few left</div>
<div class="delivery">Free delivery</div>
</div>
</div>
<div class="col right">
<!-- right column intentionally empty to match screenshot's blank area -->
</div>
</div>
<!-- Spacer to match long page height -->
<div class="spacer"></div>
</div>
</body>
</html> |