JfFv2ase
“`html
* {
font-family: ‘Lato’, sans-serif;
box-sizing: border-box;
}
body {
background: #f9fafc;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 30px 40px;
}
h1, h2, h3 {
font-weight: 700;
color: #1e2a3a;
margin-top: 0;
}
h1 {
font-size: 2rem;
margin-bottom: 0.25rem;
}
.price {
font-size: 1.8rem;
font-weight: 700;
color: #2c6e49;
margin: 10px 0 20px;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.gallery {
flex: 1 1 45%;
min-width: 280px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
display: block;
margin-bottom: 12px;
}
.thumbnails {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.thumbnails img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 8px;
cursor: default;
border: 1px solid #e2e8f0;
}
.info {
flex: 1 1 50%;
min-width: 280px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #f8fafc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #e2e8f0;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table th {
background: #eef2f6;
font-weight: 700;
color: #1e2a3a;
width: 40%;
}
.spec