SKg4npqS
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f4f6f8;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: white;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px;
margin: 20px auto;
}
h1 {
font-size: 2rem;
color: #1a2634;
margin-bottom: 0.25rem;
}
.brand-tag {
color: #2c7a4b;
font-weight: 600;
letter-spacing: 0.5px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #1f3a4b;
margin: 15px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 20px 0;
}
.gallery img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e0e6ed;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.05);
border-color: #2c7a4b;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f9fafc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #e2e8f0;
text-align: left;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table th {
background: #eef2f6;
font-weight: 600;
color: #1f3a4b;
width: 40%;
}
.description-box {
background: #f9fafc;
padding: 20px 24px;
border-radius: 12px;
margin: 20px 0;
border-left: 4px solid #2c7a4b;
}
.why-buy {
background: #f0f5f0;
padding: 20px 24px;
border-radius: 12px;
margin: 20px 0;
}
.why-buy ul {
list-style: none;
padding-left: 0;
margin: 0;
}
.why-buy li {
padding: 8px 0;
padding-left: 28px;
position: relative;
font-size: 1rem;
}