File size: 13,644 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
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hotel Listings - HNL</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
  #render-target {
    width: 1080px; height: 2400px; position: relative; overflow: hidden;
    background: #F6F7F9; color: #202124;
  }

  /* Top app bar */
  .appbar {
    padding: 28px 32px 16px 24px;
    background: #FFFFFF;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }
  .appbar-row {
    display: flex; align-items: center; justify-content: space-between;
  }
  .left-row { display: flex; align-items: center; gap: 20px; }
  .title { font-size: 44px; font-weight: 700; }
  .subtitle { color: #5f6368; font-size: 30px; margin-top: 6px; }
  .r-icons { display: flex; align-items: center; gap: 28px; color:#5f6368; }
  .icon-btn { width: 52px; height: 52px; display:flex; align-items:center; justify-content:center; }

  /* Filter chips */
  .chip-row {
    background: #FFFFFF; padding: 22px 16px 26px; display: flex; gap: 18px; overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .chip {
    background:#fff; padding: 22px 28px; border-radius: 18px; border: 3px solid #E0E0E0; min-width: 240px;
    line-height: 1.1;
  }
  .chip strong { display:block; font-size:36px; }
  .chip span { display:block; color:#5f6368; font-size:26px; margin-top:6px; }
  .chip.active { border-color:#202124; box-shadow: 0 2px 0 #202124 inset; }

  /* Cards */
  .list { padding-top: 14px; }
  .card {
    width: 1004px; margin: 18px auto; border-radius: 28px; background:#fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); display:flex; overflow:hidden;
  }
  .card-img {
    width: 360px; height: 540px; position: relative; background:#E0E0E0; border-right:1px solid #BDBDBD;
    display:flex; align-items:center; justify-content:center; color:#757575; font-size:28px; text-align:center;
  }
  .img-overlay-heart {
    position:absolute; top:16px; left:16px; width:56px; height:56px; border-radius:50%; background:rgba(255,255,255,0.85);
    display:flex; align-items:center; justify-content:center;
  }
  .img-dots {
    position:absolute; left:22px; bottom:18px; display:flex; gap:10px;
  }
  .img-dot { width:22px; height:22px; border-radius:50%; background:#FFFFFF; opacity:0.9; }
  .img-dot.dim { background:#D0D0D0; }

  .card-body { flex:1; padding:28px 28px 24px; position: relative; }
  .badge {
    display:inline-block; padding:10px 16px; background:#EEF1F4; color:#202124; border-radius:10px; font-weight:600; font-size:26px;
    margin-bottom:14px;
  }
  .hotel-title { font-size:40px; font-weight:800; line-height:1.2; margin: 6px 0 8px; }
  .rating-row { display:flex; align-items:center; gap:14px; color:#202124; margin: 4px 0 6px; }
  .rating-row .label { color:#5f6368; font-size:28px; }
  .location { color:#5f6368; font-size:28px; margin: 6px 0 14px; }

  .bullet { display:flex; align-items:flex-start; gap:12px; color:#5f6368; font-size:26px; margin: 10px 0; }
  .bullet .note { color:#6C4DFF; font-weight:700; }

  .price-area { margin-top: 16px; }
  .price { color:#6C4DFF; font-size:56px; font-weight:800; line-height:1; }
  .old { color:#8b8f93; text-decoration: line-through; font-size:30px; margin-top:6px; }
  .sites { color:#8b8f93; font-size:26px; margin-top:2px; }

  .cta {
    position:absolute; right:28px; bottom:28px; padding:22px 34px; border-radius:16px;
    background: linear-gradient(135deg, #FF7A18, #FF3D00); color:#fff; font-weight:700; font-size:32px; border:none;
  }

  /* sticky bottom action bar */
  .sticky {
    position:absolute; left:120px; right:120px; bottom:160px; background:#2E343B; color:#fff;
    border-radius:24px; box-shadow: 0 12px 24px rgba(0,0,0,0.25); display:flex; padding:22px; gap:18px; align-items:center;
  }
  .sticky .pill {
    flex:1; display:flex; align-items:center; gap:18px; justify-content:center; background:#394049; padding:18px 16px;
    border-radius:18px; font-size:32px; font-weight:600;
  }
  .divider-v { width: 18px; }

  /* home indicator */
  .home-indicator {
    position:absolute; left:50%; transform:translateX(-50%); bottom:64px; width:360px; height:10px; background:#000;
    opacity:0.18; border-radius:10px;
  }

  /* Simple utility icons */
  .svg { width:36px; height:36px; }
  .star { width:28px; height:28px; fill:#202124; }
  .muted { color:#5f6368; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Top area -->
  <div class="appbar">
    <div class="appbar-row">
      <div class="left-row">
        <div class="icon-btn">
          <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#202124" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
            <path d="M15 5L8 12l7 7"/>
          </svg>
        </div>
        <div>
          <div class="title">HNL</div>
          <div class="subtitle">Jan 29 – Feb 5  •  <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M3 10h18M6 10V6h12v4M5 20h14a2 2 0 0 0 2-2v-6H3v6a2 2 0 0 0 2 2z"/></svg> 1  •  <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm6 8H6a6 6 0 0 1 12 0z"/></svg> 1</div>
        </div>
      </div>
      <div class="r-icons">
        <div class="icon-btn" title="Share">
          <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2">
            <circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/>
            <path d="M8.7 10.9l6.6-3.8M8.7 13.1l6.6 3.8"/>
          </svg>
        </div>
        <div class="icon-btn" title="Currency">
          <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M12 3v18M8 7h8M8 12h8M8 17h8"/></svg>
        </div>
        <div style="font-size:28px; color:#5f6368">USD</div>
      </div>
    </div>
  </div>

  <!-- Chips -->
  <div class="chip-row">
    <div class="chip active">
      <strong>Recommended</strong>
      <span>$228</span>
    </div>
    <div class="chip">
      <strong>Cheapest</strong>
      <span>$48</span>
    </div>
    <div class="chip">
      <strong>Closest</strong>
      <span>$132</span>
    </div>
    <div class="chip">
      <strong>Deals</strong>
      <span>$228</span>
    </div>
  </div>

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

    <!-- Card 1 -->
    <div class="card">
      <div class="card-img">
        [IMG: Hotel lobby]
        <div class="img-overlay-heart">
          <svg viewBox="0 0 24 24" width="26" height="26" fill="none" stroke="#E9425E" stroke-width="2">
            <path d="M12 21s-6.5-4.3-9-7.8A5.5 5.5 0 0 1 12 5a5.5 5.5 0 0 1 9 8.2C18.5 16.7 12 21 12 21z"/>
          </svg>
        </div>
        <div class="img-dots">
          <div class="img-dot"></div>
          <div class="img-dot dim"></div>
          <div class="img-dot dim"></div>
        </div>
      </div>
      <div class="card-body">
        <div class="badge">Resort</div>
        <div class="hotel-title">Alohilani Resort Waikiki Beach</div>
        <div class="rating-row">
          <span>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
          </span>
          <span class="label">Excellent <strong>8.0</strong></span>
        </div>
        <div class="location">Waikiki</div>

        <div class="bullet">
          <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M21 15a7.5 7.5 0 0 1-15 0V6l7.5-3L21 6v9z"/><path d="M9 10h6"/></svg>
          <div>Near convention center, great view, near market</div>
        </div>

        <div class="bullet">
          <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#6C4DFF" stroke-width="2"><rect x="7" y="2" width="10" height="18" rx="2"/><circle cx="12" cy="18" r="1"/></svg>
          <div class="note">Mobile rate</div>
        </div>

        <div class="price-area">
          <div class="price">$228</div>
          <div class="old">$267</div>
          <div class="sites">13 sites</div>
        </div>

        <button class="cta">View deal</button>
      </div>
    </div>

    <!-- Card 2 -->
    <div class="card">
      <div class="card-img">
        [IMG: Pink hotel by ocean]
        <div class="img-overlay-heart">
          <svg viewBox="0 0 24 24" width="26" height="26" fill="none" stroke="#E9425E" stroke-width="2">
            <path d="M12 21s-6.5-4.3-9-7.8A5.5 5.5 0 0 1 12 5a5.5 5.5 0 0 1 9 8.2C18.5 16.7 12 21 12 21z"/>
          </svg>
        </div>
        <div class="img-dots">
          <div class="img-dot"></div>
          <div class="img-dot dim"></div>
          <div class="img-dot dim"></div>
        </div>
      </div>
      <div class="card-body">
        <div class="badge">Resort</div>
        <div class="hotel-title">The Royal Hawaiian, a Luxury Collection Resort, Waikiki</div>
        <div class="rating-row">
          <span>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
          </span>
          <span class="label">Excellent <strong>8.7</strong></span>
        </div>
        <div class="location">Waikiki</div>

        <div class="bullet">
          <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M21 15a7.5 7.5 0 0 1-15 0V6l7.5-3L21 6v9z"/><path d="M9 10h6"/></svg>
          <div>Near convention center, near shopping, beautiful beach</div>
        </div>

        <div class="price-area">
          <div class="price" style="color:#202124">$360</div>
          <div class="sites">13 sites</div>
        </div>

        <button class="cta">View deal</button>
      </div>
    </div>

    <!-- Card 3 -->
    <div class="card">
      <div class="card-img">
        [IMG: Hotel suite city view]
        <div class="img-overlay-heart">
          <svg viewBox="0 0 24 24" width="26" height="26" fill="none" stroke="#E9425E" stroke-width="2">
            <path d="M12 21s-6.5-4.3-9-7.8A5.5 5.5 0 0 1 12 5a5.5 5.5 0 0 1 9 8.2C18.5 16.7 12 21 12 21z"/>
          </svg>
        </div>
        <div class="img-dots">
          <div class="img-dot"></div>
          <div class="img-dot dim"></div>
          <div class="img-dot dim"></div>
        </div>
      </div>
      <div class="card-body">
        <div class="hotel-title">The Ritz-Carlton Residences, Waikiki Beach</div>
        <div class="rating-row">
          <span>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
            <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg>
          </span>
          <span class="label">Excellent <strong>9.0</strong></span>
        </div>
        <div class="location">Waikiki</div>

        <div class="bullet">
          <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M21 15a7.5 7.5 0 0 1-15 0V6l7.5-3L21 6v9z"/><path d="M9 10h6"/></svg>
          <div>Near convention center, great view, near shopping</div>
        </div>

        <div class="price-area">
          <div class="price" style="color:#202124">$541</div>
          <div class="sites">13 sites</div>
        </div>

        <button class="cta">View deal</button>
      </div>
    </div>

  </div>

  <!-- Sticky bottom bar -->
  <div class="sticky">
    <div class="pill">
      <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2"><path d="M3 10l9-7 9 7v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3z"/><path d="M9 21V9h6v12"/></svg>
      <div>Map view</div>
    </div>
    <div class="divider-v"></div>
    <div class="pill">
      <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2"><path d="M4 6h16M6 12h12M8 18h8"/></svg>
      <div>Filters</div>
    </div>
  </div>

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

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