XyVgBZt9
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f9fafb;
margin: 0;
padding: 20px;
color: #1e293b;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
padding: 30px 35px;
}
.product-title {
font-size: 28px;
font-weight: 600;
margin-bottom: 10px;
line-height: 1.3;
}
.brand-badge {
display: inline-block;
background: #eef2ff;
color: #1e40af;
font-weight: 600;
padding: 4px 14px;
border-radius: 30px;
font-size: 14px;
margin-bottom: 15px;
}
.price-stock {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
margin: 15px 0 20px;
}
.price {
font-size: 32px;
font-weight: 700;
color: #0f172a;
}
.condition {
background: #f1f5f9;
padding: 6px 16px;
border-radius: 30px;
font-size: 14px;
font-weight: 500;
}
.gallery {
display: flex;
gap: 15px;
flex-wrap: wrap;
margin: 20px 0 30px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
border: 1px solid #e2e8f0;
box-shadow: 0 4px 12px rgba(0,0,0,0.04);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.gallery-item img {
width: 100%;
display: block;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px;
background: #f8fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 20px;
border-bottom: 1px solid #e2e8f0;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #334155;
}
.description-box {
background: #f1f5