dh42A5uk
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 1.9rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 8px;
color: #0a2540;
}
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #b12704;
background: #fff0ed;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 20px 0 25px 0;
}
.gallery img {
width: 100%;
max-width: 200px;
height: auto;
border-radius: 12px;
border: 1px solid #e0e0e0;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: transform 0.2s;
object-fit: cover;
}
.gallery img:hover {
transform: scale(1.02);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 25px 0;
}
@media (max-width: 700px) {
.grid-2 {
grid-template-columns: 1fr;
}
}
.spec-table {
width: 100%;
border-collapse: collapse;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.spec-table th, .spec-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #e9ecef;
}
.spec-table th {
background: #f1f3f5;
font-weight: 600;
color: #2c3e50;
width: 40%;
}
.spec-table tr:last-child td, .spec-table tr:last-child th {
border-bottom: none;
}
.desc-box {
background: #f9fafb;
padding: 20px 24px;
border-radius: 14px;
line-height: 1.6;
border-left: 4px solid #2b6f9e;
}
.why-buy {
background: #f0