wQcvoHqX
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f7f5f2;
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 2rem 2.5rem;
transition: all 0.2s ease;
}
@media (max-width: 700px) {
.product-card { padding: 1.5rem; }
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2rem;
}
.gallery img {
width: 100%;
max-width: 220px;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
cursor: pointer;
object-fit: cover;
aspect-ratio: 1/1;
background: #eae6e0;
}