Sf8bisvq
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 8px 0;
line-height: 1.2;
}
.brand-badge {
display: inline-block;
background: #e0e7ff;
color: #1e3a8a;
font-weight: 500;
font-size: 0.85rem;
padding: 4px 14px;
border-radius: 30px;
margin-bottom: 12px;
}
.price-condition {
display: flex;
align-items: baseline;
gap: 20px;
flex-wrap: wrap;
margin: 15px 0 20px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0a2540;
}
.condition {
background: #fef3c7;
padding: 6px 16px;
border-radius: 40px;
font-weight: 600;
font-size: 0.9rem;
color: #92400e;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin: 25px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 18px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery-main {
flex: 2 1 400px;
}
.gallery-thumbs {
flex: 1 1 180px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery-thumbs img {
width: 100%;
border-radius: 14px;
cursor: pointer;
border: 2px solid transparent;
}
.gallery-thumbs img.active {
border-color: #3b82f6;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0 20px;
background: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;