vteGFrrG
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: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s ease;
}
h1, h2, h3 {
font-weight: 500;
letter-spacing: -0.02em;
color: #1e1e1e;
}
h1 {
font-size: 2.1rem;
margin-top: 0;
margin-bottom: 0.25rem;
border-bottom: 2px solid #eaeef2;
padding-bottom: 12px;
}
.price-badge {
font-size: 1.9rem;
font-weight: 600;
color: #1a6b3c;
background: #e6f3ec;
display: inline-block;
padding: 6px 20px;
border-radius: 60px;
margin: 12px 0 16px;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 30px 0 25px;
}
.gallery-grid img {
width: 100%;
max-width: 240px;
height: auto;
border-radius: 18px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
background: #f1f3f5;
object-fit: cover;
aspect-ratio: 1/1;
}
.gallery-grid img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
background: #f9fbfd;
border-radius: 20px;
overflow: hidden;
margin: 25px 0 20px;
}
.specs-table td {
padding: 14px 18px;
border-bottom: 1px solid #e2e8f0;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 38%;
background: #f2f6fa;
}
.specs-table td:last-child {
color: #1e2a36;
}
.description-box {
background: #fafcff;
padding: 20px 24px;
border-radius: 20px;
border: 1px solid #e9edf2;