VPelRYs1
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
width: 100%;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
box-sizing: border-box;
}
h1 {
font-size: 28px;
font-weight: 600;
color: #1e1e1e;
margin: 0 0 8px 0;
line-height: 1.3;
}
.brand-sub {
font-size: 15px;
color: #5f6368;
margin-bottom: 20px;
}
.price {
font-size: 32px;
font-weight: 700;
color: #2c3e50;
margin: 10px 0 20px;
}
.price small {
font-size: 16px;
font-weight: 400;
color: #5f6368;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.image-gallery img {
width: 100%;
max-width: 220px;
height: auto;
border-radius: 12px;
border: 1px solid #e9ecef;
object-fit: cover;
background: #f1f3f4;
transition: 0.2s;
}
.image-gallery img:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e9ecef;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
background: #f1f3f4;
}
.specs-table td:last-child {
color: #1e1e1e;
}
.description {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
margin: 20px 0 25px;
padding: 0 0 10px;
border-bottom: 1px solid #e9ecef;
}
.why-b