CKvP62qI
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 2rem 1rem;
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: 2rem 2.5rem;
transition: all 0.2s;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0.2rem;
margin-bottom: 0.5rem;
color: #1e293b;
letter-spacing: -0.01em;
}
.brand-sub {
color: #4b5563;
font-size: 1rem;
font-weight: 400;
margin-bottom: 1.2rem;
border-bottom: 1px solid #e9edf2;
padding-bottom: 0.8rem;
}
.price-badge {
background: #0b2b3f;
color: white;
display: inline-block;
padding: 0.5rem 1.4rem;
border-radius: 40px;
font-weight: 600;
font-size: 1.6rem;
letter-spacing: 0.5px;
margin: 0.5rem 0 1.5rem 0;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 1.8rem 0 2rem 0;
}
.gallery-item {
flex: 1 1 180px;
background: #f0f3f8;
border-radius: 20px;
padding: 1rem 0.5rem;
text-align: center;
border: 1px solid #e2e8f0;
transition: 0.15s;
}
.gallery-item img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
border-radius: 12px;
background: white;
}
.gallery-item figcaption {
font-size: 0.75rem;
color: #475569;
margin-top: 8px;
}
.specs-section {
background: #f9fafc;
border-radius: 20px;
padding: 1.5rem 2rem;
margin: 2rem 0;
border: 1px solid #e9edf2;
}
.specs-table {
width: 100%;
border-collapse: collapse;
}
.specs-table td {