bZ0WP4rA
“`html
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px;
}
h1 { font-size: 2rem; margin-top: 0; }
.price { font-size: 1.8rem; font-weight: 700; color: #b12704; margin: 10px 0 20px; }
.gallery {
display: flex;
gap: 15px;
flex-wrap: wrap;
margin: 20px 0;
}
.gallery img {
max-width: 200px;
border-radius: 12px;
border: 1px solid #e0e0e0;
object-fit: cover;
height: auto;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
}
.specs-table td, .specs-table th {
border: 1px solid #ddd;
padding: 10px 14px;
text-align: left;
}
.specs-table tr:nth-child(even) { background: #fafafa; }
.section-title {
font-size: 1.4rem;
font-weight: 600;
border-bottom: 2px solid #222;
padding-bottom: 6px;
margin: 30px 0 15px;
}
.why-buy ul {
list-style: none;
padding-left: 0;
}
.why-buy li {
padding: 8px 0 8px 28px;
position: relative;
}
.why-buy li::before {
content: “✔”;
color: #1e7e34;
font-weight: bold;
position: absolute;
left: 0;
}
.faq-item {
margin: 18px 0;
}
.faq-question {
font-weight: 600;
cursor: default;
}
.faq-answer {
margin: 6px 0 0 12px;
color: #333;
}
.description-text {
line-height: 1.6;
font-size: 1.05rem;
background: #f9f9f9;
padding: 18px 22px;
border-radius: 12px;
}
.brand-note {
font-size: 0.9rem;
color: #555;
margin-top: 5px;
}
hr {
border: none;
border-top: 1px solid #e0e0e0;
margin: 30px 0;
}
<body