waDIdHtE
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 24px;
box-shadow: 0 12px 40px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s;
}
h1 {
font-size: 2.1rem;
font-weight: 600;
color: #1e1e2a;
margin-top: 0;
margin-bottom: 12px;
line-height: 1.2;
}
.price-badge {
font-size: 1.9rem;
font-weight: 700;
color: #0b6e4f;
background: #e2f3ed;
display: inline-block;
padding: 6px 20px;
border-radius: 40px;
margin: 10px 0 20px 0;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 25px 0 30px;
}
.gallery-grid img {
width: calc(33.333% – 12px);
min-width: 180px;
flex: 1 1 auto;
border-radius: 20px;
object-fit: cover;
height: 220px;
background: #f0f2f5;
box-shadow: 0 4px 12px rgba(0,0,0,0.04);
transition: transform 0.2s;
border: 1px solid #e9edf2;
}
.gallery-grid img:hover {
transform: scale(1.01);
}
.flex-row {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin: 30px 0 20px;
}
.specs-box {
flex: 1 1 360px;
background: #f9fafc;
border-radius: 20px;
padding: 20px 25px;
border: 1px solid #eef1f5;
}
.specs-box h3 {
font-size: 1.3rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 18px;
border-bottom: 2px solid #dce2ec;
padding-bottom: 8px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
}
.specs-table td {
padding: 10px 6px;
border-bottom: 1px solid #e6eaef;
font-size: 0.95rem;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 45%;
}
.desc-box {
flex: 2 1 460px;