oJgjhHtc
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
color: #1e1e1e;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 28px;
box-shadow: 0 20px 40px rgba(0,0,0,0.06);
padding: 30px 30px 40px;
transition: all 0.2s;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.gallery-column {
flex: 1 1 380px;
min-width: 280px;
}
.info-column {
flex: 2 1 400px;
}
.image-gallery {
display: flex;
flex-direction: column;
gap: 14px;
}
.main-image {
background: #f0f2f5;
border-radius: 24px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
border: 1px solid #e9edf2;
}
.main-image img {
width: 100%;
height: auto;
max-height: 420px;
object-fit: contain;
transition: transform 0.2s;
}
.thumbnails {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.thumb {
width: 80px;
height: 80px;
background: #f0f2f5;
border-radius: 16px;
overflow: hidden;
border: 2px solid transparent;
cursor: default;
display: flex;
align-items: center;
justify-content