IKlAiCs5
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
background: white;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
margin: 20px auto;
}
h1, h2, h3 {
margin-top: 0;
font-weight: 600;
color: #1e2a3a;
}
h1 {
font-size: 1.9rem;
margin-bottom: 0.25rem;
}
.price-tag {
font-size: 2rem;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px;
}
.condition-badge {
background: #e6f0fa;
color: #1a5a8c;
padding: 6px 14px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 600;
display: inline-block;
margin-bottom: 10px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.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;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-main {
flex: 2 1 400px;
}
.gallery-thumbs {
flex: 1 1 180px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery-thumbs img {
border-radius: 12px;
cursor: pointer;
opacity: 0.85;
}
.gallery-thumbs img:hover {
opacity: 1;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e4e8ee;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 35%;
}
.description-text {
font-size: 1.05rem;
line-height: 1.6;