PBkOHvqr
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
h1 {
font-size: 28px;
font-weight: 600;
color: #1e2a3a;
margin-top: 0;
margin-bottom: 10px;
}
.price-badge {
font-size: 26px;
font-weight: 700;
color: #0b6e4f;
background: #e6f4ed;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0;
}
.gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9edf2;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f9fafc;
border-radius: 14px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e2e7ed;
font-size: 15px;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
}
.desc-box {
background: #f9fafc;
padding: 20px 24px;
border-radius: 16px;
margin: 25px 0;
line-height: 1.6;
color: #1f2a3a;
}
.why-buy {
background: #f0f4fa;
padding: 20px 28px;
border-radius: 16px;
margin: 25px 0;
}
.why-buy ul {
padding-left: 22px;
margin: 10px 0 0;
}
.why-buy li {
margin-bottom: 10px;
font