o4LXypqU
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 30px 40px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.product-gallery {
flex: 1 1 45%;
min-width: 280px;
}
.product-gallery img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
display: block;
margin-bottom: 12px;
}
.gallery-thumbs {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 8px;
cursor: default;
border: 2px solid transparent;
transition: 0.2s;
}
.gallery-thumbs img:hover {
border-color: #e30a17;
}
.product-details {
flex: 1 1 48%;
min-width: 280px;
}
h1 {
font-size: 2rem;
margin: 0 0 8px;
font-weight: 700;
letter-spacing: -0.3px;
}
.price {
font-size: 1.9rem;
font-weight: 700;
color: #b22222;
margin: 12px 0 10px;
}
.condition-badge {
display: inline-block;
background: #e8f5e9;
color: #2e7d32;
font-weight: 600;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
margin-bottom: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 18px 0 20px;
background: #fafafa;
border-radius: 10px;
overflow: hidden;
}
.specs-table td {
padding: 10px 16px;
border-bottom: 1px solid #eaeaea;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #444;
width: 40%;
}
.description {
line-height: 1.7;
margin: 20px 0