jTKzx2qP
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f9f9f9;
margin: 0;
padding: 20px;
color: #222;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px 25px;
}
h1 {
font-size: 28px;
margin-bottom: 10px;
color: #111;
}
.brand-tag {
color: #b22222;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
}
.price {
font-size: 32px;
font-weight: 700;
color: #1a7a1a;
margin: 15px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0;
}
.image-gallery img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 8px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}
.specs-table th {
background: #eaeaea;
font-weight: 600;
width: 40%;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description {
line-height: 1.7;
font-size: 16px;
margin: 20px 0;
padding: 15px 0;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.why-buy {
background: #f0f7ff;
padding: 20px 25px;
border-radius: 10px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
color: #0a3d62;
}
.why-buy ul {
list-style: none;
padding: 0;
}
.why-buy li {