PcAERHrk
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e1e2a;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 24px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 30px;
}
.gallery {
flex: 1 1 45%;
min-width: 280px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-thumbs {
display: flex;
gap: 12px;
margin-top: 12px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 12px;
cursor: default;
border: 2px solid #eaeef2;
}
.product-info {
flex: 1 1 50%;
min-width: 280px;
}
.product-title {
font-size: 1.9rem;
font-weight: 700;
margin: 0 0 8px;
line-height: 1.2;
}
.brand-tag {
display: inline-block;
background: #eef2f6;
padding: 4px 14px;
border-radius: 40px;
font-size: 0.85rem;
color: #2c3e50;
margin-bottom: 12px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0b2b3c;
margin: 12px 0 10px;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #5e6f7d;
}
.condition-badge {
background: #d4edda;
color: #155724;
padding: 6px 16px;
border-radius: 40px;
font-size: 0.9rem;
font-weight: 500;
display: inline-block;
margin-bottom: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0 10px;
font-size: 0.95rem;
}
.specs-table td {
padding