ctWbJTu0
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 10px 0;
color: #1e293b;
border-bottom: 2px solid #e9ecef;
padding-bottom: 15px;
}
.price-area {
font-size: 1.8rem;
font-weight: 700;
color: #0b5e42;
margin: 15px 0 20px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 30px 0;
}
.image-gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 16px;
border: 1px solid #dee2e6;
background: #f8f9fa;
transition: transform 0.2s;
}
.image-gallery img:hover {
transform: scale(1.02);
box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.description-block {
background: #f8fafc;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
line-height: 1.6;
font-size: 1.05rem;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #ffffff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.specs-table th {
background: #eef2f6;
text-align: left;
padding: 14px 18px;
font-weight: 600;
width: 40%;
border-bottom: 1px solid #dce1e8;
}
.specs-table td {
padding: 14px 18px;
border-bottom: 1px solid #e9edf2;
background: #ffffff;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.why-buy {
background: #f0f4fa;
padding: 20px 25px;
border-radius: 16px;
margin: 30