gzlHVQqF
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f6f2;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 24px rgba(0,0,0,0.06);
padding: 30px 35px;
transition: all 0.2s;
}
.product-title {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 8px 0;
color: #1a1a1a;
line-height: 1.2;
}
.brand-sub {
font-size: 1rem;
color: #5e5e5e;
margin-bottom: 20px;
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
}
.brand-sub span {
background: #eae6df;
padding: 4px 12px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 500;
color: #3b3b3b;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 25px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
border: 1px solid #eaeaea;
background: #fafafa;
object-fit: cover;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.price-area {
display: flex;
align-items: baseline;
gap: 12px;
margin: 15px 0 20px;
flex-wrap: wrap;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #1f5e3a;
}
.condition-badge {
background: #d4e2d4;
padding: 6px 16px;
border-radius: 40px;
font-size: 0.9rem;
font-weight: 500;
color: #1d4a2a;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 20px;
background: #faf9f7;
border-radius: 14px;
overflow: hidden;
}
.specs-table td, .specs-table