LDJ1HQqL
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #f5f7fa;
display: flex;
justify-content: center;
padding: 2rem 1rem;
font-family: ‘Source Sans Pro’, sans-serif;
line-height: 1.5;
color: #1e1e2a;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 28px;
box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 8px 20px rgba(0,0,0,0.03);
padding: 2rem 2.5rem;
transition: 0.2s;
}
@media (max-width: 700px) {
.product-card { padding: 1.5rem; }
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.images {
flex: 1 1 380px;
min-width: 280px;
}
.images img {
max-height: 520px;
max-width: 100%;
width: auto;
height: auto;
border-radius: 20px;
box-shadow: 0 8px 18px rgba(0,0,0,0.05);
background: #fafafa;
object-fit: contain;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 12px;
}
.image-gallery img {
max-height: 80px;
max-width: 80px;
border-radius: 12px;
cursor: default;
border: 1px solid #eaeef2;
padding: 4px;
background: white;
}
.info {
flex: 1 1 400px;
}
h1 {
font-size: 1.9rem;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2;
margin-bottom: 0.5rem;
}
.brand-badge {
display: inline-block;
background: #eef2f6;
padding: 0.2rem 1rem;
border-radius: 40px;
font-size: 0.85rem;
font-weight: 600;
color: #1f2a44;
margin-bottom: 0.75rem;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0b2b4a;
margin: 0.75rem 0 0.25rem;