File size: 9,090 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
<html>
<head>
<meta charset="utf-8">
<title>Reviews Modal UI</title>
<style>
  body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  #render-target {
    width:1080px; height:2400px;
    position:relative; overflow:hidden;
    background:#ffffff;
    color:#111;
  }
  /* Status bar */
  .status-bar {
    height:120px;
    padding:0 40px;
    display:flex; align-items:center; justify-content:space-between;
    font-size:42px; color:#444;
    border-bottom:1px solid #e9e9e9;
  }
  .status-icons { display:flex; gap:26px; align-items:center; }
  .icon-dot { width:16px; height:16px; background:#666; border-radius:50%; display:inline-block; }
  .top-close {
    position:absolute; right:36px; top:28px;
    width:84px; height:84px; display:flex; align-items:center; justify-content:center;
  }
  .top-close svg { width:44px; height:44px; stroke:#111; stroke-width:8; }
  /* Header */
  .header-area {
    padding:40px 40px 20px 40px;
    text-align:center;
  }
  .title { font-size:54px; font-weight:700; letter-spacing:1px; }
  .stars-row { margin-top:24px; display:flex; justify-content:center; gap:24px; }
  .star svg { width:64px; height:64px; }
  .divider { height:32px; border-bottom:1px solid #eee; }
  /* Reviews list */
  .content { padding:20px 40px 140px 40px; }
  .review { padding:36px 0; border-bottom:1px solid #efefef; }
  .review .meta {
    display:flex; justify-content:space-between; align-items:center;
    font-size:40px; color:#111;
  }
  .name { font-weight:700; }
  .verified { color:#777; font-weight:500; margin-left:10px; }
  .dot { width:10px; height:10px; background:#888; border-radius:50%; display:inline-block; margin:0 12px; transform:translateY(-6px); }
  .date { color:#666; font-size:38px; }
  .rating-row { margin:26px 0; display:flex; gap:22px; align-items:center; }
  .review-title { font-size:46px; font-weight:800; letter-spacing:0.5px; margin-bottom:18px; }
  .review-text { font-size:40px; line-height:1.38; color:#333; }
  .recommend {
    margin-top:26px; display:flex; align-items:center; gap:18px; font-size:40px; font-weight:700; color:#173a19;
  }
  .check {
    width:52px; height:52px; border-radius:50%; background:#3dbb5f;
    display:flex; align-items:center; justify-content:center;
  }
  .check svg { width:32px; height:32px; fill:none; stroke:#fff; stroke-width:6; }
  /* Bottom handle */
  .home-indicator {
    position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
    width:640px; height:18px; border-radius:9px; background:#00000020;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>5:15</div>
    <div class="status-icons">
      <span class="icon-dot" style="border-radius:6px; width:28px; height:28px;"></span>
      <span class="icon-dot"></span>
      <span class="icon-dot"></span>
      <span class="icon-dot"></span>
      <span class="icon-dot"></span>
    </div>
    <div class="top-close">
      <svg viewBox="0 0 24 24">
        <line x1="4" y1="4" x2="20" y2="20"></line>
        <line x1="20" y1="4" x2="4" y2="20"></line>
      </svg>
    </div>
  </div>

  <!-- Header -->
  <div class="header-area">
    <div class="title">57 REVIEWS</div>
    <div class="stars-row">
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg>
      </div>
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg>
      </div>
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg>
      </div>
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg>
      </div>
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg>
      </div>
    </div>
  </div>

  <div class="divider"></div>

  <!-- Content -->
  <div class="content">

    <!-- Green recommend badge (global banner in screenshot) -->
    <div class="recommend" style="margin-bottom:24px;">
      <div class="check">
        <svg viewBox="0 0 24 24"><path d="M5 13l4 4 10-10"/></svg>
      </div>
      <span>RECOMMENDS THIS PRODUCT</span>
    </div>

    <!-- Review 1 -->
    <div class="review">
      <div class="meta">
        <div>
          <span class="name">ANALAURA</span>
          <span class="dot"></span>
          <span class="verified">VERIFIED PURCHASER</span>
        </div>
      </div>

      <div class="rating-row">
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="date">SEP 16, 2023</div>
      </div>

      <div class="review-title">BOUNCY</div>
      <div class="review-text">
        So cushioned when you run. Love them. Bought the<br>
        wrong size, just a tad too big.
      </div>

      <div class="recommend">
        <div class="check">
          <svg viewBox="0 0 24 24"><path d="M5 13l4 4 10-10"/></svg>
        </div>
        <span>RECOMMENDS THIS PRODUCT</span>
      </div>
    </div>

    <!-- Review 2 -->
    <div class="review">
      <div class="meta">
        <div>
          <span class="name">AMANDA116</span>
          <span class="dot"></span>
          <span class="verified">VERIFIED PURCHASER</span>
        </div>
      </div>

      <div class="rating-row">
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="date">SEP 7, 2023</div>
      </div>

      <div class="review-title">NO REGRETS!</div>
      <div class="review-text">
        True to size fit. Very comfortable and the color was a<br>
        big hit everywhere!
      </div>

      <div class="recommend">
        <div class="check">
          <svg viewBox="0 0 24 24"><path d="M5 13l4 4 10-10"/></svg>
        </div>
        <span>RECOMMENDS THIS PRODUCT</span>
      </div>
    </div>

    <!-- Review 3 -->
    <div class="review" style="border-bottom:none;">
      <div class="meta">
        <div>
          <span class="name">EDDIE356</span>
          <span class="dot"></span>
          <span class="verified">VERIFIED PURCHASER</span>
        </div>
      </div>

      <div class="rating-row">
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24" fill="#000"><path d="M12 2l3.1 6.3 7 1-5 4.8 1.2 6.9L12 18l-6.3 3 1.2-6.9-5-4.8 7-1z"/></svg></div>
        <div class="date">SEP 4, 2023</div>
      </div>

      <div class="review-title">BEST SHOES FOR NURSES</div>
      <div class="review-text">
        My feet do not hurt after a 12 hour shift! These shoes<br>
        are amazing. My only complaint is the ground feels so<br>
        hard when I take them off. Please come out with new
      </div>
    </div>

  </div>

  <!-- Bottom iOS/Android home indicator -->
  <div class="home-indicator"></div>

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