4L8fSruf
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s;
}
h1 {
font-size: 2.1rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 12px;
color: #1e1e1e;
letter-spacing: -0.3px;
}
.price-brand {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-bottom: 25px;
border-bottom: 1px solid #e9ecef;
padding-bottom: 15px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #0b5e42;
background: #e6f2ed;
padding: 6px 18px;
border-radius: 40px;
display: inline-block;
}
.brand-tag {
background: #f1f3f5;
padding: 6px 18px;
border-radius: 40px;
font-size: 0.9rem;
color: #2d3e50;
font-weight: 500;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 25px 0 30px;
}
.gallery img {
width: calc(25% – 14px);
min-width: 140px;
flex: 1 1 auto;
border-radius: 20px;
object-fit: cover;
height: 220px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #f0f0f0;
transition: transform 0.2s;
background: #fafafa;
}
.gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px;
background: #fcfcfc;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #eef2f6;
vertical-align: top;
}
.specs-table tr:last-child td {