OTucXssK
“`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: 1100px;
width: 100%;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
box-sizing: border-box;
}
h1 {
font-size: 2rem;
font-weight: 700;
margin: 0 0 10px 0;
color: #1e1e1e;
line-height: 1.2;
}
.price {
font-size: 1.8rem;
font-weight: 700;
color: #2a7f2a;
margin: 10px 0 20px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.image-gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
cursor: default;
flex: 1 1 200px;
min-width: 150px;
object-fit: cover;
background: #f0f0f0;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 16px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 14px 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: #f2f4f6;
}
.specs-table td:last-child {
color: #1e1e1e;
}
.description-box {
background: #f9f9fb;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
line-height: 1.7;
color: #2d2d2d;
}
.why-buy {
background: #f0f7f0;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
}
.why-buy ul {