iDpuOTuY
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: 0.2s;
}
h1 { font-size: 2rem; margin-top: 0; margin-bottom: 0.25rem; color: #1a1a2e; }
.brand-sub { color: #4a4a6a; font-weight: 400; font-size: 1rem; margin-bottom: 1.5rem; }
.price-badge {
background: #0b5e42;
color: white;
font-weight: 600;
font-size: 1.8rem;
padding: 8px 20px;
border-radius: 40px;
display: inline-block;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0;
}
.gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #eaeef2;
transition: 0.2s;
}
.gallery img:hover { transform: scale(1.02); }
.desc-box {
background: #f9fafc;
padding: 20px 24px;
border-radius: 20px;
margin: 20px 0;
line-height: 1.6;
color: #1f2937;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e9edf2;
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child {
font-weight: 600;
color: #1e293b;
width: 40%;
background: #f8fafd;
}
.why-buy {
background: #f0f4fe;
padding: 20px 28px;
border-radius: 20px;
margin: 30px 0 20px;
}
.why-buy h3 { margin-top: