SU98YZsC
body {
font-family: ‘Segoe UI’, Roboto, system-ui, -apple-system, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 28px;
box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.05);
padding: 30px 35px;
transition: all 0.2s ease;
}
h1, h2, h3 {
font-weight: 500;
letter-spacing: -0.02em;
color: #1e293b;
}
h1 {
font-size: 2.2rem;
margin-top: 0.2rem;
margin-bottom: 0.25rem;
font-weight: 600;
}
.brand-sub {
color: #4b5563;
font-size: 1rem;
font-weight: 400;
margin-bottom: 1.2rem;
border-left: 4px solid #2563eb;
padding-left: 14px;
background: #f8fafc;
border-radius: 0 8px 8px 0;
line-height: 1.4;
}
.price-badge {
background: #0f172a;
color: white;
display: inline-block;
padding: 8px 22px;
border-radius: 40px;
font-size: 1.8rem;
font-weight: 600;
letter-spacing: -0.01em;
margin: 10px 0 20px 0;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.price-badge span {
font-size: 1rem;
font-weight: 400;
opacity: 0.8;
margin-left: 6px;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 25px 0 30px;
}
.gallery-grid img {
width: calc(25% – 14px);
min-width: 140px;
flex: 1 1 auto;
border-radius: 20px;
object-fit: cover;
height: 200px;
background: #eef2f6;
box-shadow: 0 4px 10px rgba(0,0,0,0.02);
border: 1px solid #e9edf2;
transition: 0.15s ease;
}
.gallery-grid img:hover {
transform: scale(1.01);
box-shadow: 0 8px 18px rgba(0,0,0,0.08);