BB2gkTud
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 2rem;
font-weight: 700;
margin: 0 0 10px 0;
color: #0f0f1a;
line-height: 1.2;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #c0392b;
margin: 10px 0 20px 0;
}
.price sup {
font-size: 1rem;
top: -0.8em;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 180px;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.2s;
cursor: pointer;
border: 2px solid #e0e0e0;
}
.gallery img:hover {
transform: scale(1.03);
border-color: #c0392b;
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0;
}
@media (max-width: 700px) {
.grid-2 {
grid-template-columns: 1fr;
}
}
.specs-table {
width: 100%;
border-collapse: collapse;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #e9ecef;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
background: #f0f2f5;
}
.specs-table td:last-child {
color: #1e2a3a;
}
.description {
font-size: 1.05rem;
line-height: 1.7;
background: #f9fafc;
padding: 20px 25px;
border-radius