ZPzoaHtS
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
max-width: 1100px;
margin: 2rem auto;
padding: 0 1.5rem;
background: #f8f9fa;
color: #1e1e1e;
line-height: 1.6;
}
.product-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.06);
padding: 2rem;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.5rem 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #0b5e42;
margin: 0.5rem 0 1rem;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
}
.specs-table td {
padding: 0.75rem 1rem;
border-bottom: 1px solid #e9ecef;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #2c3e50;
}
.why-buy ul {
list-style: none;
padding-left: 0;
}
.why-buy li {
padding: 0.5rem 0 0.5rem 2rem;
position: relative;
}
.why-buy li::before {
content: “✓”;
position: absolute;
left: 0;
color: #0b5e42;
font-weight: bold;
font-size: 1.2rem;
}
.faq-item {
margin: 1rem 0;
padding: 0.75rem 1rem;
background: #f1f3f5;
border-radius: 10px;
}
.faq-question {
font-weight: 600;
cursor: default;
}
.faq-answer {
margin-top: 0.3rem;
color: #2c3e50;
}
hr {
border: none;
border-top: 2px solid #e9ecef;
margin: 2rem 0;
}
.brand-note {
font-size: 0.9rem;
color: #6c757d;
}
@media (max-width