f8VGmQtW
body {
font-family: ‘Segoe UI’, Roboto, system-ui, -apple-system, sans-serif;
background: #f8f6f2;
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 28px;
box-shadow: 0 12px 30px rgba(0,0,0,0.06);
padding: 2rem 2.5rem;
transition: all 0.2s;
}
h1, h2, h3 {
font-weight: 500;
letter-spacing: -0.01em;
color: #1e1e1e;
}
h1 {
font-size: 2.2rem;
margin: 0 0 0.25rem 0;
line-height: 1.2;
}
.price-badge {
font-size: 1.8rem;
font-weight: 600;
color: #2a6f4c;
background: #e9f3ed;
display: inline-block;
padding: 0.2rem 1.2rem;
border-radius: 40px;
margin: 0.5rem 0 1.2rem 0;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
margin: 1.8rem 0 2rem 0;
}
.gallery-grid img {
width: 100%;
height: auto;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 16px;
background: #f0ede8;
box-shadow: 0 2px 6px rgba(0,0,0,0.03);
transition: 0.2s;
border: 1px solid #eae6df;
}
.gallery-grid img:hover {
transform: scale(1.01);
box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}
.two-col {
display: flex;
flex-wrap: wrap;
gap: 2.5rem;
margin: 2rem 0 1.5rem 0;
}
.specs-box {
flex: 1 1 300px;
background: #faf9f6;
border-radius: 20px;
padding: 1.2rem 1.6rem;
border: 1px solid #ece8e0;
}
.specs-box h3 {
margin-top: 0.2rem;
font-weight: 500;
border-bottom: 1px solid #ddd9d0;
padding-bottom: 0.5rem;
}
.specs-table {
width: 100%;
border-collapse: collapse;
}
.specs-table td {
padding: 0.5rem 0.2rem;
border-bottom: 1px solid #e7e2da;
font-size: 0.95rem;