eWsStTuo
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 25px;
}
.gallery img {
max-width: 180px;
height: auto;
border-radius: 10px;
border: 1px solid #e9ecef;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
h1 {
font-size: 1.8rem;
margin: 0 0 8px 0;
font-weight: 600;
}
.price-badge {
font-size: 1.6rem;
font-weight: 700;
color: #2a7f2a;
background: #e9f5e9;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 10px 0 20px 0;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #e9ecef;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table th {
background: #f1f3f5;
font-weight: 600;
width: 35%;
color: #1e293b;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
margin: 20px 0;
padding: 18px 20px;
background: #f8f9fa;
border-left: 4px solid #2a7f2a;
border-radius: 8px;
}
.why-buy {
background: #f0f7ff;
padding: 18px 22px;
border-radius: 12px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 1.3rem;
color: #0b3b5c;
}
.why-buy ul {
padding-left: 20