EOgz03tz
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e2a3a;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 { font-size: 2rem; margin: 0 0 5px; font-weight: 600; }
.brand-tag { color: #2c6b9e; font-weight: 500; letter-spacing: 0.3px; }
.price-badge {
background: #e7f0fa;
padding: 8px 18px;
border-radius: 40px;
font-weight: 700;
font-size: 1.6rem;
color: #0a3b5e;
display: inline-block;
margin: 10px 0 15px;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 25px;
}
.image-gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 16px;
border: 1px solid #e2e8f0;
background: #f9fafc;
transition: 0.2s;
}
.image-gallery img:hover { box-shadow: 0 6px 14px rgba(0,0,0,0.1); }
.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 #e6edf4;
vertical-align: top;
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table th {
background: #eef4fa;
font-weight: 600;
width: 35%;
color: #1f3a57;
}
.desc-section {
background: #f8faff;
padding: 20px 25px;
border-radius: 16px;
margin: 20px 0;
line-height: 1.6;
}
.why-buy ul {
list-style: none;
padding: 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px 20px;
}
.why-buy li {
background: #f0f6fe;
padding: 12px 18px;
border