TGZtWeq6
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
.product-title {
font-size: 2rem;
font-weight: 700;
color: #1e1e1e;
margin: 0 0 10px 0;
line-height: 1.2;
}
.price {
font-size: 1.8rem;
font-weight: 600;
color: #b12704;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e9ecef;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.03);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f8f9fa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #dee2e6;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
}
.description {
font-size: 1.05rem;
line-height: 1.7;
color: #2d3436;
margin: 20px 0;
padding: 15px 0;
border-top: 1px solid #e9ecef;
border-bottom: 1px solid #e9ecef;
}
.why-buy {
background: #f1f8ff;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
color: #0b3b5c;
}
.why-buy ul {
padding-left: 20px;
margin: 10px 0 0;
}
.why-buy li {
margin-bottom: 10px;
line-height: 1.5;
}