og4lg9s8
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Open Sans’, sans-serif;
background: #f5f7fa;
display: flex;
justify-content: center;
padding: 30px 20px;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 24px;
box-shadow: 0 20px 40px rgba(0,0,0,0.08);
padding: 30px 30px 40px;
transition: 0.2s;
}
/* schema wrapper */
.product-schema {
display: contents;
}
.gallery-row {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 30px;
}
.gallery-main {
flex: 2;
min-width: 280px;
background: #fafbfc;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
border: 1px solid #eef0f2;
}
.gallery-main img {
max-width: 100%;
height: auto;
max-height: 320px;
object-fit: contain;
transition: 0.2s;
}
.gallery-thumbs {
flex: 1;
min-width: 120px;
display: flex;
flex-direction: column;
gap: 12px;
}
.thumb-item {
background: #fafbfc;
border-radius: 14px;
border: 1px solid #eef0f2;
padding: 8px;
display: flex;
align-items: center;
justify-content: center;
transition: 0.15s;
cursor: default;
}
.thumb-item img {
max-width: 100%;
height: auto;
max-height: 80px;
object-fit: contain;
}
.thumb-item:hover {
border-color: #b3c9e5;
background: white;
}
.price-area {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 12px 20px;
margin: 20px 0 10px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #1e2b3c;
letter-spacing: -0.3px;
}
.price-currency {
font-size: 1.2rem;
font-weight: 600;