Ynv6qHts
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 20px 40px rgba(0,0,0,0.06);
padding: 2rem 2.5rem;
transition: all 0.2s ease;
}
@media (max-width: 600px) {
.product-card { padding: 1.5rem; }
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 0.25rem 0;
letter-spacing: -0.02em;
color: #111;
}
.brand-sub {
color: #555;
font-size: 1rem;
font-weight: 400;
margin-bottom: 1.25rem;
display: flex;
flex-wrap: wrap;
gap: 0.5rem 1.5rem;
}
.brand-sub span {
background: #f0f0f0;
padding: 0.2rem 0.8rem;
border-radius: 30px;
font-size: 0.85rem;
}
.price-area {
margin: 1rem 0 1.5rem 0;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0a2540;
}
.price sup {
font-size: 1rem;
top: -0.8em;
}
.currency {
font-size: 1.2rem;
font-weight: 500;
margin-left: 0.1rem;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.8rem 0 2rem 0;
}
.gallery img {
width: 100%;
max-width: 180px;
height: auto;
border-radius: 16px;
object-fit: cover;
box-shadow: 0 4px 12px rgba(0,0,0,0.04);
border: 1px solid #eaeef2;
transition: 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0 1.8rem 0;
background: #fafbfc;
border-radius: 20px;
overflow: hidden;
}
.specs-table td {
padding: