qcY53ksH
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 900px;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px;
margin: 20px auto;
}
h1 {
font-size: 1.8rem;
color: #1a1a2e;
margin-top: 0;
border-bottom: 2px solid #e9ecef;
padding-bottom: 12px;
}
.price-badge {
background: #2d6a4f;
color: white;
display: inline-block;
padding: 8px 18px;
border-radius: 30px;
font-weight: 600;
font-size: 1.3rem;
margin: 10px 0 20px;
}
.gallery {
display: flex;
gap: 15px;
flex-wrap: wrap;
margin: 20px 0;
}
.gallery img {
max-width: 180px;
height: auto;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
border: 1px solid #dee2e6;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.03);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f8f9fa;
border-radius: 10px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #e9ecef;
}
.specs-table th {
background: #e9ecef;
font-weight: 600;
color: #1a1a2e;
width: 35%;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description {
background: #f1f3f5;
padding: 18px 22px;
border-radius: 12px;
margin: 20px 0;
line-height: 1.6;
color: #212529;
}
.why-buy {
background: #eafaf1;
padding: 18px 22px;
border-radius: 12px;
margin: 20px 0;
}
.why-buy ul {
margin: 8px 0 0;
padding-left: 22px;
}
.why-buy li {
margin-bottom: