UNa4Rdq2
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f9f9f9;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
.product-title {
font-size: 2rem;
font-weight: 700;
color: #1e1e1e;
margin: 0 0 10px 0;
line-height: 1.2;
}
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
width: 100%;
max-width: 220px;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
object-fit: cover;
border: 1px solid #eaeaea;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e2e2e2;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #333;
width: 40%;
background: #f2f2f2;
}
.description-box {
background: #f6f8fa;
padding: 20px 25px;
border-radius: 12px;
margin: 25px 0;
line-height: 1.6;
color: #2c2c2c;
}
.why-buy {
background: #f0f7f0;
padding: 18px 25px;
border-radius: 12px;
margin: 25px 0;
}
.why-buy ul {
margin: 10px 0 0 0;
padding-left: 22px;
}
.why-buy li {
margin-bottom: 8px;
line-height: 1.5;
}
.faq-section {
margin: 30px 0 10px 0;
}
.faq-item