Xq2Kuvt9
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: white;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 1.9rem;
font-weight: 600;
color: #1e2a3a;
margin-top: 0;
margin-bottom: 12px;
line-height: 1.3;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #2a6f4c;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 20px 0 30px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9ecef;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-item {
flex: 1 1 200px;
min-width: 150px;
}
.gallery-item img {
width: 100%;
display: block;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e9ecef;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
background: #f1f3f5;
}
.specs-table td:last-child {
color: #1e2a3a;
}
.description {
font-size: 1.05rem;
line-height: 1.7;
color: #212529;
margin: 20px 0 30px;
padding: 20px 0;
border-top: 1px solid #e9ecef;
border-bottom: 1px solid #e9ecef;
}
.why-buy {
background: #f0f7f4;
padding: 20px 25px;
border-radius: 14px;