lJGFqOqy
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e293b;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 10px 0;
color: #0f172a;
line-height: 1.2;
}
.condition-badge {
display: inline-block;
background: #f59e0b;
color: #1e293b;
font-weight: 600;
font-size: 0.85rem;
padding: 4px 14px;
border-radius: 30px;
letter-spacing: 0.3px;
margin-bottom: 20px;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
margin: 20px 0 25px 0;
}
.gallery-grid img {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 14px;
background: #eef2f6;
border: 1px solid #e2e8f0;
transition: 0.2s;
}
.gallery-grid img:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.price-area {
font-size: 2.2rem;
font-weight: 700;
color: #0b3b5c;
margin: 10px 0 20px 0;
}
.price-area .currency {
font-size: 1.2rem;
font-weight: 500;
color: #475569;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 20px 0;
background: #f8fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e2e8f0;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 38%;
color: #1e293b;
}
.specs-table td:last-child {
color: #334155;
}
.description-box {
background: #f1f5f9;
padding: 20px 24px;
border-radius: 16