q3cpNprx
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f9fafc;
margin: 0;
padding: 20px;
color: #1e1e2a;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 10px 0;
line-height: 1.2;
color: #0b1c2f;
}
.brand-badge {
display: inline-block;
background: #eef2f7;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 500;
color: #2c3e50;
margin-bottom: 15px;
}
.price-area {
font-size: 2.2rem;
font-weight: 700;
color: #1a6b3c;
margin: 15px 0 20px 0;
}
.price-area .currency {
font-size: 1.2rem;
vertical-align: super;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 25px 0 30px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
border: 1px solid #eaeef2;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.gallery-item img {
width: 100%;
display: block;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #f7f9fc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 14px 18px;
border-bottom: 1px solid #e2e8f0;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table th {
background: #eef2f7;
font-weight: 600;
width: 35%;
color: #1f2a3f;
}
.specs-table td {
background: white;
}
.description