qOk2aeq5
body {
font-family: ‘Segoe UI’, Roboto, system-ui, -apple-system, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 28px;
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 {
margin-top: 0;
font-weight: 600;
letter-spacing: -0.01em;
}
h1 { font-size: 2rem; margin-bottom: 0.2rem; }
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #0b2b3c;
background: #e9f0f5;
display: inline-block;
padding: 0.2rem 1.2rem;
border-radius: 40px;
margin: 0.5rem 0 1.5rem 0;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
margin: 1.8rem 0 2rem;
}
.gallery-grid img {
width: 100%;
height: auto;
aspect-ratio: 1/1;
object-fit: cover;
border-radius: 16px;
background: #f0f2f5;
border: 1px solid #eaeef2;
transition: 0.15s;
}
.gallery-grid img:hover { box-shadow: 0 8px 18px rgba(0,0,0,0.1); }
.flex-row {
display: flex;
flex-wrap: wrap;
gap: 2rem;
margin: 2rem 0 1.5rem;
}
.specs-box {
flex: 1 1 280px;
background: #f8fafc;
border-radius: 20px;
padding: 1.5rem 1.8rem;
border: 1px solid #e2e8f0;
}
.specs-box h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.specs-table {
width: 100%;
border-collapse: collapse;
}
.specs-table td {
padding: 0.5rem 0;
border-bottom: 1px solid #e2e8f0;
font-size: 0.95rem;
}
.specs-table