P7cbeHqi
body {
font-family: system-ui, -apple-system, ‘Segoe UI’, Roboto, ‘Helvetica Neue’, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 2rem 2.5rem;
transition: all 0.2s;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0.2rem;
margin-bottom: 0.5rem;
color: #111;
line-height: 1.3;
}
.brand-badge {
display: inline-block;
background: #eef2f5;
padding: 0.2rem 1rem;
border-radius: 40px;
font-size: 0.85rem;
font-weight: 500;
color: #1e2a3a;
letter-spacing: 0.3px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #0b2b4a;
margin: 0.75rem 0 0.5rem;
}
.condition-badge {
background: #f0f3f6;
padding: 0.25rem 1rem;
border-radius: 30px;
font-size: 0.8rem;
font-weight: 500;
display: inline-block;
margin-left: 0.5rem;
vertical-align: middle;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.5rem 0 2rem;
}
.gallery img {
width: 100%;
max-width: 180px;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
border: 1px solid #e9edf2;
transition: 0.2s;
background: white;
}
.gallery img:hover {
transform: scale(1.02);
box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 1.8rem 0 2rem;
background: #fafbfc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 0.9rem 1.2rem;
border-bottom: 1px solid #e6eaef;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs