PYeVTiuP
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f6f8fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: #ffffff;
border-radius: 24px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: 0.2s;
}
.product-title {
font-size: 28px;
font-weight: 600;
color: #0b2b3c;
margin: 0 0 10px 0;
line-height: 1.2;
}
.brand-badge {
display: inline-block;
background: #eef3f7;
padding: 6px 14px;
border-radius: 40px;
font-size: 14px;
color: #1e4b5e;
font-weight: 500;
margin-bottom: 20px;
}
.price-area {
font-size: 32px;
font-weight: 700;
color: #1a6b3c;
margin: 12px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 20px 0 30px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9edf0;
}
.gallery-main {
flex: 2 1 400px;
}
.gallery-thumbs {
flex: 1 1 180px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery-thumbs img {
width: 100%;
height: auto;
max-height: 120px;
object-fit: cover;
border-radius: 12px;
cursor: default;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0 25px;
background: #fafcfe;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e2e8ed;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #1f3a47;
width: 35%;