yXYAs2tG
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 700;
margin: 0 0 10px 0;
line-height: 1.2;
}
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #b12704;
margin: 8px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 20px 0 30px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s ease;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.gallery-item img {
width: 100%;
display: block;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #e0e0e0;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 38%;
color: #444;
}
.description-box {
background: #f9f9f9;
padding: 20px 24px;
border-radius: 14px;
margin: 25px 0;
line-height: 1.6;
}
.why-buy {
background: #f0f7f0;
padding: 18px 24px;
border-radius: 14px;
margin: 25px 0;
}
.why-buy ul {
margin: 8px 0 0 0;
padding-left: 22px;
}
.why-buy li {
margin-bottom: 8px;
line-height: 1.5;
}
.faq-section {
margin: 30px 0 10px 0