E9Er3asw
* {
font-family: ‘Lato’, sans-serif;
box-sizing: border-box;
}
body {
background-color: #f9f9f9;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 20px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
h1, h2, h3, p, li, table {
font-family: ‘Lato’, sans-serif;
}
.product-title {
font-size: 28px;
font-weight: 700;
margin: 0 0 8px 0;
color: #1a1a2e;
letter-spacing: -0.2px;
}
.brand-sub {
font-size: 16px;
color: #4a4a5a;
margin-bottom: 20px;
border-bottom: 1px solid #eaeef2;
padding-bottom: 12px;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0 30px;
}
.gallery-grid img {
width: calc(25% – 12px);
min-width: 140px;
border-radius: 16px;
object-fit: cover;
background: #f0f2f5;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
transition: transform 0.2s ease;
aspect-ratio: 1/1;
}
.gallery-grid img:hover {
transform: scale(1.02);
}
.price-schema {
font-size: 32px;
font-weight: 700;
color: #0b4f6c;
background: #e7f0f5;
display: inline-block;
padding: 8px 24px;
border-radius: 60px;
margin: 10px 0 20px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px;
background: #fafcfe;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.specs-table td {
padding: 14px 18px;
border-bottom: 1px solid #e6edf2;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}