VH86U5rs
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8fafc;
margin: 0;
padding: 20px;
color: #1e293b;
}
.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: 30px 35px;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 10px;
color: #0f172a;
}
.brand {
font-size: 1rem;
color: #475569;
margin-bottom: 20px;
display: block;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-bottom: 30px;
}
.gallery {
display: flex;
flex-direction: column;
gap: 12px;
}
.main-image {
background: #f1f5f9;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
padding: 30px;
min-height: 280px;
border: 1px solid #e2e8f0;
}
.main-image img {
max-width: 100%;
max-height: 260px;
object-fit: contain;
}
.thumbnails {
display: flex;
gap: 12px;
}
.thumb {
width: 80px;
height: 80px;
background: #f1f5f9;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #e2e8f0;
cursor: default;
}
.thumb img {
max-width: 70%;
max-height: 70%;
object-fit: contain;
}
.price-area {
margin-bottom: 20px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0f172a;
}
.currency {
font-size: 1.2rem;
font-weight: 500;
color: #475569;
}
.condition {
display: inline-block;
background: #dcfce7;
color: #166534;
font-weight: 500;
padding: 4px 14px;
border-radius: 40px;
font-size: 0.85rem;
margin-left: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #f8fafc;
border-radius: 16px;
overflow: hidden;
}
.spec