dewYYCvi
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
line-height: 1.6;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 1.9rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 0.25rem;
color: #111;
}
.brand-tag {
font-size: 0.95rem;
color: #5a5a5a;
margin-bottom: 1.2rem;
display: flex;
align-items: center;
gap: 8px;
}
.brand-tag span {
background: #eaeef2;
padding: 3px 12px;
border-radius: 30px;
font-weight: 500;
font-size: 0.8rem;
color: #2c3e50;
}
.price-area {
font-size: 1.8rem;
font-weight: 700;
color: #1e8449;
margin: 15px 0 10px;
}
.price-area .currency {
font-size: 1.2rem;
vertical-align: super;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 25px 0 30px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
border: 1px solid #e9ecef;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.gallery-item img {
width: 100%;
display: block;
}
.desc-box {
background: #f4f7fb;
padding: 20px 24px;
border-radius: 14px;
margin: 20px 0 25px;
border-left: 4px solid #2c3e50;
}
.desc-box p {
margin: 0 0 6px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 20px;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table th,