iDxlKYsj
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: white;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px;
margin: 20px auto;
}
.product-title {
font-size: 1.8rem;
font-weight: 600;
color: #1a1a2e;
margin-bottom: 10px;
line-height: 1.3;
}
.price-badge {
font-size: 1.6rem;
font-weight: 700;
color: #2d6a4f;
background: #e9f5ec;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 10px 0 20px;
}
.condition-tag {
background: #ffedd5;
color: #9a3412;
font-weight: 500;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.9rem;
display: inline-block;
margin-left: 12px;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0;
}
.image-gallery img {
width: 100%;
max-width: 220px;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
object-fit: cover;
border: 1px solid #e9ecef;
transition: transform 0.2s;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 14px 18px;
text-align: left;
border-bottom: 1px solid #e2e8f0;
}
.specs-table th {
background: #f1f5f9;
font-weight: 600;
color: #1e293b;
width: 35%;
}
.specs-table td {
color: #334155;
}
.description-text {
font-size: 1.05rem;
line-height: 1.7;
color: #1e293b;
background: #f8fafc;
padding: 20px 24px;
border-radius: 12px;
border