File size: 7,706 Bytes
0e1717f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1440, initial-scale=1.0">
<title>More Like This - Tools</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1440px; height: 3120px;
    position: relative; overflow: hidden;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
  }

  /* Status bar */
  .status-bar {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    font-size: 42px;
    color: #333;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .dot { width: 14px; height: 14px; background:#9e9e9e; border-radius:50%; display:inline-block; }

  /* Header actions */
  .header {
    position: relative;
    padding: 24px 48px 0 48px;
  }
  .back-btn {
    width: 96px; height: 96px; border-radius: 48px;
    border: 1px solid #e0e0e0; background: #fff;
    display: flex; align-items: center; justify-content: center;
  }
  .header-actions {
    position: absolute; right: 48px; top: 0;
    display: flex; gap: 24px;
  }
  .circle-icon {
    width: 96px; height: 96px; border-radius: 48px;
    border: 1px solid #e0e0e0; background: #fff;
    display: flex; align-items: center; justify-content: center;
  }
  .icon { width: 48px; height: 48px; }

  /* Tabs */
  .tabs-wrap {
    margin: 24px 48px 16px 48px;
    background: #f1f1f1;
    border-radius: 40px;
    padding: 8px;
    display: flex;
    gap: 8px;
  }
  .tab {
    flex: 1;
    text-align: center;
    padding: 24px 0;
    border-radius: 32px;
    font-size: 40px;
    color: #666;
  }
  .tab.active {
    background: #ffffff;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-weight: bold;
  }

  /* Divider line under tabs */
  .divider { height: 8px; background: #f3f3f3; }

  /* Product grid */
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 48px;
    padding: 32px 48px 0 48px;
  }
  .product {
    border-top: 8px solid #f3f3f3;
    padding-top: 32px;
  }
  .img {
    width: 100%; height: 620px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 44px;
    border-radius: 12px;
  }
  .badge {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 36px;
    font-weight: bold;
  }
  .badge.green { background: #e7f4e7; color: #2e7d32; }
  .badge.pink { background: #fde7f3; color: #b0006d; }

  .title {
    margin-top: 18px;
    font-size: 42px;
    line-height: 1.3;
    color: #333;
  }
  .price-row {
    display: flex; align-items: baseline; gap: 18px;
    margin-top: 16px;
  }
  .price {
    font-size: 54px; font-weight: 800; color: #000;
  }
  .old-price {
    font-size: 40px; color: #888; text-decoration: line-through;
  }
  .off {
    font-size: 40px; color: #b47c12; font-weight: bold;
  }

  /* Bottom gesture bar */
  .gesture-bar {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    width: 420px; height: 16px; background: #000; border-radius: 12px;
    opacity: 0.8;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div>2:27</div>
    <div class="status-right">
      <!-- simple icons -->
      <svg class="icon" viewBox="0 0 24 24" fill="#616161">
        <path d="M3 9h18v6H3z"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24" fill="#616161">
        <path d="M12 3l10 9H2z"/>
      </svg>
      <span class="dot"></span>
      <svg class="icon" viewBox="0 0 24 24" fill="#616161">
        <path d="M4 4h16v14H4z"/><path d="M8 20h8v1H8z"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24" fill="#616161">
        <path d="M6 18h12l2-9H4zM6 6h2l1-2h6l1 2h2"/>
      </svg>
    </div>
  </div>

  <!-- Header with back and actions -->
  <div class="header">
    <div class="back-btn">
      <svg class="icon" viewBox="0 0 24 24" fill="#555">
        <path d="M15 18l-6-6 6-6"/>
      </svg>
    </div>
    <div class="header-actions">
      <div class="circle-icon">
        <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2">
          <circle cx="11" cy="11" r="7"></circle>
          <path d="M20 20l-4-4"></path>
        </svg>
      </div>
      <div class="circle-icon">
        <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2">
          <path d="M3 11l9-8 9 8v9H3z"></path>
          <path d="M9 20v-5h6v5"></path>
        </svg>
      </div>
      <div class="circle-icon">
        <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2">
          <path d="M6 6h15l-2 10H7L6 6z"></path>
          <circle cx="9" cy="20" r="1.5"></circle>
          <circle cx="17" cy="20" r="1.5"></circle>
        </svg>
      </div>
    </div>
  </div>

  <!-- Tabs -->
  <div class="tabs-wrap">
    <div class="tab">Details</div>
    <div class="tab active">More Like This</div>
    <div class="tab">Reviews</div>
  </div>
  <div class="divider"></div>

  <!-- Product Grid -->
  <div class="grid">
    <!-- Card 1 -->
    <div class="product">
      <div class="img">[IMG: 102pc Drill & Tool Kit Case]</div>
      <div class="badge green">PRICE DROP</div>
      <div class="title">BD - 102pc drill machine 650W & tool accessories set</div>
      <div class="price-row">
        <div class="price">₹2,973</div>
        <div class="old-price">₹4,999</div>
        <div class="off">41% OFF</div>
      </div>
    </div>

    <!-- Card 2 -->
    <div class="product">
      <div class="img">[IMG: Orange Ratchet Socket Set Case]</div>
      <div class="title">Shopper52 - 46 in 1 Pcs Tool Kit & socket set</div>
      <div class="price-row">
        <div class="price">₹547</div>
        <div class="old-price">₹1,999</div>
        <div class="off">73% OFF</div>
      </div>
    </div>

    <!-- Card 3 -->
    <div class="product">
      <div class="img">[IMG: Black Ratchet Socket Kit Case]</div>
      <div class="badge green">PRICE DROP</div>
      <div class="title">BD 46 Pcs Screwdriver Set</div>
      <div class="price-row">
        <div class="price">₹499</div>
        <div class="old-price">₹1,250</div>
        <div class="off">60% OFF</div>
      </div>
    </div>

    <!-- Card 4 -->
    <div class="product">
      <div class="img">[IMG: Precision Screwdriver Bits with Pouch]</div>
      <div class="badge pink">TOP RATED</div>
      <div class="title">HOMETALES 25 in 1 Screwdriver Precision Bits Kit</div>
      <div class="price-row">
        <div class="price">₹299</div>
        <div class="old-price">₹1,199</div>
        <div class="off">75% OFF</div>
      </div>
    </div>

    <!-- Card 5 -->
    <div class="product">
      <div class="img">[IMG: Cordless Lighted Electric Screwdriver]</div>
      <div class="title">Rechargeable Electric Screwdriver with Light</div>
      <div class="price-row">
        <div class="price">₹1,799</div>
        <div class="old-price">₹3,499</div>
        <div class="off">49% OFF</div>
      </div>
    </div>

    <!-- Card 6 -->
    <div class="product">
      <div class="img">[IMG: Red Socket Bit Set Case]</div>
      <div class="title">Compact Socket Bit Kit 40 Pcs</div>
      <div class="price-row">
        <div class="price">₹699</div>
        <div class="old-price">₹1,799</div>
        <div class="off">61% OFF</div>
      </div>
    </div>
  </div>

  <!-- Bottom gesture bar -->
  <div class="gesture-bar"></div>
</div>
</body>
</html>