anOaxpq5
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.06);
padding: 30px 35px;
}
h1 {
font-size: 2.2rem;
font-weight: 700;
margin: 0 0 8px 0;
letter-spacing: -0.3px;
}
.price {
font-size: 1.8rem;
font-weight: 600;
color: #2a7f2a;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 20px 0 30px 0;
}
.gallery img {
max-width: 180px;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.2s;
border: 1px solid #eaeaea;
}
.gallery img:hover {
transform: scale(1.02);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0;
}
@media (max-width: 700px) {
.grid-2 {
grid-template-columns: 1fr;
}
}
table.specs {
width: 100%;
border-collapse: collapse;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
table.specs td, table.specs th {
padding: 12px 16px;
border-bottom: 1px solid #e2e2e2;
vertical-align: top;
}
table.specs tr:last-child td {
border-bottom: none;
}
table.specs td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
margin: 20px 0 30px 0;
background: #f4f6f9;
padding: 20px 24px;
border-radius: 14px;
}
.why-buy {
background: #f0f4fa;
padding: 20px 24px;
border-radius: 14px;
margin: 25px 0;
}
.why-buy ul {
margin: 10