9QIThntD
body {
font-family: system-ui, -apple-system, ‘Segoe UI’, Roboto, ‘Helvetica Neue’, sans-serif;
background: #f8fafc;
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.06);
padding: 2rem 2.5rem;
transition: all 0.2s ease;
}
@media (max-width: 600px) {
.product-card { padding: 1.5rem; }
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.5rem 0 2rem;
}
.gallery img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.04);
border: 1px solid #eef2f6;
transition: 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
h1 {
font-size: 2.2rem;
font-weight: 600;
margin: 0 0 0.25rem;
color: #0b1a2e;
letter-spacing: -0.02em;
}
.brand {
color: #2c6b9e;
font-weight: 500;
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #0f2b3d;
margin: 0.75rem 0 1rem;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #5e6f7e;
margin-left: 8px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 1.8rem 0;
background: #f9fbfd;
border-radius: 18px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e6edf4;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #1f3a4f;
width: 40%;
}
.desc {
line-height: 1.6;
color: #1e2f3f;
font-size: 1.05rem;
margin: 1.2rem 0 1.8