rD4NABsb
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #333;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px;
}
.product-title {
font-size: 28px;
font-weight: 600;
margin-bottom: 10px;
color: #1a1a2e;
}
.price {
font-size: 26px;
font-weight: 700;
color: #2d6a4f;
margin: 15px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0;
}
.image-gallery img {
max-width: 200px;
height: auto;
border-radius: 12px;
border: 1px solid #e0e0e0;
transition: transform 0.2s;
cursor: pointer;
}
.image-gallery img:hover {
transform: scale(1.03);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #e9ecef;
}
.specs-table th {
background: #e9ecef;
font-weight: 600;
color: #495057;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.description {
line-height: 1.7;
font-size: 16px;
margin: 20px 0;
padding: 20px;
background: #f1f3f5;
border-radius: 12px;
}
.why-buy {
background: #e8f4f8;
padding: 20px 25px;
border-radius: 12px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
color: #0b3b5c;
}
.why-buy ul {
list-style: none;
padding-left: 0;
}
.why-buy ul li {
padding: 8px 0;
padding-left: 28px;
position: relative;
}
.why-buy ul li::before {
content: “✓”;
position: absolute;
left: 0;
color: #2d6a4f;
font-weight: bold;
font-size: 18px;