LCQLtUru
“`html
body {
font-family: ‘Calibri’, sans-serif;
font-size: 18px;
background: #f9f9f9;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
h1, h2, h3 {
margin-top: 0;
font-weight: 600;
color: #1e2a3a;
}
.price {
font-size: 28px;
font-weight: 700;
color: #2a6f4c;
margin: 10px 0 5px;
}
.brand {
color: #4a5b6e;
font-size: 16px;
letter-spacing: 0.3px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
border: 1px solid #eaeef2;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0 25px;
background: #f6f8fa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #dce2e8;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 35%;
color: #1f2a3a;
}
.specs-table td:last-child {
color: #2c3e50;
}
.description {
line-height: 1.6;
color: #1f2a3a;
margin: 20px 0;
}
.why-buy {
background: #f0f5fa;
padding: 20px 25px;
border-radius: 14px;
margin: 25px 0;
}
.why-buy ul {
padding-left: 22px;
margin: 10px 0 0;
}
.why-buy li {
margin-bottom: 10px;
line-height: 1.5;
}