InS2NVrU
body {
background: #f5f7fa;
font-family: system-ui, -apple-system, ‘Segoe UI’, Roboto, ‘Helvetica Neue’, sans-serif;
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 32px;
box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
padding: 2rem 2.5rem;
transition: all 0.2s ease;
}
@media (max-width: 600px) {
.product-card { padding: 1.5rem; }
}
h1, h2, h3 {
font-weight: 600;
letter-spacing: -0.02em;
margin-top: 0;
}
h1 {
font-size: 2.2rem;
margin-bottom: 0.25rem;
color: #0b1a2e;
}
.brand-sub {
color: #4a5b6e;
font-size: 1rem;
font-weight: 400;
margin-bottom: 1.5rem;
border-bottom: 1px solid #e9edf2;
padding-bottom: 0.75rem;
}
.price-badge {
background: #0b1a2e;
color: white;
font-weight: 600;
font-size: 1.6rem;
padding: 0.4rem 1.2rem;
border-radius: 60px;
display: inline-block;
margin: 0.5rem 0 1.2rem 0;
letter-spacing: -0.01em;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.8rem 0 2rem;
}
.gallery-grid img {
width: 100%;
max-width: 200px;
height: auto;
border-radius: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
background: #f0f2f5;
transition: transform 0.15s;
}
.gallery-grid img:hover {
transform: scale(1.02);
}
.flex-specs {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.8rem 2.5rem;
background: #f8fafc;
padding: 1.5rem 2rem;
border-radius: 24px;
margin: 1.8rem 0;
}
@media (max-width: 550px) {
.flex-specs { grid-template-columns: 1fr; }
}
.spec-item {
display: flex;
flex