Hyyu8vqW
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 820px;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
h1 {
font-size: 1.9rem;
font-weight: 600;
color: #1e1e1e;
margin-top: 0;
margin-bottom: 10px;
border-bottom: 2px solid #eaeaea;
padding-bottom: 12px;
}
.price {
font-size: 1.8rem;
font-weight: 700;
color: #2a7f2a;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 20px 0 25px 0;
}
.gallery img {
width: 120px;
height: auto;
border-radius: 10px;
border: 1px solid #ddd;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.03);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}
.specs-table th {
background: #f0f0f0;
font-weight: 600;
color: #333;
width: 35%;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
color: #2c2c2c;
margin: 20px 0 25px 0;
padding: 15px 0;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
}
.why-buy {
background: #f9fafb;
padding: 18px 22px;
border-radius: 14px;
margin: 25px 0;
border-left: 4px solid #4a90d9;
}
.why-buy h3 {
margin-top: 0;
font-size: 1.3rem;