9fEDo2qS
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.gallery-section {
flex: 1 1 45%;
min-width: 280px;
}
.gallery-main {
background: #f0f2f5;
border-radius: 16px;
padding: 20px;
text-align: center;
margin-bottom: 15px;
}
.gallery-main img {
max-width: 100%;
height: auto;
border-radius: 12px;
display: block;
margin: 0 auto;
}
.gallery-thumbs {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 12px;
border: 2px solid transparent;
cursor: pointer;
transition: 0.2s;
background: #e9ecef;
}
.gallery-thumbs img:hover {
border-color: #2d6a4f;
}
.info-section {
flex: 1 1 50%;
min-width: 280px;
}
.product-title {
font-size: 1.8rem;
font-weight: 700;
margin: 0 0 10px 0;
line-height: 1.3;
}
.brand-badge {
display: inline-block;
background: #d8f3dc;
color: #1b4332;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 12px;
}
.price-condition {
display: flex;
align-items: baseline;
gap: 15px;
flex-wrap: wrap;
margin: 15px 0;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0b3b2c;
}
.condition-badge {
background: #ffedd5;
color: #92400e;
padding: 5px 16px;
border-radius: 30px;
font-weight: 600;
font-size: 0.9rem;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20