yQxMdCsG
“`html
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: 1000px;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s;
}
h1 {
font-size: 28px;
font-weight: 700;
margin: 0 0 8px 0;
color: #1e1e1e;
letter-spacing: -0.3px;
}
.brand-sub {
color: #5f6b7a;
font-size: 15px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.brand-sub span {
background: #eef2f6;
padding: 4px 12px;
border-radius: 30px;
font-weight: 500;
font-size: 13px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 25px 0 30px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.04);
transition: transform 0.2s;
border: 1px solid #f0f0f0;
}
.gallery img:hover {
transform: scale(1.01);
}
.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: 12px;
cursor: pointer;
}
.price-area {
display: flex;
align-items: baseline;
gap: 12px;
margin: 15px 0 20px;
}
.price {
font-size: 32px;
font-weight: 700;
color: #0b2b3c;
}
.currency {
font-size: 18px;
font-weight: 500;
color: #3f4a59;
}
.condition-badge {
background: #d4edda;
color: #0f5c2e;
font-weight: 600;
font-size: 14px;
padding: 5px 14px;
border-radius: 40px;
margin-left: 10px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px