21yE0dtF
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: 0.2s;
}
h1 { font-size: 2rem; font-weight: 600; color: #1e293b; margin-top: 0; }
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #0b4f6c;
background: #e6f0f5;
display: inline-block;
padding: 6px 20px;
border-radius: 40px;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0;
}
.gallery img {
max-width: 180px;
border-radius: 16px;
border: 1px solid #e2e8f0;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
transition: 0.2s;
}
.gallery img:hover { transform: scale(1.02); }
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0;
}
.specs-table {
width: 100%;
border-collapse: collapse;
background: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 16px;
border-bottom: 1px solid #e9edf2;
font-size: 0.95rem;
}
.specs-table td:first-child { font-weight: 600; color: #1e293b; width: 40%; }
.specs-table tr:last-child td { border-bottom: none; }
.desc-box {
background: #f9fafc;
padding: 20px 25px;
border-radius: 18px;
line-height: 1.6;
color: #1e293b;
}
.why-buy ul {
list-style: none;
padding-left: 0;
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.why-buy ul li {
background: #eef6fb;
padding: 10px 18px;
border-radius: 40px;
font-weight: 500;
color: #0b4f6c;
font-size: 0.95rem