w99c53tm
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f4f4f6;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px;
margin: 20px auto;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 30px;
}
.gallery img {
width: calc(25% – 12px);
min-width: 140px;
border-radius: 16px;
object-fit: cover;
height: 220px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
h1 {
font-size: 2.2rem;
margin: 0 0 8px 0;
font-weight: 700;
color: #1e1e2a;
}
.price-badge {
font-size: 2rem;
font-weight: 700;
color: #b12704;
background: #fef0ed;
display: inline-block;
padding: 6px 20px;
border-radius