FlVU8TuO
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #222;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
padding: 30px 35px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 40px;
margin-bottom: 40px;
}
.gallery {
flex: 1 1 45%;
min-width: 280px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
margin-bottom: 12px;
display: block;
}
.thumbnails {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.thumbnails img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 8px;
cursor: default;
border: 1px solid #e9ecef;
}
.product-info {
flex: 1 1 45%;
min-width: 280px;
}
h1 {
font-size: 28px;
font-weight: 700;
margin: 0 0 8px 0;
line-height: 1.2;
}
.brand {
color: #6c757d;
font-size: 15px;
margin-bottom: 12px;
display: block;
}
.price {
font-size: 32px;
font-weight: 700;
color: #0d6efd;
margin: 16px 0 10px 0;
}
.condition {
background: #e8f5e9;
color: #2e7d32;
padding: 4px 12px;
border-radius: 30px;
font-size: 14px;
font-weight: 500;
display: inline-block;
margin-bottom: 18px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 14px;
}
.specs-table td {
padding: 8px 12px;
border-bottom: 1px solid #f1f3f5;
}
.specs-table td:first-child {
font-weight: 600;
color: #495057;
width: 40%;
}
.description {
line-height: 1.7;
margin: 20px 0 25px 0;
font-size: 16px;
color: #212529;
}