Lrw9oKrH
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px;
margin: 20px auto;
}
h1 {
font-size: 28px;
color: #1a1a1a;
margin-top: 0;
margin-bottom: 10px;
font-weight: 600;
}
.brand-tag {
color: #555;
font-size: 16px;
margin-bottom: 20px;
}
.price-badge {
background: #e8f5e9;
color: #2e7d32;
font-size: 24px;
font-weight: 700;
padding: 8px 18px;
border-radius: 40px;
display: inline-block;
margin: 10px 0 20px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 20px 0;
}
.image-gallery img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e0e0e0;
transition: transform 0.2s;
}
.image-gallery img:hover {
transform: scale(1.05);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #eaeaea;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #333;
width: 40%;
background: #f0f0f0;
}
.description-text {
font-size: 16px;
line-height: 1.7;
color: #2c2c2c;
margin: 20px 0;
padding: 15px 0;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
}
.why-buy {
background: #f9f9fb;
padding: 20px 25px;
border-radius: 14px;
margin: 25