5oRvZBsZ
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
width: 100%;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
box-sizing: border-box;
}
h1 {
font-size: 28px;
font-weight: 600;
margin: 0 0 8px 0;
color: #1e1e1e;
letter-spacing: -0.3px;
}
.brand-tag {
display: inline-block;
background: #eef2f7;
padding: 4px 14px;
border-radius: 30px;
font-size: 14px;
font-weight: 500;
color: #2c3e50;
margin-bottom: 12px;
}
.price {
font-size: 32px;
font-weight: 700;
color: #0b5e42;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0 30px 0;
}
.gallery img {
width: 100%;
max-width: 180px;
height: auto;
border-radius: 14px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
object-fit: cover;
border: 1px solid #eaeef2;
transition: transform 0.2s ease;
}
.gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #fafbfc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e9edf2;
font-size: 15px;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #1f2a36;
width: 40%;
background: #f2f5f9;
}
.specs-table td:last-child {
color: #2c3e50;
background: #ffffff;
}
.description {
font-size: 16px;
line-height: 1.6;
color: #1e2a36;
margin: 20px 0 25px 0;
padding: 18px 22