NQNk1asc
body {
font-family: ‘Inter’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, sans-serif;
background: #f8f9fc;
margin: 0;
padding: 2rem 1rem;
color: #1e1e2f;
}
.product-card {
max-width: 1200px;
margin: 0 auto;
background: white;
border-radius: 2rem;
box-shadow: 0 20px 40px rgba(0,0,0,0.08);
padding: 2rem 2.5rem;
}
@media (max-width: 640px) {
.product-card { padding: 1.5rem; }
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2rem;
}
.gallery img {
width: 100%;
max-width: 280px;
border-radius: 1.2rem;
object-fit: cover;
aspect-ratio: 1/1;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
}
.gallery img:hover { transform: scale(1.02); }
@media (max-width: 600px) {
.gallery img { max-width: 100%; }
}
h1 {
font-size: 2.2rem;
font-weight: 600;
margin: 0 0 0.25rem 0;
line-height: 1.2;
}
.brand-tag {
display: inline-block;
background