File size: 7,218 Bytes
c32f9a6 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Product Detail - Cleats</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Helvetica Neue", Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
}
/* Top hero area */
.hero {
position: relative;
background: #edf2f4;
height: 980px;
padding: 80px 60px 0 60px;
}
.close-btn {
position: absolute;
right: 40px;
top: 60px;
width: 60px; height: 60px;
cursor: pointer;
}
.close-btn svg { width: 100%; height: 100%; }
.shoe-row {
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
margin-top: 40px;
}
.img-placeholder {
width: 900px;
height: 320px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
justify-content: center;
align-items: center;
color: #757575;
font-weight: 600;
letter-spacing: 1px;
}
.new-pill {
position: absolute;
left: 60px;
bottom: 170px;
font-size: 28px;
letter-spacing: 2px;
text-transform: uppercase;
padding: 14px 22px;
background: #ffffff;
border: 1px solid #ddd;
color: #000;
}
/* Thumbnail strip */
.thumb-strip {
position: absolute;
left: 0; right: 0;
bottom: 0;
background: #f1f1f1;
height: 190px;
border-top: 1px solid #ddd;
display: flex;
align-items: center;
padding: 0 60px;
gap: 140px;
}
.thumb {
width: 200px; height: 120px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex; justify-content: center; align-items: center;
color: #757575; font-size: 24px;
}
.strip-indicator {
position: absolute;
left: 50%; transform: translateX(-50%);
bottom: 18px;
width: 140px; height: 14px;
background: #d7d7d7;
border-radius: 7px;
}
/* Content section */
.content {
background: #fff;
padding: 60px;
}
.title-row {
position: relative;
padding-right: 120px;
}
.favorite {
position: absolute;
right: 0;
top: 0;
width: 64px; height: 64px;
}
.favorite svg { width: 100%; height: 100%; }
.product-title {
font-size: 62px;
line-height: 76px;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
color: #111;
margin: 0 0 40px 0;
}
.price-line {
font-size: 34px;
color: #111;
display: flex;
align-items: baseline;
gap: 40px;
}
.tag {
font-size: 30px;
color: #555;
letter-spacing: 3px;
text-transform: uppercase;
}
.divider {
height: 1px; background: #e6e6e6; margin: 40px 0 0 0;
}
/* Size selector */
.size-header {
display: flex; align-items: center; gap: 24px;
margin-top: 60px;
}
.size-label {
font-size: 36px; font-weight: 700; letter-spacing: 2px;
color: #222; text-transform: uppercase;
}
.ruler-box {
width: 90px; height: 70px; border: 2px solid #222;
display: flex; align-items: center; justify-content: center;
}
.ruler-box svg { width: 64px; height: 36px; }
.sizes {
margin-top: 40px;
display: flex; gap: 90px;
overflow: hidden;
padding-bottom: 20px;
}
.size-item {
font-size: 34px; color: #111;
letter-spacing: 2px;
padding-bottom: 12px;
}
.size-item.active {
border-bottom: 6px solid #111;
}
.divider-large { height: 1px; background: #e6e6e6; margin: 40px 0; }
/* Buttons */
.btn-outline, .btn-solid {
height: 140px;
border-radius: 2px;
display: flex; align-items: center; justify-content: space-between;
padding: 0 40px;
font-size: 34px; letter-spacing: 3px; font-weight: 800; text-transform: uppercase;
}
.btn-outline { border: 3px solid #111; color: #111; background: #fff; }
.btn-solid { background: #111; color: #fff; margin-top: 30px; }
.bag-icon, .arrow-icon { width: 60px; height: 60px; }
.bag-icon svg, .arrow-icon svg { width: 100%; height: 100%; }
</style>
</head>
<body>
<div id="render-target">
<!-- Top hero with product imagery -->
<div class="hero">
<div class="close-btn" aria-label="Close">
<svg viewBox="0 0 24 24">
<path d="M5 5 L19 19 M19 5 L5 19" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="shoe-row">
<div class="img-placeholder">[IMG: Cleats - Side View]</div>
<div class="img-placeholder">[IMG: Cleats - Sole / Bottom View]</div>
</div>
<div class="new-pill">NEW</div>
<div class="thumb-strip">
<div class="thumb">[IMG: Pink Variant]</div>
<div class="thumb">[IMG: Green Variant]</div>
<div class="thumb">[IMG: Pink Sole]</div>
<div class="thumb">[IMG: Green Sole]</div>
<div class="strip-indicator"></div>
</div>
</div>
<!-- Content area -->
<div class="content">
<div class="title-row">
<h1 class="product-title">Predator Accuracy+<br>Artificial Grass Cleats</h1>
<div class="favorite" aria-label="Add to wishlist">
<svg viewBox="0 0 24 24">
<path d="M12 20s-6-4.35-8.2-6.56C1.76 12.4 2 9.6 4.05 8.08c1.9-1.39 4.32-.79 5.73.87L12 10.9l2.22-1.95c1.41-1.66 3.83-2.26 5.73-.87C22 9.6 22.24 12.4 20.2 13.44 18 15.65 12 20 12 20z" fill="none" stroke="#111" stroke-width="1.8" stroke-linejoin="round"/>
</svg>
</div>
</div>
<div class="price-line">
<div style="font-weight:800">$300.00</div>
<div class="tag">Performance</div>
</div>
<div class="divider"></div>
<div class="size-header">
<div class="size-label">Size</div>
<div class="ruler-box" aria-label="Size guide">
<svg viewBox="0 0 64 36">
<rect x="2" y="6" width="60" height="24" fill="none" stroke="#111" stroke-width="2"/>
<path d="M10 6 v10 M16 6 v6 M22 6 v10 M28 6 v6 M34 6 v10 M40 6 v6 M46 6 v10 M52 6 v6" stroke="#111" stroke-width="2"/>
</svg>
</div>
</div>
<div class="sizes">
<div class="size-item">M 7 / W 8</div>
<div class="size-item">M 7.5 / W 8.5</div>
<div class="size-item active">M 8 / W 9</div>
<div class="size-item">M 8.5 / W 9.5</div>
<div class="size-item">M 9 / W 10</div>
</div>
<div class="divider-large"></div>
<div class="btn-outline">
<span>Add to bag</span>
<div class="bag-icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M7 8h10l1 12H6L7 8z" fill="none" stroke="#111" stroke-width="2"/>
<path d="M9 8V6a3 3 0 016 0v2" fill="none" stroke="#111" stroke-width="2"/>
<path d="M15 13h-2v-2h-2v2H9v2h2v2h2v-2h2z" fill="none" stroke="#111" stroke-width="1.6"/>
</svg>
</div>
</div>
<div class="btn-solid">
<span>Buy it now</span>
<div class="arrow-icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M5 12h12M13 6l6 6-6 6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</div>
</div>
</body>
</html> |