qWC35Hqw
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
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: #0a2540;
}
.brand {
font-size: 1rem;
color: #5a6b7c;
margin-bottom: 20px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.image-gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
transition: transform 0.2s;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 12px;
width: 100%;
}
.gallery-grid img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 10px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f4f6f9;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #dce1e8;
}
.specs-table th {
background: #e9edf2;
font-weight: 600;
color: #1f2a36;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.description {
font-size: 1.05rem;
line-height: 1.7;
margin: 25px 0;
padding: 20px 0;
border-top: 1px solid #e0e4ea;
border-bottom: 1px solid #e0e4ea;
}
.why-buy {
background: #f0f