zUpNrpqd
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Poppins’, sans-serif;
background-color: #f4f7f8;
color: #24323a;
line-height: 1.5;
padding: 20px 0;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
}
/* product card */
.product-card {
background: #ffffff;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.06);
padding: 30px 28px;
transition: box-shadow 0.2s;
}
/* image gallery */
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 28px;
align-items: center;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.04);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-main {
flex: 2 1 280px;
min-width: 200px;
}
.gallery-thumbs {
display: flex;
flex-wrap: wrap;
gap: 12px;
flex: 1 1 160px;
}
.gallery-thumbs img {
width: 70px;
height: 70px;
object-fit: cover;
border-radius: 12px;
cursor: default;
border: 1px solid #e9edf0;
}
@media (max-width: 500px) {
.gallery-thumbs img {
width: 60px;
height: 60px;
}
}
/* title + price */
.product-title {
font-size: 1.8rem;
font-weight: 600;
letter-spacing: -0.3px;
margin-bottom: 8px;
color: #1a2b33;
}
.brand-sub {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
margin-bottom: 18px;
}
.brand {
font-weight: 500;
color: #3f5a68;
background: #eef3f5;
padding: 4px 14px;
border-radius: 40