9YSczTuu
“`html
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, 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-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.gallery {
flex: 1 1 45%;
min-width: 280px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.01);
}
.product-info {
flex: 1 1 50%;
}
h1 {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 10px 0;
line-height: 1.3;
color: #0b1a2e;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0f7b3a;
margin: 15px 0 10px;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #5a6a7a;
margin-left: 8px;
}
.badge {
display: inline-block;
background: #e7f3e8;
color: #0f7b3a;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #f9fafc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 12px 16px;
border-bottom: 1px solid #e9edf2;
font-size: 0.95rem;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
}
.description {
margin: 25px 0 15px;
line-height: 1.7;
color: #2d3e50;
}