IoaRXiur
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f9f7f4;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 24px;
box-shadow: 0 10px 30px rgba(0,0,0,0.06);
padding: 30px 30px 40px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 30px;
}
.image-gallery {
flex: 1 1 380px;
display: flex;
flex-direction: column;
gap: 12px;
}
.main-image {
background: #f0ede8;
border-radius: 20px;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
min-height: 280px;
}
.main-image img {
max-width: 100%;
height: auto;
max-height: 280px;
object-fit: contain;
}
.thumbnails {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.thumbnails img {
width: 70px;
height: 70px;
object-fit: cover;
border-radius: 12px;
border: 2px solid transparent;
background: #f0ede8;
cursor: pointer;
transition: border 0.2s;
}
.thumbnails img:hover {
border-color: #b2a48a;
}
.product-info {
flex: 1 1 350px;
}
.product-title {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 8px;
line-height: 1.2;
}
.brand {
color: #6b5e4e;
font-weight: 500;
letter-spacing: 0.3px;
}
.price {
font-size: 2rem;
font-weight: 700;
margin: 15px 0 10px;
color: #2a5c3a;
}
.price sup {
font-size: 1rem;
top: -0.5em;
}
.condition {
background: #e6e1d8;
display: inline-block;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 600;
color: #3f352b;
margin-bottom: 12px;
}
.short-desc {
font-size: 1rem;
line-height: 1.5;
margin: 15px 0;
color: #2c2c2c;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin