File size: 7,116 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
<html>
<head>
<meta charset="UTF-8">
<title>Hardware Shack - Interior Emulsion</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:#ffffff;
  }
  /* Top system/status bar */
  .status-bar {
    position:absolute; top:0; left:0; width:100%; height:90px;
    background:#3b0aa8; color:#fff; display:flex; align-items:center; padding:0 40px; box-sizing:border-box;
  }
  .status-time { font-size:38px; font-weight:600; margin-right:20px; }
  .status-icons { margin-left:auto; display:flex; gap:28px; align-items:center; }
  .dot { width:14px; height:14px; background:#fff; border-radius:50%; opacity:0.7; }
  /* App header */
  .app-header {
    position:absolute; top:90px; left:0; width:100%; height:150px;
    background:#3b0aa8; color:#fff; display:flex; align-items:center; padding:0 40px; box-sizing:border-box;
  }
  .hamburger { width:72px; height:72px; margin-right:20px; }
  .hamburger svg { width:100%; height:100%; }
  .brand {
    display:flex; align-items:center; gap:24px;
  }
  .brand-logo {
    width:120px; height:120px; background:#E0E0E0; border:1px solid #BDBDBD; border-radius:16px;
    display:flex; justify-content:center; align-items:center; color:#757575; font-size:24px;
  }
  .brand-name { font-size:54px; font-weight:700; letter-spacing:1px; }
  .cart-wrap { margin-left:auto; }
  .cart-btn {
    width:100px; height:100px; background:#f4c23a; border-radius:50%; display:flex; justify-content:center; align-items:center;
    box-shadow:0 4px 8px rgba(0,0,0,0.25);
  }
  /* Content area */
  .content {
    position:absolute; top:240px; left:0; right:0; bottom:0;
    background:#fff; padding:40px; box-sizing:border-box;
  }
  .breadcrumbs { color:#777; font-size:32px; margin-bottom:24px; }
  .page-title { font-size:48px; font-weight:700; color:#111; line-height:58px; }
  .filter-bar { display:flex; align-items:center; gap:18px; color:#333; font-weight:700; font-size:40px; margin:34px 0; }
  .filter-icon { width:48px; height:48px; }
  .sort-row { margin-bottom:28px; }
  .select-box {
    width:720px; height:84px; border:1px solid #ccc; border-radius:12px; display:flex; align-items:center; justify-content:space-between;
    padding:0 28px; font-size:36px; color:#333;
  }
  .chev { width:36px; height:36px; }
  /* Product grid */
  .grid { display:flex; flex-wrap:wrap; gap:36px; }
  .card { width:486px; }
  .img-box {
    position:relative; width:100%; height:510px; background:#E0E0E0; border:1px solid #BDBDBD;
    display:flex; justify-content:center; align-items:center; color:#757575; font-size:32px;
  }
  .badge {
    position:absolute; top:18px; left:18px; width:120px; height:120px; background:#000; color:#fff; border-radius:60px;
    display:flex; justify-content:center; align-items:center; font-size:38px; font-weight:700;
  }
  .category { color:#8a8a8a; font-size:28px; margin-top:22px; text-transform:uppercase; letter-spacing:1px; }
  .title { font-size:36px; color:#222; margin-top:8px; line-height:42px; }
  .price { font-size:40px; color:#000; margin:16px 0; }
  .price .strike { color:#999; text-decoration:line-through; margin-right:12px; }
  .btn {
    height:92px; background:#f0c34c; color:#333; font-weight:800; border:none; border-radius:12px; font-size:34px;
    padding:0 30px; display:flex; align-items:center; justify-content:center; box-shadow:0 3px 6px rgba(0,0,0,0.15);
  }
  .btn.secondary { background:#f7e7a6; }
  .rating { color:#d13b3b; font-size:44px; letter-spacing:6px; }
  /* Divider line mimicking page spacing */
  .spacer { height:30px; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-time">12:51</div>
    <div class="status-icons">
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="dot"></div>
    </div>
  </div>

  <!-- App header -->
  <div class="app-header">
    <div class="hamburger">
      <svg viewBox="0 0 100 100">
        <rect x="10" y="22" width="80" height="10" fill="#fff"/>
        <rect x="10" y="45" width="80" height="10" fill="#fff"/>
        <rect x="10" y="68" width="80" height="10" fill="#fff"/>
      </svg>
    </div>
    <div class="brand">
      <div class="brand-logo">[IMG: Hardware Shack Logo]</div>
      <div class="brand-name">HARDWARE SHACK</div>
    </div>
    <div class="cart-wrap">
      <div class="cart-btn">
        <svg width="60" height="60" viewBox="0 0 24 24">
          <path fill="#fff" d="M7 4h-2l-1 2v2h2l3 9h9l3-9h-14l-1-4zm3 16a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm8 0a2 2 0 1 0 .001 4 2 2 0 0 0-.001-4z"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="breadcrumbs">HOME / SHOP /</div>
    <div class="page-title">SEARCH RESULTS FOR “INTERIOR EMULSION ”</div>

    <div class="filter-bar">
      <div class="filter-icon">
        <svg viewBox="0 0 24 24">
          <path fill="#333" d="M3 5h18v2l-7 7v4l-4 2v-6l-7-7z"/>
        </svg>
      </div>
      FILTER
    </div>

    <div class="sort-row">
      <div class="select-box">
        <span>Relevance</span>
        <svg class="chev" viewBox="0 0 24 24">
          <path fill="#555" d="M7 10l5 5 5-5z"/>
        </svg>
      </div>
    </div>

    <div class="grid">
      <!-- Card 1 -->
      <div class="card">
        <div class="img-box">
          <div class="badge">-11%</div>
          [IMG: Asian Paints TruCare Interior Wall Primer Bucket]
        </div>
        <div class="category">Primer and wall putty</div>
        <div class="title">Asian Paints Trucare Interior Wall Primer – Water Thinnable</div>
        <div class="price">₹258.00 – ₹3,060.00</div>
        <button class="btn secondary">SELECT OPTIONS</button>
      </div>

      <!-- Card 2 -->
      <div class="card">
        <div class="img-box">
          <div class="badge">-13%</div>
          [IMG: Asian Paints Apcolite Premium Emulsion White (20 litre)]
        </div>
        <div class="category">Apcolite</div>
        <div class="title">Asian Paints Apcolite Premium Emulsion White (20 litre)</div>
        <div class="rating">★★★★★</div>
        <div class="price"><span class="strike">₹10,578.00</span> ₹9,198.00</div>
        <button class="btn">ADD TO CART</button>
      </div>

      <!-- Card 3 (partial, bottom row) -->
      <div class="card">
        <div class="img-box">
          <div class="badge">-13%</div>
          [IMG: Apcolite Premium Emulsion Bucket]
        </div>
        <div class="category">Apcolite</div>
        <div class="title">Apcolite Premium Emulsion</div>
      </div>

      <!-- Card 4 (partial) -->
      <div class="card">
        <div class="img-box">
          <div class="badge">-13%</div>
          [IMG: Apcolite Premium Emulsion Bucket]
        </div>
        <div class="category">Apcolite</div>
        <div class="title">Apcolite Premium Emulsion</div>
      </div>
    </div>

  </div>
</div>
</body>
</html>