HwEa3Tuu
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px;
}
.product-title {
font-size: 2rem;
font-weight: 700;
margin: 0 0 10px;
color: #111;
}
.brand {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
}
.price {
font-size: 1.8rem;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 20px 0;
}
.image-gallery img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e0e0e0;
transition: 0.2s;
cursor: default;
}
.image-gallery img:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #eaeaea;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table th {
background: #f0f0f0;
font-weight: 600;
width: 30%;
}
.description {
line-height: 1.7;
font-size: 1.05rem;
margin: 20px 0;
padding: 15px 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.why-buy {
background: #f9f9f9;
padding: 20px 25px;
border-radius: 14px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 1.3rem;
}
.why-buy ul {
padding-left: 20px;
margin: 10px 0 0;
}
.why-buy li {
margin-bottom: 10px;
line-height: 1.5;
}