File size: 6,811 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Women - Home</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
  }

  /* Status bar */
  .statusbar {
    height: 110px;
    padding: 24px 36px 0 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-size: 34px;
  }
  .status-left { display: flex; align-items: center; gap: 18px; }
  .status-dots { display: flex; gap: 12px; align-items: center; }
  .dot { width: 18px; height: 18px; background: #1a1a1a; border-radius: 50%; display: inline-block; }
  .status-right { display: flex; align-items: center; gap: 20px; }
  .icon-sm svg { width: 36px; height: 36px; fill: #333; }

  /* Top nav */
  .topbar {
    height: 120px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .topbar-left, .topbar-right { display: flex; align-items: center; gap: 28px; }
  .menu-icon svg, .heart-icon svg, .search-icon svg, .chev-icon svg { width: 44px; height: 44px; }
  .title {
    font-weight: 700;
    font-size: 44px;
    letter-spacing: 0.5px;
  }

  /* Tabs */
  .tabs {
    height: 110px;
    display: flex;
    align-items: flex-end;
    padding: 0 36px;
    border-bottom: 1px solid #eee;
    gap: 48px;
  }
  .tab {
    font-size: 34px;
    color: #444;
    padding: 0 4px 24px 4px;
    position: relative;
  }
  .tab.active { color: #111; font-weight: 700; }
  .tab.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 6px; background: #2D63FF; border-radius: 3px;
  }
  .tab .blue-dot {
    width: 14px; height: 14px; background: #2D63FF; border-radius: 50%;
    position: absolute; right: -18px; top: 14px;
  }

  /* Promo banner */
  .promo {
    margin: 18px 0 10px 0;
    padding: 0 36px;
  }
  .promo-box {
    width: 100%;
    height: 240px;
    background: #F4F3EF;
    border: 1px solid #E0E0E0;
    display: flex; align-items: center; justify-content: center;
    color: #333;
    font-size: 36px;
    text-align: center;
    border-radius: 10px;
  }

  /* Grid of cards */
  .grid {
    padding: 20px 36px 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .card-image {
    width: 100%;
    height: 560px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: #666;
    font-size: 30px;
    text-align: center;
    padding: 12px;
    box-sizing: border-box;
  }
  .card-title {
    text-align: center;
    margin-top: 22px;
    font-weight: 800;
    font-size: 44px;
    letter-spacing: 1px;
  }
  .card-sub {
    text-align: center;
    margin-top: 10px;
    color: #7A7A7A;
    font-size: 32px;
  }

  /* Bottom home indicator */
  .home-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 26px;
    width: 420px;
    height: 14px;
    background: #C7C7C7;
    border-radius: 8px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="statusbar">
    <div class="status-left">
      <div>8:55</div>
      <div class="status-dots">
        <span class="dot" style="background:#BDBDBD;"></span>
        <span class="dot" style="background:#1a1a1a;"></span>
        <span class="dot" style="background:#1a1a1a;"></span>
        <span class="dot" style="background:#1a1a1a;"></span>
        <span style="width:10px;height:10px;background:#999;border-radius:50%;display:inline-block;"></span>
      </div>
    </div>
    <div class="status-right">
      <span class="icon-sm" title="Wi-Fi">
        <svg viewBox="0 0 24 24"><path d="M2 8c5.5-4.7 14.5-4.7 20 0l-2 2c-4.1-3.5-11.9-3.5-16 0L2 8zm4 4c3.2-2.7 8.8-2.7 12 0l-2 2c-2.3-1.9-5.7-1.9-8 0l-2-2zm4 4c1.1-.9 2.9-.9 4 0l-2 2-2-2z"/></svg>
      </span>
      <span class="icon-sm" title="Battery">
        <svg viewBox="0 0 24 24"><path d="M17 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2v2H3V4h14v2zM5 6v12h10V6H5z"/></svg>
      </span>
    </div>
  </div>

  <!-- Top navigation -->
  <div class="topbar">
    <div class="topbar-left">
      <span class="menu-icon" aria-label="menu">
        <svg viewBox="0 0 24 24"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
      </span>
      <div class="title">WOMEN</div>
      <span class="chev-icon">
        <svg viewBox="0 0 24 24"><path d="M7 9l5 5 5-5H7z"/></svg>
      </span>
    </div>
    <div class="topbar-right">
      <span class="heart-icon" aria-label="favorites">
        <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.9-9.5-8C-0.7 9.1 1.2 4 6 4c2.2 0 3.6 1.2 4 2 0.4-0.8 1.8-2 4-2 4.8 0 6.7 5.1 3.5 9-2.5 3.1-9.5 8-9.5 8z" fill="none" stroke="#111" stroke-width="2"/></svg>
      </span>
      <span class="search-icon" aria-label="search">
        <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 105.3 14l5 5 1.4-1.4-5-5A8 8 0 0010 2zm0 2a6 6 0 110 12 6 6 0 010-12z"/></svg>
      </span>
    </div>
  </div>

  <!-- Tabs -->
  <div class="tabs">
    <div class="tab active">HOME</div>
    <div class="tab">CATEGORIES</div>
    <div class="tab">NEW IN</div>
    <div class="tab">FOR YOU <span class="blue-dot"></span></div>
  </div>

  <!-- Promo banner -->
  <div class="promo">
    <div class="promo-box">[IMG: Promo banner - The up-to-70%-off edit • Black Friday starts here]</div>
  </div>

  <!-- Cards grid -->
  <div class="grid">

    <!-- Row 1 -->
    <div class="card">
      <div class="card-image">[IMG: Nighttime outfit – blazer and bralette on a promenade]</div>
      <div class="card-title">THE PARTYWEAR DROP</div>
      <div class="card-sub">Ft. 'who is THAT' energy</div>
    </div>

    <div class="card">
      <div class="card-image">[IMG: Cozy pink faux-fur coat and knit beanie in snowy scene]</div>
      <div class="card-title">FROSTY 'FITS</div>
      <div class="card-sub">Stay snug</div>
    </div>

    <!-- Row 2 -->
    <div class="card">
      <div class="card-image">[IMG: Two friends in lounge – sequined dress and relaxed denim]</div>
      <div class="card-title">TOPSHOP</div>
      <div class="card-sub">Peep the next phase</div>
    </div>

    <div class="card">
      <div class="card-image">[IMG: Gift shop shelves with hats, skincare, and colorful boxes]</div>
      <div class="card-title">THE GIFT SHOP</div>
      <div class="card-sub">Secure the goods early</div>
    </div>

  </div>

  <!-- Home indicator -->
  <div class="home-indicator"></div>
</div>
</body>
</html>