File size: 7,139 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Amazon Search Suggestions - 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, #a9dcd4 0%, #bfe6de 40%, #ffffff 40%);
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    box-sizing: border-box;
    color: #1a1a1a;
    font-size: 40px;
  }
  .status-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .icon-dot {
    width: 18px;
    height: 18px;
    background: #2f2f2f;
    border-radius: 50%;
    display: inline-block;
  }
  .icon-battery {
    width: 40px;
    height: 20px;
    border: 3px solid #2f2f2f;
    border-radius: 4px;
    position: relative;
  }
  .icon-battery::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 5px;
    width: 6px;
    height: 10px;
    background: #2f2f2f;
    border-radius: 1px;
  }

  /* Search area */
  .search-area {
    position: absolute;
    top: 90px;
    left: 0;
    width: 1080px;
    height: 160px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .back-btn {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .search-box {
    flex: 1;
    height: 120px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.06) inset;
    display: flex;
    align-items: center;
    padding: 0 34px;
    box-sizing: border-box;
  }
  .search-icon {
    width: 54px;
    height: 54px;
    margin-right: 20px;
  }
  .search-placeholder {
    font-size: 42px;
    color: #3a3a3a;
  }

  /* Suggestions list background */
  .suggestions {
    position: absolute;
    top: 250px;
    left: 0;
    width: 1080px;
    bottom: 0;
    background: #ffffff;
  }
  .suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 36px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 54px;
    color: #202020;
    letter-spacing: 0.2px;
  }
  .suggestion-item .light {
    font-weight: 500;
  }
  .suggestion-item .bold {
    font-weight: 700;
  }
  .right-arrow {
    width: 48px;
    height: 48px;
    opacity: 0.6;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>5:43</div>
    <div class="status-icons">
      <span class="icon-dot"></span>
      <span style="font-size: 36px; color:#2f2f2f;">42°</span>
      <span class="icon-dot" style="width:22px;height:22px;"></span>
      <span class="icon-dot"></span>
      <span class="icon-dot"></span>
      <span class="icon-dot"></span>
      <div class="icon-battery"></div>
    </div>
  </div>

  <!-- Search area -->
  <div class="search-area">
    <div class="back-btn">
      <svg width="64" height="64" viewBox="0 0 24 24">
        <path d="M15 18l-6-6 6-6" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="search-box">
      <svg class="search-icon" viewBox="0 0 24 24">
        <circle cx="10" cy="10" r="7" fill="none" stroke="#333" stroke-width="2"/>
        <line x1="15.5" y1="15.5" x2="22" y2="22" stroke="#333" stroke-width="2" stroke-linecap="round"/>
      </svg>
      <div class="search-placeholder">Search Amazon.in</div>
    </div>
  </div>

  <!-- Suggestions list -->
  <div class="suggestions">
    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">black</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">with heels</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">metro</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">for office</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">bata</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">with lace</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">flat</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">without heels</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>

    <div class="suggestion-item">
      <div><span class="light">women formal shoes</span> <span class="bold">for office wear</span></div>
      <svg class="right-arrow" viewBox="0 0 24 24">
        <path d="M8 4l8 8-8 8" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
  </div>

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