tiH3KTu9
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e1e2a;
}
.product-card {
max-width: 1200px;
margin: 0 auto;
background: white;
border-radius: 24px;
box-shadow: 0 12px 40px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: 0.2s;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.gallery-section {
flex: 1 1 45%;
min-width: 280px;
}
.info-section {
flex: 1 1 50%;
min-width: 300px;
}
.main-image {
width: 100%;
border-radius: 20px;
background: #f0f2f6;
display: flex;
align-items: center;
justify-content: center;
padding: 20px 0;
margin-bottom: 15px;
}
.main-image img {
max-width: 100%;
height: auto;
max-height: 400px;
object-fit: contain;
}
.thumb-gallery {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.thumb-gallery img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 14px;
cursor: pointer;
border: 2px solid transparent;
transition: 0.2s;
background: #eef0f4;
}
.thumb-gallery img:hover {
border-color: #2b6c9e;
}
h1 {
font-size: 2rem;
font-weight: 700;
margin: 0 0 8px 0;
line-height: 1.2;
}
.price-badge {
font-size: 2rem;
font-weight: 700;
color: #1f7b4c;
background: #e3f3e9;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 12px 0 16px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 16px;
border-bottom: 1px solid #e6e9f0;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
}
.description-text {
line-height: 1.6;
color: #2c3e50;
margin: 20px 0 10