p1skh5ul
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
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 ease;
}
h1 {
font-size: 2.1rem;
font-weight: 600;
margin: 0 0 8px 0;
color: #1e1e2a;
letter-spacing: -0.3px;
}
.brand-sub {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.brand-badge {
background: #0b2b4a;
color: white;
font-weight: 600;
font-size: 0.8rem;
padding: 4px 14px;
border-radius: 40px;
letter-spacing: 0.3px;
}
.condition-badge {
background: #e7edf4;
color: #1e3a5f;
font-weight: 500;
font-size: 0.8rem;
padding: 4px 14px;
border-radius: 40px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0f2b3f;
margin: 10px 0 20px 0;
}
.price sup {
font-size: 1rem;
top: -0.5em;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 14px;
margin: 25px 0