7ENtOBvU
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f9f7f4;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 8px 24px rgba(0,0,0,0.06);
padding: 30px 30px 40px;
}
.product-title {
font-size: 1.8rem;
font-weight: 600;
margin: 0 0 10px;
letter-spacing: -0.3px;
}
.price-badge {
font-size: 1.6rem;
font-weight: 700;
color: #b8860b;
margin: 5px 0 15px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 25px;
}
.gallery img {
max-width: 180px;
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);
}
.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 16px;
border-bottom: 1px solid #eaeaea;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #3a3a3a;
}
.description-box {
background: #f5f0eb;
padding: 20px 24px;
border-radius: 16px;
margin: 20px 0;
line-height: 1.6;
}
.why-buy {
background: #f0f4f8;
padding: 18px 24px;
border-radius: 16px;
margin: 20px 0;
}
.why-buy ul {
margin: 8px 0 0;
padding-left: 20px;
}
.why-buy li {
margin-bottom: 8px;
}
.faq-section {
margin: 30px 0 10px;
border-top: 1px solid #ddd;
padding-top: 20px;
}
.faq-item {
margin-bottom: 16px;
}
.faq-question {