2Mkkheqy
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 30px 20px;
color: #1e2a3a;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 28px;
font-weight: 700;
margin: 0 0 10px 0;
color: #0b1a2b;
line-height: 1.2;
}
.price-badge {
background: #eaf4e8;
color: #2b6b3c;
font-weight: 600;
font-size: 24px;
padding: 8px 20px;
border-radius: 40px;
display: inline-block;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 200px;
height: auto;
border-radius: 12px;
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: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 14px 18px;
text-align: left;
border-bottom: 1px solid #e2e8f0;
}
.specs-table th {
background: #eef1f6;
font-weight: 600;
color: #1e2a3a;
width: 35%;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description {
font-size: 16px;
line-height: 1.7;
margin: 20px 0;
background: #f9fafc;
padding: 20px 25px;
border-radius: 14px;
border-left: 5px solid #3b7a9e;
}
.why-buy {
background: #f0f5fa;
padding: 20px 25px;
border-radius: 14px;
margin: 25px 0;
}
.why-buy h