XvlGT5ua
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
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;
margin-bottom: 30px;
}
.product-gallery {
flex: 1 1 45%;
min-width: 280px;
}
.product-gallery img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
background: #f0f2f5;
object-fit: cover;
}
.gallery-thumbs {
display: flex;
gap: 12px;
margin-top: 15px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
border-radius: 12px;
cursor: pointer;
border: 2px solid transparent;
transition: 0.2s;
object-fit: cover;
}
.gallery-thumbs img:hover {
border-color: #2b7a62;
}
.product-info {
flex: 1 1 50%;
min-width: 280px;
}
.product-title {
font-size: 1.8rem;
font-weight: 600;
margin: 0 0 8px;
line-height: 1.3;
}
.brand-badge {
display: inline-block;
background: #eef2f7;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
color: #2c3e50;
font-weight: 500;
margin-bottom: 12px;
}
.price-block {
font-size: 2rem;
font-weight: 700;
color: #0b5e42;
margin: 15px 0 10px;
}
.price-block small {
font-size: 1rem;
font-weight: 400;
color: #5f6b7a;
margin-left: 8px;
}
.condition {
background: #d4edda;
color: #155724;
padding: 4px 14px;
border-radius: 30px;
display: inline-block;
font-size: 0.85rem;
font-weight: 500;
}
.specs-mini {
margin: 20px 0;