ILn9ZJu2
body {
font-family: ‘Segoe UI’, Roboto, system-ui, -apple-system, sans-serif;
background: #f8fafc;
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 32px;
box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
padding: 2rem 2.5rem;
transition: all 0.2s ease;
}
@media (max-width: 600px) {
.product-card { padding: 1.5rem; }
}
.product-title {
font-size: 2.2rem;
font-weight: 600;
color: #0b2b3c;
margin: 0 0 0.25rem 0;
line-height: 1.2;
display: flex;
align-items: center;
gap: 8px;
}
.brand-tag {
background: #e6f0f5;
color: #1a5e7a;
font-weight: 500;
font-size: 0.9rem;
padding: 0.2rem 1rem;
border-radius: 40px;
display: inline-block;
margin-bottom: 0.5rem;
}
.price-area {
display: flex;
align-items: baseline;
gap: 12px;
margin: 0.5rem 0 1.5rem 0;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #0f3b4a;
}
.currency {
font-size: 1.2rem;
font-weight: 500;
color: #2c6b80;
}
.condition-badge {
background: #d9e9f0;
padding: 0.2rem 1rem;
border-radius: 30px;
font-size: 0.8rem;
font-weight: 600;
color: #1a5e7a;
letter-spacing: 0.3px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 1.8rem 0 2rem 0;
}
.gallery-item {
flex: 1 1 160px;
min-width: 120px;
background: #f1f7fa;
border-radius: 24px;
padding: 1rem 0.5rem;
text-align: center;
border: 1px solid #e2edf2;
transition: 0.1s ease;
}
.gallery-item img {
max-width: 100%;
height: auto;