RiVGLvvv
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.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;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 10px;
color: #111;
}
.brand-badge {
display: inline-block;
background: #2c3e50;
color: white;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.5px;
margin-bottom: 15px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 30px 0;
}
.image-gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s ease;
border: 1px solid #e9ecef;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.gallery-item img {
width: 100%;
height: auto;
object-fit: cover;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #e9ecef;
}
.specs-table th {
background: #f1f3f5;
font-weight: 600;
color: #2c3e50;
width: 35%;
}
.specs-table td {
background: white;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description-section {
margin: 30px 0;
line-height