tgfNbVrf
“`html
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #f4f6f9;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 8px 0;
color: #0b1d2e;
line-height: 1.2;
}
.brand-sub {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-bottom: 20px;
}
.brand {
font-size: 1rem;
color: #4a5568;
background: #eef2f7;
padding: 4px 14px;
border-radius: 30px;
font-weight: 500;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0f6c41;
background: #e6f4ed;
padding: 6px 20px;
border-radius: 40px;
display: inline-block;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0 20px 0;
}
.gallery img {
width: 100%;
max-width: 200px;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s ease;
background: #f0f2f5;
object-fit: cover;
}
.gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 20px 0;
background: #f9fafc;
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;
color: #1e293b;
width: 40%;
background: #f1f4f9;
}
.specs-table td:last-child {
color: #1e293b;
background: #ffffff;