1fDmrHqE
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px;
}
h1 {
font-size: 2rem;
margin-top: 0;
color: #1a1a2e;
}
.price {
font-size: 1.8rem;
font-weight: 700;
color: #2d6a4f;
margin: 10px 0 20px;
}
.gallery {
display: flex;
gap: 15px;
flex-wrap: wrap;
margin-bottom: 30px;
}
.gallery img {
max-width: 200px;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.03);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f1f3f5;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #dee2e6;
}
.specs-table th {
background: #e9ecef;
font-weight: 600;
width: 30%;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description {
line-height: 1.7;
font-size: 1.05rem;
margin: 20px 0;
}
.why-buy {
background: #e8f4f0;
padding: 20px 25px;
border-radius: 12px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
color: #1b4332;
}
.why-buy ul {
margin: 10px 0 0;
padding-left: 20px;
}
.why-buy li {
margin-bottom: 8px;
}
.faq {
margin-top: 30px;
border-top: 2px solid #e9ecef;
padding-top: 20px;
}
.faq h3 {
margin-bottom: 15px;
}
.faq-item {
margin-bottom: 15px;
}
.faq-question {