ZcmgJGtw
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: 0.2s;
}
h1, h2, h3 {
margin-top: 0;
font-weight: 600;
color: #1e1e1e;
}
.product-title {
font-size: 2.2rem;
margin-bottom: 5px;
letter-spacing: -0.3px;
}
.brand-sub {
color: #555;
font-size: 1rem;
font-weight: 400;
margin-top: -5px;
margin-bottom: 20px;
}
.price-badge {
font-size: 2rem;
font-weight: 700;
color: #b12704;
background: #fef0ed;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0 30px 0;
}
.gallery img {
width: 100%;
max-width: 220px;
height: auto;
border-radius: 16px;
object-fit: cover;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
border: 1px solid #eaeaea;
}
.gallery img:hover {
transform: scale(1.02);
}
.flex-row