2Yfyheqn
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e2a3a;
}
.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 35px;
}
.product-title {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 10px 0;
color: #0b1c2f;
}
.price-badge {
background: #e6f0fa;
display: inline-block;
padding: 8px 20px;
border-radius: 40px;
font-size: 1.6rem;
font-weight: 700;
color: #1a5a8c;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 180px;
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: #f9fbfd;
border-radius: 14px;
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: 160px;
color: #2c3e50;
}
.description-box {
background: #f9fbfd;
padding: 20px 25px;
border-radius: 16px;
margin: 20px 0;
line-height: 1.6;
font-size: 1.05rem;
}
.why-buy {
background: #f0f6fe;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
color: #0f3b5e;
}
.why-buy ul {
padding-left: 20px;
margin: 10px 0;
}