dEFjCDq2
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.05);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 700;
margin: 0 0 8px 0;
line-height: 1.2;
}
.brand-sub {
color: #5f6368;
font-size: 1rem;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.brand-sub span {
background: #e8f0fe;
padding: 2px 12px;
border-radius: 30px;
font-weight: 500;
color: #1a73e8;
}
.price-area {
font-size: 1.8rem;
font-weight: 700;
color: #b12704;
margin: 15px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0 30px 0;
}
.gallery img {
max-width: 180px;
height: auto;
border-radius: 12px;
border: 1px solid #e0e0e0;
transition: 0.2s;
box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.gallery img:hover {
border-color: #1a73e8;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.two-col {
display: flex;
flex-wrap: wrap;
gap: 40px;
margin: 30px 0 20px 0;
}
.specs-table {
flex: 1 1 280px;
border-collapse: collapse;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 10px 16px;
text-align: left;
border-bottom: 1px solid #e9ecef;
font-size: 0.95rem;
}
.specs-table th {
background: #f1f3f4;
font-weight: 600;
width: 40%;
color: #2c3e50;
}
.specs-table td {
background: white;
}
.desc-box {
flex: 2 1 380px;
}
.desc-box h3 {