ZWaA5ArX“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
.product-title {
font-size: 28px;
font-weight: 700;
color: #1e1e1e;
margin: 0 0 8px 0;
line-height: 1.2;
}
.brand-sub {
color: #555;
font-size: 16px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.brand-sub span {
background: #eaeef2;
padding: 4px 12px;
border-radius: 30px;
font-weight: 500;
font-size: 14px;
color: #1e3a5f;
}
.price-area {
font-size: 32px;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px 0;
}
.price-area .currency {
font-size: 20px;
vertical-align: super;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin: 25px 0 30px 0;
align-items: center;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9e9e9;
}
.gallery-main {
flex: 2 1 300px;
}
.gallery-thumbs {
flex: 1 1 140px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery-thumbs img {
width: 100%;
border-radius: 8px;
cursor: default;
opacity: 0.9;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e4e7ec;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child