lGs9jntO
“`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: white;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 700;
margin: 0 0 8px 0;
color: #111;
}
.brand {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
}
.price-stock {
display: flex;
align-items: baseline;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 25px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #b12704;
}
.condition {
background: #e6f3e6;
color: #2e7d32;
padding: 6px 14px;
border-radius: 30px;
font-weight: 600;
font-size: 0.9rem;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0 30px 0;
}
.gallery img {
width: 100%;
max-width: 220px;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s;
cursor: pointer;
object-fit: cover;
aspect-ratio: 1/1;
background: #f0f0f0;
}
.gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}
.specs-table th {
background: #f0f0f0;
font-weight: 600;
width: 35%;
color: #333;
}
.specs-table td {
background: white;
}
.description {
font-size: 1.1rem;
line-height: 1.6;
margin: 20px 0 30px 0;
padding: 20px 0;
border-top: 1px solid #eaeaea;