kMV2gjuh
“`html
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 28px;
font-weight: 700;
margin: 0 0 10px 0;
color: #0f0f1a;
line-height: 1.2;
}
.brand-badge {
display: inline-block;
background: #eef2ff;
color: #2a3b8f;
font-weight: 600;
font-size: 14px;
padding: 4px 14px;
border-radius: 30px;
margin-bottom: 15px;
}
.price {
font-size: 32px;
font-weight: 700;
color: #1e3a5f;
margin: 10px 0 20px 0;
}
.price span {
font-size: 18px;
font-weight: 400;
color: #5a6a7a;
text-decoration: line-through;
margin-left: 10px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
width: 100%;
max-width: 200px;
border-radius: 16px;
object-fit: cover;
border: 1px solid #e9edf2;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.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: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e6eaef;
font-size: 15px;
}
.specs-table td:first-child {
font-weight: 600;
color: #1f2a44;
width: 40%;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.desc-box {
background: #f8faff;
padding: