tAxwF9sv
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 30px 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;
transition: all 0.2s;
}
h1 {
font-size: 2rem;
font-weight: 600;
color: #1e1e1e;
margin-top: 0;
margin-bottom: 10px;
border-bottom: 2px solid #eaeaea;
padding-bottom: 12px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #2a6f4c;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9e9e9;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 20px;
background: #fafafa;
border-radius: 14px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #e2e2e2;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table th {
background: #f0f0f0;
font-weight: 600;
color: #2c3e50;
width: 35%;
}
.specs-table td {
background: #ffffff;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
color: #2d2d2d;
background: #f6f9fc;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
border-left: 5px solid #b0c4de;
}
.why-buy {
background: #f2f7f2;