8UmXYasa
* {
font-family: ‘Lato’, sans-serif;
box-sizing: border-box;
}
body {
background-color: #fafafa;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s;
}
h1, h2, h3 {
font-weight: 700;
color: #1e1e1e;
margin-top: 0.2em;
}
h1 {
font-size: 2.1rem;
border-bottom: 2px solid #eaeef2;
padding-bottom: 12px;
}
.grid-2col {
display: flex;
flex-wrap: wrap;
gap: 40px;
margin-top: 20px;
}
.gallery {
flex: 1 1 45%;
min-width: 280px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
background: #f5f7fa;
object-fit: contain;
}
.gallery-thumbs {
display: flex;
gap: 12px;
margin-top: 15px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
border-radius: 12px;
cursor: default;
border: 1px solid #e2e8f0;
padding: 4px;
background: white;
}
.product-details {
flex: 1 1 48%;
}
.price-badge {
font-size: 2rem;
font-weight: 700;
color: #0b2b4a;
background: #eef4fa;
display: inline-block;
padding: 8px 24px;
border-radius: 40px;
margin: 15px 0 10px;
}
.sku {
color: #5b6f82;
font-size: 0.9rem;
letter-spacing: 0.3px;
margin-bottom: 20px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0 25px;
background: #f9fbfd;