CpoWFRqn
“`html
body {
font-family: ‘Source Sans Pro’, Arial, sans-serif;
background: #f9f9f9;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 30px 40px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 30px;
}
.images {
flex: 1 1 380px;
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.images img {
max-height: 520px;
max-width: 380px;
width: 100%;
height: auto;
object-fit: contain;
border-radius: 12px;
background: #f0f0f0;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.images .thumb-group {
display: flex;
gap: 8px;
flex-wrap: wrap;
width: 100%;
}
.images .thumb-group img {
max-height: 80px;
max-width: 80px;
width: auto;
cursor: pointer;
border: 2px solid transparent;
transition: border 0.2s;
}
.images .thumb-group img:hover {
border-color: #007bff;
}
.info {
flex: 1 1 400px;
}
.info h1 {
font-size: 1.9rem;
margin: 0 0 8px;
font-weight: 600;
line-height: 1.2;
}
.brand {
color: #555;
font-size: 1rem;
margin-bottom: 10px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #b12704;
margin: 12px 0 10px;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #555;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 18px 0 20px;
background: #fafafa;
border-radius: 8px;
overflow: hidden;
}
.specs-table td {
padding: 10px 14px;
border-bottom: 1px solid #e0e0e0;
font-size: 0.95rem;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #333