TRyu8vqC
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
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: 32px 28px;
margin: 20px auto;
}
h1 {
font-size: 1.9rem;
font-weight: 600;
color: #1e293b;
margin-top: 0;
margin-bottom: 8px;
line-height: 1.2;
}
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #0b5e42;
background: #e6f7f0;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 12px 0 18px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 20px 0 24px 0;
}
.image-gallery img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: 0.2s;
box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.image-gallery img:hover {
transform: scale(1.03);
border-color: #94a3b8;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 24px 0 20px 0;
background: #f9fafb;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 12px 16px;
border-bottom: 1px solid #e9edf2;
font-size: 0.95rem;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #334155;
width: 40%;
}
.specs-table td:last-child {
color: #1e293b;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
color: #1e293b;
margin: 20px 0 16px 0;
padding: 16px 0;
border-top: 1px solid #e2e8f0;
}
.why-buy {
background: #f1f5f9;
padding: 18px 22px;
border