oidbMTuX
body {
font-family: system-ui, -apple-system, ‘Segoe UI’, Roboto, ‘Helvetica Neue’, sans-serif;
background: #f8f9fa;
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 ease;
}
@media (max-width: 600px) {
.product-card { padding: 1.5rem 1rem; }
}
h1, h2, h3 {
font-weight: 600;
letter-spacing: -0.02em;
color: #111;
}
h1 { font-size: 2rem; margin-top: 0.2rem; margin-bottom: 0.5rem; }
h2 { font-size: 1.5rem; border-bottom: 2px solid #eee; padding-bottom: 0.4rem; margin-top: 2.2rem; }
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #b12704;
background: #fff0ed;
display: inline-block;
padding: 0.2rem 1rem;
border-radius: 40px;
margin: 0.5rem 0 1rem;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.5rem 0 1rem;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
background: #f1f3f5;
}
.gallery img:hover { transform: scale(1.01); }
.gallery-main {
flex: 2 1 360px;
}
.gallery-thumbs {
flex: 1 1 140px;
display: flex;
flex-direction: column;
gap: 0.8rem;
}
.gallery-thumbs img {
width: 100%;
border-radius: 12px;
cursor: default;
}
.specs-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 0.8rem 1.5rem;
background: #f8f9fa;
padding: 1.2rem 1.5rem;
border-radius: 20px;
margin: 1.2rem 0;
}
.spec-item {
display: flex;
justify-content: space-between;
border-bottom