rxDAZasi
* {
font-family: ‘Lato’, sans-serif;
box-sizing: border-box;
}
body {
font-family: ‘Lato’, sans-serif;
font-size: 16px;
line-height: 1.428571429;
color: #333;
background-color: white;
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1200px;
width: 100%;
background: #fff;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.06);
padding: 2rem 2.5rem;
}
/* grid layout */
.product-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2.5rem;
}
@media (max-width: 780px) {
.product-grid {
grid-template-columns: 1fr;
gap: 1.8rem;
}
}
/* gallery */
.gallery {
display: flex;
flex-direction: column;
gap: 1rem;
}
.main-image {
background: #f7f9fc;
border-radius: 20px;
padding: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #eef2f6;
}
.main-image img {
max-width: 100%;
height: auto;
display: block;
border-radius: 12px;
object-fit: cover;
max-height: 340px;
}
.thumbnails {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.thumb {
background: #f7f9fc;
border: 1px solid #e6ecf2;
border-radius: 14px;
padding: 0.4rem;
width: 80px;
height: 80px;