Y2cpWYsC
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 900px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px;
}
h1 {
font-size: 1.8rem;
margin-top: 0;
font-weight: 600;
color: #111;
}
.price {
font-size: 1.6rem;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 25px;
}
.image-gallery img {
max-width: 180px;
height: auto;
border-radius: 8px;
border: 1px solid #e0e0e0;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: transform 0.2s;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0 25px;
background: #fafafa;
border-radius: 8px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 10px 16px;
text-align: left;
border-bottom: 1px solid #eaeaea;
}
.specs-table th {
background: #f0f0f0;
font-weight: 600;
width: 35%;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.description {
line-height: 1.6;
margin: 20px 0;
font-size: 1rem;
color: #333;
}
.why-buy {
background: #f9f9f9;
padding: 18px 22px;
border-radius: 12px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 1.2rem;
}
.why-buy ul {
margin: 8px 0 0;
padding-left: 20px;
}
.why-buy li {
margin-bottom: 8px;
line-height: 1.5;
}
.faq-section {
margin-top: 30px;
border-top: 1px solid #ddd;
padding-top: 20px;
}
.faq-item {