ayFqisvZ
“`html
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f9fafb;
margin: 0;
padding: 20px;
color: #1f2937;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 24px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 32px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 32px;
}
.gallery {
flex: 1 1 400px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 16px;
object-fit: cover;
background: #f3f4f6;
border: 1px solid #e5e7eb;
}
.gallery-thumbs {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
border-radius: 12px;
cursor: default;
border: 2px solid transparent;
transition: border 0.2s;
}
.gallery-thumbs img:hover {
border-color: #3b82f6;
}
.product-info {
flex: 1 1 400px;
}
.product-title {
font-size: 1.8rem;
font-weight: 700;
margin: 0 0 8px;
line-height: 1.2;
}
.brand-badge {
display: inline-block;
background: #e5e7eb;
padding: 4px 12px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 600;
color: #374151;
margin-bottom: 12px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #0f172a;
margin: 16px 0;
}
.condition {
background: #fef3c7;
color: #92400e;
padding: 6px 14px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 600;
display: inline-block;
margin-bottom: 16px;
}
.desc-short {
font-size: 1.05rem;
line-height: 1.6;
color: #374151;
margin: 16px 0 24px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0 24px;
font-size: 0.95rem;
}
.specs-table td