7MxcmArW
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 900px;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
h1 {
font-size: 2rem;
margin-top: 0;
margin-bottom: 8px;
color: #1a1a2e;
}
.price {
font-size: 1.8rem;
font-weight: 700;
color: #2b7a4b;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 20px 0 25px;
}
.gallery img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e0e0e0;
background: #f0f0f0;
transition: 0.2s;
}
.gallery img:hover {
transform: scale(1.03);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 10px 16px;
border-bottom: 1px solid #eaeaea;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #2c3e50;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
color: #2d2d2d;
background: #f5f7fb;
padding: 18px 22px;
border-radius: 12px;
margin: 20px 0;
}
.why-buy {
background: #eef6f0;
padding: 18px 22px;
border-radius: 12px;
margin: 20px 0;
}
.why-buy h3 {
margin-top: 0;
color: #1e3a2f;
}
.why-buy ul {
margin: 8px 0 0;
padding-left: 22px;
}
.why-buy li {
margin-bottom: 8px;
line-height: 1.