5Z8FgHr8
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px;
}
.product-title {
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 10px;
color: #0a0a0a;
}
.brand-badge {
display: inline-block;
background: #e9ecef;
padding: 4px 12px;
border-radius: 30px;
font-size: 0.85rem;
color: #333;
margin-bottom: 15px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #2a7f2a;
margin: 10px 0 20px;
}
.image-gallery {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin: 20px 0;
}
.image-gallery img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e0e0e0;
transition: 0.2s;
}
.image-gallery img:hover {
transform: scale(1.03);
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 {
padding: 12px 16px;
border-bottom: 1px solid #eaeaea;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #2c3e50;
}
.description {
background: #f2f6fc;
padding: 20px;
border-radius: 12px;
margin: 20px 0;
line-height: 1.6;
}
.why-buy {
background: #fef9e7;
padding: 20px;
border-radius: 12px;
margin: 20px 0;
}
.why-buy ul {
margin: 0;
padding-left: 20px;
}
.why-buy li {
margin-bottom: 8px;
}
.faq-section {
margin: 25px