VaPelTuT“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f9f9f9;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 30px 40px;
}
.product-title {
font-size: 28px;
font-weight: 600;
margin: 0 0 8px;
line-height: 1.2;
}
.brand {
font-size: 16px;
color: #555;
margin-bottom: 12px;
}
.price-area {
font-size: 26px;
font-weight: 700;
color: #1a1a2e;
margin: 12px 0 20px;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 20px 0 30px;
}
.image-gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #eaeaea;
background: #f4f4f4;
transition: transform 0.2s;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 24px 0 30px;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e0e0e0;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 180px;
color: #333;
}
.description-box {
background: #f5f7fa;
padding: 20px 24px;
border-radius: 12px;
margin: 20px 0 28px;
line-height: 1.6;
}
.why-buy {
background: #eef3f7;
padding: 20px 24px;
border-radius: 12px;
margin: 20px 0 28px;
}
.why-buy h3 {
margin-top: 0;
font-size: 20px;
}
.why-buy ul {
margin: 10px 0 0;
padding-left: 22px;
}
.why-buy li {
margin-bottom: 8px