qC7KyGtf
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
h1 {
font-size: 28px;
font-weight: 600;
color: #1a1a2e;
margin-top: 0;
margin-bottom: 10px;
line-height: 1.3;
}
.price {
font-size: 32px;
font-weight: 700;
color: #b12704;
margin: 15px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 20px 0 25px;
}
.gallery img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 10px;
border: 1px solid #e0e0e0;
transition: 0.2s;
cursor: default;
}
.gallery img:hover {
border-color: #888;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #eaeaea;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #333;
width: 35%;
background: #f0f0f0;
}
.specs-table td:last-child {
color: #444;
}
.description {
font-size: 16px;
line-height: 1.7;
color: #2c2c2c;
margin: 20px 0;
}
.why-buy {
background: #f9f9fb;
padding: 20px 25px;
border-radius: 14px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 20px;
color: #1a1a2e;
}
.why-buy ul {
padding-left: 22px;
margin-bottom: 0;
}
.why-buy li {
margin-bottom: 10px;
line-height: 1.6;
}
.faq {
margin: 30px