i0JNKcqE
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e2a3a;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 10px 0;
color: #0b1c2f;
line-height: 1.2;
}
.brand-badge {
display: inline-block;
background: #eef3f9;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 500;
color: #1e3a5f;
margin-bottom: 15px;
}
.price-block {
font-size: 2.2rem;
font-weight: 700;
color: #1a6b3c;
margin: 15px 0 20px 0;
}
.price-block small {
font-size: 1rem;
font-weight: 400;
color: #5a6a7a;
margin-left: 8px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0 30px 0;
}
.gallery img {
width: 100%;
max-width: 220px;
height: auto;
border-radius: 14px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9edf2;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #f9fbfd;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e2e8f0;
font-size: 0.95rem;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #1e3a5f;
width: 40%;
background: #f1f5f9;
}
.description {
font-size: 1.05rem;
line-height: 1.7;
color: #1f2a3a;
margin: 20px