CWHEeCs7
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 10px 0;
color: #111;
}
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 30px 0;
}
.image-gallery img {
max-width: 180px;
height: auto;
border-radius: 12px;
border: 1px solid #e9ecef;
transition: transform 0.2s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.image-gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f8f9fa;
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;
color: #1e1e1e;
width: 35%;
}
.specs-table td {
background: #ffffff;
}
.description-section {
margin: 30px 0;
line-height: 1.7;
font-size: 1.05rem;
color: #2c2c2c;
}
.why-buy {
background: #f1f3f5;
padding: 20px 25px;
border-radius: 14px;
margin: 30px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 1.4rem;
}
.why-buy ul {
padding-left: 20px;
margin: 12px 0 0 0;
}
.why-buy li {
margin-bottom: 8px;
font-size: 1rem;
}
.faq-section {
margin: 35px 0 10