Z7niXRt5
“`html
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 10px;
color: #0f0f1a;
}
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #2b7a4b;
background: #e6f4ea;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
width: 100%;
max-width: 220px;
height: auto;
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: #fafbfc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e2e8f0;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #2d3748;
}
.specs-table td:last-child {
color: #1a202c;
}
.description-box {
background: #f8fafc;
padding: 20px 25px;
border-radius: 18px;
margin: 25px 0;
border-left: 4px solid #107c10;
font-size: 1.05rem;
line-height: 1.6;
}
.why-buy {
background: #f0f7ff;
padding: 20px 25px;
border-radius: 18px;
margin: 25px 0;
}
.why-buy ul {