rReTxqug
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f8f9fa;
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;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 30px;
}
.product-gallery {
flex: 1 1 45%;
min-width: 280px;
}
.product-gallery img {
width: 100%;
height: auto;
border-radius: 8px;
border: 1px solid #e0e0e0;
margin-bottom: 10px;
}
.gallery-thumbs {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 6px;
cursor: pointer;
border: 2px solid transparent;
transition: border 0.2s;
}
.gallery-thumbs img:hover {
border-color: #4a90d9;
}
.product-info {
flex: 1 1 50%;
min-width: 280px;
}
h1 {
font-size: 1.8rem;
margin: 0 0 10px 0;
color: #1a1a1a;
}
.brand {
color: #555;
font-size: 0.95rem;
margin-bottom: 10px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #b12704;
margin: 15px 0;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #fafafa;
border-radius: 8px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 10px 15px;
border-bottom: 1px solid #e9ecef;
text-align: left;
}
.specs-table th {
background: #f1f3f5;
font-weight: 600;
width: 40%;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.description {
line-height: 1.7;
margin: 20px 0;
color: #333;
}
.why-buy {
background: #f0f7ff;
padding: 20px;
border-radius: 10px;
margin: 25px 0;