WPzoaHtq
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f9f9f9;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 28px;
font-weight: 700;
margin: 0 0 10px;
line-height: 1.2;
}
.brand {
color: #555;
font-size: 16px;
margin-bottom: 15px;
}
.price-block {
font-size: 32px;
font-weight: 700;
color: #b12704;
margin: 15px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #eaeaea;
flex: 1 1 200px;
object-fit: cover;
}
.gallery img:first-child {
flex: 1 1 100%;
max-height: 400px;
object-fit: contain;
background: #f4f4f4;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e0e0e0;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table th {
background: #f0f0f0;
font-weight: 600;
width: 35%;
}
.description {
font-size: 16px;
line-height: 1.7;
margin: 20px 0;
padding: 15px 0;
border-top: 1px solid #eee;
}
.why-buy {
background: #f4f9ff;
padding: 20px 25px;
border-radius: 14px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 22px;
}
.why-buy ul {
list-style: none;
padding-left: 0;
margin: 10px