NBiMsHq5
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f4f6f8;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s ease;
}
h1 {
font-size: 2rem;
font-weight: 600;
color: #1e1e1e;
margin: 0 0 10px 0;
line-height: 1.3;
}
.brand-tag {
color: #007185;
font-weight: 500;
font-size: 0.95rem;
letter-spacing: 0.3px;
margin-bottom: 15px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #b12704;
margin: 15px 0 20px 0;
}
.price span {
font-size: 1rem;
font-weight: 400;
color: #565959;
margin-left: 8px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
width: 100%;
max-width: 200px;
height: auto;
border-radius: 14px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
object-fit: cover;
border: 1px solid #e9ecef;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.description {
font-size: 1.05rem;
line-height: 1.7;
color: #2c2c2c;
background: #f9fafb;
padding: 20px 25px;
border-radius: 16px;
margin: 20px 0;
border-left: 4px solid #007185;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafbfc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e2e6ea;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #1e293b;
width: 40%;