XMiR45rB
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px;
}
.product-title {
font-size: 28px;
font-weight: 700;
margin-bottom: 10px;
color: #0b1e33;
}
.price-badge {
font-size: 32px;
font-weight: 700;
color: #c0392b;
background: #fef0ef;
display: inline-block;
padding: 8px 20px;
border-radius: 40px;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
cursor: pointer;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery-item {
flex: 1 1 200px;
min-width: 150px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e9edf2;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table th {
background: #eef2f7;
font-weight: 600;
width: 35%;
}
.description {
font-size: 16px;
line-height: 1.7;
background: #f9fafc;
padding: 20px;
border-radius: 14px;
margin: 20px 0;
}
.why-buy {
background: #eaf6ed;
padding: 20px 25px;
border-radius: 14px;
margin: 20px 0;
}
.why-buy h3 {
margin-top: 0;
color: #1e6f3f;
}
.why-buy ul {
padding-left: 20px;
margin: 10px 0;
}
.why-buy li {
margin