File size: 8,050 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 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1080, initial-scale=1.0" />
<title>Pizza Product Detail</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: #ffffff;
color: #212121;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #666;
font-size: 36px;
box-sizing: border-box;
}
.status-icons {
display: flex;
align-items: center;
gap: 22px;
}
.dot { width: 10px; height: 10px; background: #888; border-radius: 50%; display: inline-block; }
.icon-shape {
width: 28px; height: 28px; border: 3px solid #666; border-radius: 4px; position: relative;
}
.icon-signal { width: 28px; height: 24px; border-left: 3px solid #666; border-bottom: 3px solid #666; transform: skewX(-20deg); }
.icon-battery { width: 44px; height: 22px; border: 3px solid #666; border-radius: 4px; position: relative; }
.icon-battery::after { content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 10px; background: #666; border-radius: 2px; }
/* Hero image */
.hero {
position: relative;
height: 560px;
overflow: hidden;
}
.hero .img {
position: absolute;
left: 0; top: 0; right: 0; bottom: 0;
background: #E0E0E0;
border-bottom: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 34px;
}
.back-btn {
position: absolute;
left: 32px;
top: 180px;
width: 84px; height: 84px;
background: #ffffff;
border-radius: 50%;
box-shadow: 0 6px 16px rgba(0,0,0,0.18);
display: flex; align-items: center; justify-content: center;
}
.back-btn svg { width: 40px; height: 40px; fill: #444; }
/* Content sheet */
.sheet {
position: absolute;
top: 508px;
left: 0;
right: 0;
bottom: 0;
background: #ffffff;
border-top-left-radius: 44px;
border-top-right-radius: 44px;
box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
padding: 44px;
box-sizing: border-box;
overflow: hidden;
}
.scroll-area {
position: absolute;
left: 0; right: 0; top: 0; bottom: 170px;
padding: 44px;
box-sizing: border-box;
overflow-y: auto;
}
.title { font-size: 56px; font-weight: 800; margin: 8px 0 18px; }
.desc { font-size: 32px; line-height: 1.5; color: #555; margin-bottom: 28px; }
.price-row { display: flex; align-items: baseline; gap: 24px; margin: 8px 0 24px; }
.price-now { font-size: 88px; font-weight: 800; color: #D32F2F; }
.price-old { font-size: 36px; color: #9e9e9e; text-decoration: line-through; }
.option-row {
display: flex;
align-items: center;
padding: 28px 4px;
border-top: 1px solid #e5e5e5;
font-size: 36px;
color: #333;
}
.option-row:first-of-type { border-top: none; }
.radio {
width: 46px; height: 46px; border: 5px solid #D32F2F; border-radius: 50%; margin-right: 28px; position: relative;
}
.radio.selected::after {
content: ""; position: absolute; left: 50%; top: 50%;
width: 22px; height: 22px; background: #D32F2F; border-radius: 50%;
transform: translate(-50%, -50%);
}
.option-label { flex: 1; }
.option-prices { display: flex; align-items: center; gap: 18px; font-size: 34px; }
.old { color: #9e9e9e; text-decoration: line-through; }
.new { color: #333; }
/* Crust card */
.card {
margin-top: 32px;
border: 2px solid #D8D8D8;
border-radius: 26px;
padding: 22px 18px;
}
.card-title {
padding: 14px 18px 6px;
font-size: 30px; color: #666;
}
.required { color: #E53935; margin-left: 8px; }
.card .option-row { padding: 26px 18px; border-top: 1px solid #eee; }
.right-price { font-size: 34px; color: #444; min-width: 150px; text-align: right; }
/* Add to cart */
.cart-bar {
position: absolute;
left: 0; right: 0; bottom: 90px;
display: flex; justify-content: center;
}
.cart-btn {
width: 920px;
background: #c62828;
color: #fff;
font-size: 44px;
font-weight: 700;
padding: 28px 32px;
text-align: center;
border-radius: 26px;
box-shadow: 0 6px 16px rgba(198,40,40,0.35);
}
/* Gesture bar */
.gesture {
position: absolute;
left: 50%;
bottom: 24px;
width: 260px; height: 10px;
background: #000;
border-radius: 6px;
transform: translateX(-50%);
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>8:49</div>
<div class="status-icons">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<div class="icon-signal"></div>
<div class="icon-battery"></div>
</div>
</div>
<!-- Hero Image -->
<div class="hero">
<div class="img">[IMG: Chicken Pizza on Tray]</div>
<div class="back-btn">
<svg viewBox="0 0 24 24">
<path d="M15.5 4l-8 8 8 8 1.5-1.5L10 12l7-6.5z"></path>
</svg>
</div>
</div>
<!-- Content Sheet -->
<div class="sheet">
<div class="scroll-area">
<div class="title">Miami Beast</div>
<div class="desc">
Made in Garlic Mayo sauce, Chicken Fajita, Green Pepper, Green Jalapeno, Onions & Cheese
</div>
<div class="price-row">
<div class="price-now">Rs. 1749</div>
<div class="price-old">Rs. 2499</div>
</div>
<!-- Size options -->
<div class="option-row">
<div class="radio"></div>
<div class="option-label">Small Pizza</div>
<div class="option-prices">
<span class="old">Rs. 749</span>
<span class="new">Rs. 547</span>
</div>
</div>
<div class="option-row">
<div class="radio"></div>
<div class="option-label">Regular Pizza</div>
<div class="option-prices">
<span class="old">Rs. 1799</span>
<span class="new">Rs. 1169</span>
</div>
</div>
<div class="option-row">
<div class="radio selected"></div>
<div class="option-label">Large Pizza</div>
<div class="option-prices">
<span class="old">Rs. 2499</span>
<span class="new">Rs. 1749</span>
</div>
</div>
<div class="option-row">
<div class="radio"></div>
<div class="option-label">Jumbo Pizza</div>
<div class="option-prices">
<span class="old">Rs. 3599</span>
<span class="new">Rs. 2699</span>
</div>
</div>
<!-- Crust selection card -->
<div class="card">
<div class="card-title">
Choose Your Crust For Large Pizza <span class="required">(required)</span>
</div>
<div class="option-row">
<div class="radio"></div>
<div class="option-label">Deep Pan</div>
<div class="right-price">Rs. 200</div>
</div>
<div class="option-row">
<div class="radio selected"></div>
<div class="option-label">Thin Crust</div>
<div class="right-price">Rs. 200</div>
</div>
<div class="option-row">
<div class="radio"></div>
<div class="option-label">Stuffed Crust</div>
<div class="right-price">Rs. 200</div>
</div>
<div class="option-row">
<div class="radio"></div>
<div class="option-label">Kabab Bonner</div>
<div class="right-price">Rs. 200</div>
</div>
</div>
</div>
<!-- Add to Cart -->
<div class="cart-bar">
<div class="cart-btn">Add to Cart - Rs. 1749</div>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html> |