9wb7Z3sH
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e2a3a;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 10px;
color: #0b1a2b;
}
.price {
font-size: 1.8rem;
font-weight: 700;
color: #1a6b3c;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 30px;
}
.gallery img {
width: 100%;
max-width: 200px;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
object-fit: cover;
border: 1px solid #e9edf2;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f9fafc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e2e7ed;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 35%;
color: #2c3e50;
}
.description-box {
background: #f9fafc;
padding: 20px 25px;
border-radius: 14px;
margin: 25px 0;
line-height: 1.6;
}
.why-buy {
background: #eef3f9;
padding: 20px 25px;
border-radius: 14px;
margin: 25px 0;
}
.why-buy ul {
margin: 10px 0 0;
padding-left: 20px;
}
.why-buy li {
margin-bottom: 8px;
line-height: 1.5;
}
.faq {
margin: 30px 0 10px;
}
.faq-item {
border-bottom: 1px solid #e2e7ed;
padding: 14px 0;
}
.faq-question {