aq6WfHtD
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e1e2a;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 30px 40px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.gallery {
flex: 1 1 380px;
min-width: 280px;
}
.gallery-main {
background: #f0f2f6;
border-radius: 20px;
padding: 20px;
text-align: center;
margin-bottom: 15px;
}
.gallery-main img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.gallery-thumbs {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 12px;
cursor: default;
border: 2px solid transparent;
background: #f0f2f6;
padding: 4px;
box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.product-info {
flex: 2 1 480px;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin: 0 0 8px;
line-height: 1.2;
}
.price-badge {
font-size: 2.2rem;
font-weight: 700;
color: #1f7b4d;
background: #e6f3ec;
display: inline-block;
padding: 6px 20px;
border-radius: 60px;
margin: 12px 0 16px;
}
.condition-tag {
background: #eaeef5;
padding: 6px 16px;
border-radius: 40px;
font-size: 0.9rem;
font-weight: 500;
display: inline-block;
margin-left: 12px;
vertical-align: middle;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0 18px;
background: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 10px 16px;
border-bottom: 1px solid #e6eaef;
font-size: 0.95rem;
}
.specs-table tr:last-child