Vqzn4Luq
body {
font-family: system-ui, -apple-system, ‘Segoe UI’, Roboto, ‘Helvetica Neue’, sans-serif;
background: #f8f9fa;
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;
}
@media (max-width: 600px) {
.product-card { padding: 1.5rem; }
}
.product-title {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 0.25rem 0;
line-height: 1.2;
color: #111;
}
.brand-condition {
display: flex;
gap: 1rem;
color: #555;
font-size: 0.95rem;
margin-bottom: 1rem;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0a7e3d;
margin: 0.5rem 0 1.2rem 0;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.5rem 0 2rem 0;
}
.gallery-grid img {
width: 100%;
max-width: 180px;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #eee;
transition: 0.2s;
background: #fafafa;
}
.gallery-grid img:hover {
transform: scale(1.02);
box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.section-title {
font-size: 1.5rem