zzaupvtc
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 30px 20px;
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: 30px 35px;
transition: all 0.2s ease;
}
h1, h2, h3 {
font-weight: 500;
margin-top: 0;
}
h1 {
font-size: 2rem;
margin-bottom: 0.25rem;
color: #1e1e1e;
}
.brand-sub {
color: #5a5a5a;
font-size: 0.95rem;
margin-bottom: 1.5rem;
}
.price-block {
font-size: 1.8rem;
font-weight: 600;
color: #0b5e42;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 20px 0 30px;
}
.gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #eaeef2;
transition: 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0;
}
@media (max-width: 700px) {
.grid-2 { grid-template-columns: 1fr; }
.gallery img { width: 140px; height: 140px; }
}
table.specs {
width: 100%;
border-collapse: collapse;
background: #fafcfd;
border-radius: 16px;
overflow: hidden;
}
table.specs td {
padding: 12px 16px;
border-bottom: 1px solid #e9edf0;
vertical-align: top;
}
table.specs tr:last-child td { border-bottom: none; }
table.specs td:first-child {
font-weight: 600;
color: #1f2a36;
width: 40%;
background: #f2f6f9;
}
.desc-text {
line-height: